Skip to content

Commit ec09c70

Browse files
committed
convert prime bound tests into unit tests and move them to test scope
1 parent 0779918 commit ec09c70

File tree

2 files changed

+52
-25
lines changed

2 files changed

+52
-25
lines changed

src/main/java/de/tilman_neumann/jml/primes/bounds/NthPrimeUpperBoundsTest.java src/test/java/de/tilman_neumann/jml/primes/bounds/NthPrimeUpperBoundsTest.java

+26-10
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,40 @@
1414
package de.tilman_neumann.jml.primes.bounds;
1515

1616
import org.apache.logging.log4j.Logger;
17+
import org.junit.BeforeClass;
18+
import org.junit.Test;
19+
20+
import static org.junit.Assert.assertTrue;
21+
1722
import org.apache.logging.log4j.LogManager;
1823

1924
import de.tilman_neumann.jml.primes.exact.SegmentedSieve;
2025
import de.tilman_neumann.jml.primes.exact.SieveCallback;
2126
import de.tilman_neumann.util.ConfigUtil;
2227

2328
/**
24-
* Test of upper bound estimates for the n.th prime.
29+
* Test of upper bound estimates for the n.th prime function p(n).
2530
*
2631
* @author Tilman Neumann
2732
*/
2833
public class NthPrimeUpperBoundsTest implements SieveCallback {
2934
private static final Logger LOG = LogManager.getLogger(NthPrimeUpperBoundsTest.class);
3035

3136
private long n;
37+
38+
@BeforeClass
39+
public static void setup() {
40+
ConfigUtil.initProject();
41+
}
3242

43+
@Test
44+
public void testCombinedUpperBound() {
45+
NthPrimeUpperBoundsTest test = new NthPrimeUpperBoundsTest();
46+
// The maximum p to test has been chosen such that the runtime in github CI is moderate.
47+
// For local tests, it could be 1000 times bigger.
48+
test.run(1000000000L);
49+
}
50+
3351
/**
3452
* Run the sieve.
3553
* @param limit maximum value to be checked for being prime.
@@ -74,16 +92,14 @@ public void processPrime(long p) {
7492
LOG.info(boundStr);
7593
}
7694

77-
// Verify individual estimates for all p
95+
// Verifying individual estimates would need to consider them only in the range where they are best
96+
7897
long combi = NthPrimeUpperBounds.combinedUpperBound(p);
79-
if (combi - n < 0) {
80-
LOG.error("combi failed at p_" + n + " = " + p + ": diff = " + (combi - n));
98+
if (combi < p) {
99+
LOG.error("The combined upper bound estimate for n.th prime p(n) " + combi + " is smaller than p_" + n + " = " + p + ", difference = " + (combi - p));
81100
}
82-
}
83-
84-
public static void main(String[] args) {
85-
ConfigUtil.initProject();
86-
NthPrimeUpperBoundsTest test = new NthPrimeUpperBoundsTest();
87-
test.run(100000000000L);
101+
assertTrue(combi >= p);
102+
103+
// Testing the tightness of the upper bound would need to compare it to the individual bounds in the range where they are best
88104
}
89105
}

src/main/java/de/tilman_neumann/jml/primes/bounds/PrimeCountUpperBoundsTest.java src/test/java/de/tilman_neumann/jml/primes/bounds/PrimeCountUpperBoundsTest.java

+26-15
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,40 @@
1414
package de.tilman_neumann.jml.primes.bounds;
1515

1616
import org.apache.logging.log4j.Logger;
17+
import org.junit.BeforeClass;
18+
import org.junit.Test;
19+
20+
import static org.junit.Assert.assertTrue;
21+
1722
import org.apache.logging.log4j.LogManager;
1823

1924
import de.tilman_neumann.jml.primes.exact.SegmentedSieve;
2025
import de.tilman_neumann.jml.primes.exact.SieveCallback;
2126
import de.tilman_neumann.util.ConfigUtil;
2227

2328
/**
24-
* Test of upper bound estimates for the prime count function.
29+
* Test of upper bound estimates for the prime count function π(x).
2530
*
2631
* @author Tilman Neumann
2732
*/
2833
public class PrimeCountUpperBoundsTest implements SieveCallback {
2934
private static final Logger LOG = LogManager.getLogger(PrimeCountUpperBoundsTest.class);
3035

3136
private long n;
37+
38+
@BeforeClass
39+
public static void setup() {
40+
ConfigUtil.initProject();
41+
}
3242

43+
@Test
44+
public void testCombinedUpperBound() {
45+
PrimeCountUpperBoundsTest test = new PrimeCountUpperBoundsTest();
46+
// The maximum p to test has been chosen such that the runtime in github CI is moderate.
47+
// For local tests, it could be 1000 times bigger.
48+
test.run(1000000000L);
49+
}
50+
3351
/**
3452
* Run the sieve.
3553
* @param limit maximum value to be checked for being prime.
@@ -64,7 +82,7 @@ public void processPrime(long p) {
6482
boundStr += ", ax35b=" + (ax35b-n);
6583
long ax35c = PrimeCountUpperBounds.Axler_3_5c(p);
6684
boundStr += ", ax35c=" + (ax35c-n);
67-
long ax35d = PrimeCountUpperBounds.Axler_3_5d(p); // Fails for many x in [230389, 2634562561]
85+
long ax35d = PrimeCountUpperBounds.Axler_3_5d(p); // Fails for many x in [230389, 2634562561], but thats not the range where it is best
6886
boundStr += ", ax35d=" + (ax35d-n);
6987
long du65 = PrimeCountUpperBounds.Dusart2010_eq6_5(p);
7088
boundStr += ", du65=" + (du65-n);
@@ -78,21 +96,14 @@ public void processPrime(long p) {
7896
LOG.info(boundStr);
7997
}
8098

81-
// Verify individual estimates for all p
82-
// long ax35d = PrimeCountBounds.primeCount_Axler_3_5d(p);
83-
// if (ax35d - n < 0) {
84-
// LOG.error("ax35d failed at p_" + n + " = " + p + ": diff = " + (ax35d - n));
85-
// }
99+
// Verifying individual estimates would need to consider them only in the range where they are best
86100

87101
long combi = PrimeCountUpperBounds.combinedUpperBound(p);
88-
if (combi - n < 0) {
89-
LOG.error("combi failed at p_" + n + " = " + p + ": diff = " + (combi - n));
102+
if (combi < n) {
103+
LOG.error("The combined upper bound estimate for the prime counting function π(x) " + combi + " is smaller than " + n + " for x = " + p + ", difference = " + (combi - n));
90104
}
91-
}
92-
93-
public static void main(String[] args) {
94-
ConfigUtil.initProject();
95-
PrimeCountUpperBoundsTest test = new PrimeCountUpperBoundsTest();
96-
test.run(100000000000L);
105+
assertTrue(combi >= n);
106+
107+
// Testing the tightness of the upper bound would need to compare it to the individual bounds in the range where they are best
97108
}
98109
}

0 commit comments

Comments
 (0)