Skip to content

Commit 285af89

Browse files
committed
adjust runtime for github testing
1 parent 48bb0ce commit 285af89

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

src/main/java/de/tilman_neumann/jml/factor/TestsetGeneratorTest.java

+17-9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
*/
1414
package de.tilman_neumann.jml.factor;
1515

16+
import static org.junit.Assert.assertEquals;
17+
1618
import java.math.BigInteger;
1719
import java.util.Map;
1820
import java.util.TreeMap;
@@ -27,29 +29,35 @@
2729
public class TestsetGeneratorTest {
2830
private static final Logger LOG = LogManager.getLogger(TestsetGeneratorTest.class);
2931

32+
// the following parameters have been chosen to make the test run less than 10 seconds on github CI.
33+
private static final int NCOUNT = 10;
34+
private static final int MIN_BITS = 20;
35+
private static final int MAX_BITS = 1000;
36+
private static final int INCR_BITS = 10;
37+
3038
public static void main(String[] args) {
3139
ConfigUtil.initProject();
3240
Timer timer = new Timer();
33-
int nCount = 100;
34-
for (int bits = 20; ; bits+=10) {
41+
for (int bits = MIN_BITS; bits<=MAX_BITS; bits+=INCR_BITS) {
3542
long start = timer.capture();
36-
BigInteger[] testNumbers = TestsetGenerator.generate(nCount, bits, TestNumberNature.MODERATE_SEMIPRIMES);
43+
BigInteger[] testNumbers = TestsetGenerator.generate(NCOUNT, bits, TestNumberNature.MODERATE_SEMIPRIMES);
3744
long end = timer.capture();
38-
// Collect the true
45+
// Collect the true bit lengths
3946
Map<Integer, Integer> sizeCounts = new TreeMap<>();
4047
for (BigInteger num : testNumbers) {
4148
int bitlen = num.bitLength();
4249
Integer count = sizeCounts.get(bitlen);
4350
count = (count==null) ? Integer.valueOf(1) : count.intValue()+1;
4451
sizeCounts.put(bitlen, count);
4552
}
46-
String generatedBitLens = "";
53+
String generatedBitLengths = "";
4754
for (int bitlen : sizeCounts.keySet()) {
48-
generatedBitLens += sizeCounts.get(bitlen) + "x" + bitlen + ", ";
55+
generatedBitLengths += sizeCounts.get(bitlen) + "x" + bitlen + ", ";
4956
}
50-
generatedBitLens = generatedBitLens.substring(0, generatedBitLens.length()-2);
51-
LOG.info("Requesting " + nCount + " " + bits + "-numbers took " + TimeUtil.timeDiffStr(start, end) + " ms and generated the following bit lengths: " + generatedBitLens);
52-
// Roughly 1/3 of generated numbers are one bit smaller than requested. No big problem though.
57+
generatedBitLengths = generatedBitLengths.substring(0, generatedBitLengths.length()-2);
58+
LOG.info("Requesting " + NCOUNT + " " + bits + "-numbers took " + TimeUtil.timeDiffStr(start, end) + " ms and generated the following bit lengths: " + generatedBitLengths);
59+
// all generated test numbers have the requested bit length
60+
assertEquals(NCOUNT + "x" + bits, generatedBitLengths);
5361
}
5462
}
5563
}

0 commit comments

Comments
 (0)