|
| 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