Git Product home page Git Product logo

primes's People

Contributors

5jt avatar

Stargazers

 avatar

Watchers

 avatar

primes's Issues

Performance with a large cache of known primes

When the cache of known primes KP is long, finding primes to an x close to PT is faster (KP where KP<=x) is faster than sieving. But finding primes to an x much smaller than PT is slower, because it requires KP comparisons to select.

If we knew the highest prime below x in KP we could find it fast (because KP is sorted) and select with (KP?hp)#KP.

But we don’t. Is there a way to test items of KP for <=x and stop when we find the first?

Otherwise we could use a test on PT and x to decide when to select from KP and when to sieve.

Interestingly, sieving from scratch turns out to be (much, much) faster than reconstructing the bitmap from KP.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.