150151152153154155156
* * @param n maximal size of the set * @return a new set */ public static ISet makeBitSet(int n) { return new Set_BitSet(n); }