import dclong.stat.Combination;
import dclong.util.Timer;
public class TestSPTsSimulation {
public static void main(String[] args) throws IOException {
RandomGenerator rg = new Well44497b(31);
RandomDataImpl rng = new RandomDataImpl(rg);
// warm up RNG to avoid overlap of the Table-2 job
Timer timer = new Timer();
int upperBound = Combination.choose(26, 5).intValue() - 1;
for (int i = 0; i < 130000000; ++i) {