for (int i = 0; i < s.size(); i++) {
s.set(i, (Math.random() > 0.5 ? true : false));
}
System.out.println(s);
PermutationByBit p = new PermutationByBit(64);
SixtyFourBitSignature permutedS = new SixtyFourBitSignature(64);
ArrayListOfIntsWritable a;
int loopcnt = 0;
while (loopcnt++ < 1000000) {
a = p.nextPermutation();
s.perm(a, permutedS);
}
}