Skip to content

Commit a7cd1de

Browse files
committed
convert NextProbablePrimeTest into unit and performance test
1 parent 174c293 commit a7cd1de

File tree

2 files changed

+70
-36
lines changed

2 files changed

+70
-36
lines changed

src/main/java/de/tilman_neumann/jml/primes/probable/NextProbablePrimeTest.java src/test/java/de/tilman_neumann/jml/primes/probable/NextProbablePrimePerformanceTest.java

+4-36
Original file line numberDiff line numberDiff line change
@@ -22,52 +22,21 @@
2222
import org.apache.logging.log4j.Logger;
2323
import org.apache.logging.log4j.LogManager;
2424

25-
import de.tilman_neumann.util.Ensure;
2625
import de.tilman_neumann.util.ConfigUtil;
2726

28-
import static de.tilman_neumann.jml.base.BigIntConstants.*;
29-
3027
/**
31-
* Performance test of nextProbablePrime() implementations.
28+
* Performance test of nextProbablePrime() implementations (currently only Java vs. BPSW).
3229
*
3330
* @author Tilman Neumann
3431
*/
35-
public class NextProbablePrimeTest {
36-
private static final Logger LOG = LogManager.getLogger(NextProbablePrimeTest.class);
32+
public class NextProbablePrimePerformanceTest {
33+
private static final Logger LOG = LogManager.getLogger(NextProbablePrimePerformanceTest.class);
3734
private static final SecureRandom RNG = new SecureRandom();
3835

3936
/** Number of test numbers for the performance test. */
4037
private static final int NCOUNT = 1000;
4138

4239
private static final BPSWTest bpsw = new BPSWTest();
43-
44-
/**
45-
* Verify that the corrected lower/upper integers of sqrt(N) are computed.
46-
*/
47-
@SuppressWarnings("unused")
48-
private static void testCorrectness() {
49-
for (int nBits = 20; ; nBits+=10) {
50-
LOG.info("Test correctness of " + NCOUNT + " N with " + nBits + " bits:");
51-
int i = 0;
52-
while (i < NCOUNT) {
53-
BigInteger n = new BigInteger(nBits, RNG);
54-
if (n.equals(I_0)) continue; // exclude 0 from test set
55-
56-
// supposed correct value:
57-
BigInteger nextProbablePrime = n.nextProbablePrime();
58-
59-
// check others
60-
try {
61-
BigInteger nextProbablePrime_bpsw = bpsw.nextProbablePrime(n);
62-
Ensure.ensureEquals(nextProbablePrime, nextProbablePrime_bpsw);
63-
} catch (AssertionError ae) {
64-
LOG.error("Failure at n=" + n + ": " + ae, ae);
65-
}
66-
i++;
67-
}
68-
LOG.info(" Tested " + NCOUNT + " next probable primes...");
69-
}
70-
}
7140

7241
/**
7342
* Performance test.
@@ -134,8 +103,7 @@ private static void logMap(TreeMap<Long, List<String>> duration_2_algLists) {
134103
* @param args ignored
135104
*/
136105
public static void main(String[] args) {
137-
ConfigUtil.initProject(); // set up logger
138-
//testCorrectness();
106+
ConfigUtil.initProject();
139107
testPerformance();
140108
}
141109
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* java-math-library is a Java library focused on number theory, but not necessarily limited to it. It is based on the PSIQS 4.0 factoring project.
3+
* Copyright (C) 2018-2024 Tilman Neumann - [email protected]
4+
*
5+
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License
6+
* as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
7+
*
8+
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
9+
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
10+
*
11+
* You should have received a copy of the GNU General Public License along with this program;
12+
* if not, see <http://www.gnu.org/licenses/>.
13+
*/
14+
package de.tilman_neumann.jml.primes.probable;
15+
16+
import java.math.BigInteger;
17+
import java.security.SecureRandom;
18+
19+
import org.apache.logging.log4j.Logger;
20+
import org.junit.BeforeClass;
21+
import org.junit.Test;
22+
import org.apache.logging.log4j.LogManager;
23+
24+
import de.tilman_neumann.util.ConfigUtil;
25+
26+
import static de.tilman_neumann.jml.base.BigIntConstants.*;
27+
import static org.junit.Assert.assertEquals;
28+
29+
/**
30+
* Test of BPSW.nextProbablePrime().
31+
*
32+
* @author Tilman Neumann
33+
*/
34+
public class NextProbablePrimeTest {
35+
private static final Logger LOG = LogManager.getLogger(NextProbablePrimeTest.class);
36+
private static final SecureRandom RNG = new SecureRandom();
37+
38+
private static final int NCOUNT = 1000;
39+
private static final int MAX_BITS = 150;
40+
41+
private static final BPSWTest bpsw = new BPSWTest();
42+
43+
@BeforeClass
44+
public static void setup() {
45+
ConfigUtil.initProject();
46+
}
47+
48+
@Test
49+
public void testNextProbablePrime() {
50+
for (int nBits = 20; nBits<=MAX_BITS; nBits+=10) {
51+
LOG.info("Test correctness of " + NCOUNT + " N with " + nBits + " bits:");
52+
int i = 0;
53+
while (i < NCOUNT) {
54+
BigInteger n = new BigInteger(nBits, RNG);
55+
if (n.equals(I_0)) continue; // exclude 0 from test set
56+
57+
BigInteger correctValue = n.nextProbablePrime();
58+
BigInteger bpswValue = bpsw.nextProbablePrime(n);
59+
assertEquals(correctValue, bpswValue);
60+
61+
i++;
62+
}
63+
LOG.info(" Tested " + NCOUNT + " next probable primes...");
64+
}
65+
}
66+
}

0 commit comments

Comments
 (0)