Package de.tilman_neumann.jml.primes.exact

  • Interface Summary
    Interface Description
    SieveCallback
    Segmented sieve callback interface.
    SSOZJ5.Callback<T>  
  • Class Summary
    Class Description
    AutoExpandingPrimesArray
    An auto-expanding facade for the segmented sieve of Eratosthenes.
    CollectingCallback  
    CountingCallback
    Simple callback just counting the primes coming in.
    SegmentedSieve
    Segmented sieve of Eratosthenes based on Kim Walisch's implementation at http://primesieve.org/segmented_sieve.html
    SieveTest
    Test performance and correctness of results of prime sieves.
    SimpleSieve
    Monolithic sieve of Eratosthenes, working only for limits < Integer.MAX_VALUE = 2^31 - 1.
    SSOZJ5
    This Java source file is a multiple threaded implementation to perform an extremely fast Segmented Sieve of Zakiya (SSoZ) to find Twin Primes <= N.