#prime #number-theory

primal-bit

Bit-vector specialised to the prime-number-related needs of primal

7 releases

0.3.1 Aug 15, 2022
0.3.0 Jun 18, 2020
0.2.4 Aug 22, 2017
0.2.3 Aug 12, 2015
0.2.2 Jun 9, 2015

#1673 in Math

Download history 1992/week @ 2023-12-06 2173/week @ 2023-12-13 1373/week @ 2023-12-20 717/week @ 2023-12-27 1580/week @ 2024-01-03 2354/week @ 2024-01-10 2253/week @ 2024-01-17 2399/week @ 2024-01-24 2380/week @ 2024-01-31 3136/week @ 2024-02-07 3214/week @ 2024-02-14 4306/week @ 2024-02-21 4198/week @ 2024-02-28 4372/week @ 2024-03-06 3348/week @ 2024-03-13 2584/week @ 2024-03-20

15,615 downloads per month
Used in 75 crates (2 directly)

MIT/Apache

19KB
478 lines

primal

crates.io documentation minimum rustc 1.36

primal puts raw power into prime numbers.

This crates includes

  • optimised prime sieves
  • checking for primality
  • enumerating primes
  • factorising numbers
  • estimating upper and lower bounds for π(n) (the number of primes below n) and pk (the kth prime)

This uses a state-of-the-art cache-friendly Sieve of Eratosthenes to enumerate the primes up to some fixed bound (in a memory efficient manner), and then allows this cached information to be used for things like enumerating and counting primes.

primal takes around 2.8 seconds and less than 3MB of RAM to count the exact number of primes below 1010 (455052511) on the author's laptop (i7-3517U).

Documentation


lib.rs:

A very simple bit-vector that serves the needs of primal.

Dependencies

~18KB