|
13 | 13 | */
|
14 | 14 | package de.tilman_neumann.jml.factor;
|
15 | 15 |
|
| 16 | +import static org.junit.Assert.assertEquals; |
| 17 | + |
16 | 18 | import java.math.BigInteger;
|
17 | 19 | import java.util.Map;
|
18 | 20 | import java.util.TreeMap;
|
|
27 | 29 | public class TestsetGeneratorTest {
|
28 | 30 | private static final Logger LOG = LogManager.getLogger(TestsetGeneratorTest.class);
|
29 | 31 |
|
| 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 | + |
30 | 38 | public static void main(String[] args) {
|
31 | 39 | ConfigUtil.initProject();
|
32 | 40 | 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) { |
35 | 42 | long start = timer.capture();
|
36 |
| - BigInteger[] testNumbers = TestsetGenerator.generate(nCount, bits, TestNumberNature.MODERATE_SEMIPRIMES); |
| 43 | + BigInteger[] testNumbers = TestsetGenerator.generate(NCOUNT, bits, TestNumberNature.MODERATE_SEMIPRIMES); |
37 | 44 | long end = timer.capture();
|
38 |
| - // Collect the true |
| 45 | + // Collect the true bit lengths |
39 | 46 | Map<Integer, Integer> sizeCounts = new TreeMap<>();
|
40 | 47 | for (BigInteger num : testNumbers) {
|
41 | 48 | int bitlen = num.bitLength();
|
42 | 49 | Integer count = sizeCounts.get(bitlen);
|
43 | 50 | count = (count==null) ? Integer.valueOf(1) : count.intValue()+1;
|
44 | 51 | sizeCounts.put(bitlen, count);
|
45 | 52 | }
|
46 |
| - String generatedBitLens = ""; |
| 53 | + String generatedBitLengths = ""; |
47 | 54 | for (int bitlen : sizeCounts.keySet()) {
|
48 |
| - generatedBitLens += sizeCounts.get(bitlen) + "x" + bitlen + ", "; |
| 55 | + generatedBitLengths += sizeCounts.get(bitlen) + "x" + bitlen + ", "; |
49 | 56 | }
|
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); |
53 | 61 | }
|
54 | 62 | }
|
55 | 63 | }
|
0 commit comments