Uses of Interface
de.tilman_neumann.jml.primes.exact.SieveCallback
-
Packages that use SieveCallback Package Description de.tilman_neumann.jml.primes de.tilman_neumann.jml.primes.bounds de.tilman_neumann.jml.primes.exact -
-
Uses of SieveCallback in de.tilman_neumann.jml.primes
Classes in de.tilman_neumann.jml.primes that implement SieveCallback Modifier and Type Class Description class
PrimeCountsBetweenSquares
Find #primes between consecutive squares.class
PrimeGapTest
Find primes with relatively large prime gaps, say ratios p(i)/p(i-1) > p(k)/p(k-1) for all k > i. -
Uses of SieveCallback in de.tilman_neumann.jml.primes.bounds
Classes in de.tilman_neumann.jml.primes.bounds that implement SieveCallback Modifier and Type Class Description class
NthPrimeUpperBoundsTest
Test of upper bound estimates for the n.th prime.class
PrimeCountUpperBoundsTest
Test of upper bound estimates for the prime count function. -
Uses of SieveCallback in de.tilman_neumann.jml.primes.exact
Classes in de.tilman_neumann.jml.primes.exact that implement SieveCallback Modifier and Type Class Description class
AutoExpandingPrimesArray
An auto-expanding facade for the segmented sieve of Eratosthenes.class
CollectingCallback
class
CountingCallback
Simple callback just counting the primes coming in.Constructors in de.tilman_neumann.jml.primes.exact with parameters of type SieveCallback Constructor Description SegmentedSieve(SieveCallback clientCallback)
SimpleSieve(SieveCallback clientCallback)
-