primal

Crates.ioprimal
lib.rsprimal
version0.3.3
sourcesrc
created_at2015-05-16 13:11:08.912809
updated_at2024-06-07 22:59:03.689575
description`primal` puts raw power into prime numbers. This crates includes: optimised prime sieves, checking for primality, enumerating primes, factorising numbers, and state-of-the-art estimation of upper and lower bounds for π(n) (the number of primes below n) and p_k (the k-th prime).
homepagehttps://github.com/huonw/primal
repositoryhttps://github.com/huonw/primal
max_upload_size
id2119
size108,843
Josh Stone (cuviper)

documentation

https://docs.rs/primal/

README

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

Commit count: 347

cargo fmt