14
14
package de .tilman_neumann .jml .primes .bounds ;
15
15
16
16
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
+
17
22
import org .apache .logging .log4j .LogManager ;
18
23
19
24
import de .tilman_neumann .jml .primes .exact .SegmentedSieve ;
20
25
import de .tilman_neumann .jml .primes .exact .SieveCallback ;
21
26
import de .tilman_neumann .util .ConfigUtil ;
22
27
23
28
/**
24
- * Test of upper bound estimates for the prime count function.
29
+ * Test of upper bound estimates for the prime count function π(x) .
25
30
*
26
31
* @author Tilman Neumann
27
32
*/
28
33
public class PrimeCountUpperBoundsTest implements SieveCallback {
29
34
private static final Logger LOG = LogManager .getLogger (PrimeCountUpperBoundsTest .class );
30
35
31
36
private long n ;
37
+
38
+ @ BeforeClass
39
+ public static void setup () {
40
+ ConfigUtil .initProject ();
41
+ }
32
42
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
+
33
51
/**
34
52
* Run the sieve.
35
53
* @param limit maximum value to be checked for being prime.
@@ -64,7 +82,7 @@ public void processPrime(long p) {
64
82
boundStr += ", ax35b=" + (ax35b -n );
65
83
long ax35c = PrimeCountUpperBounds .Axler_3_5c (p );
66
84
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
68
86
boundStr += ", ax35d=" + (ax35d -n );
69
87
long du65 = PrimeCountUpperBounds .Dusart2010_eq6_5 (p );
70
88
boundStr += ", du65=" + (du65 -n );
@@ -78,21 +96,14 @@ public void processPrime(long p) {
78
96
LOG .info (boundStr );
79
97
}
80
98
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
86
100
87
101
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 ));
90
104
}
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
97
108
}
98
109
}
0 commit comments