Sylvestre Ledru 71a61eb708 Merge pull request #52 from xtqqczze/markdownlint
fix markdown lints
2026-02-19 07:21:43 +01:00
2026-02-18 21:12:24 +01:00
2026-02-18 21:15:25 +01:00
2026-02-18 22:08:57 +01:00
2022-01-08 21:22:18 -05:00
2026-02-18 23:45:44 +00:00
2026-02-18 23:45:44 +00:00
2026-02-18 21:28:56 +01:00
2026-02-18 23:45:44 +00:00

num-prime

Crates.io CodSpeed Discord License dependency status

CodeCov

This crate provides utilities for prime number related functionalities:

  • Primality testing
    • Deterministic primality check of u64 integers (using a very fast hashing algorithm)
    • Fermat probable prime test
    • Miller-rabin probable prime test
    • (strong/extra strong) Lucas probable prime test
    • Baillie-PSW test
    • Sophie Germain safe prime test
  • Primes generation and indexing
    • A naive implementation of the sieve of Eratosthenes
    • Unified API to support other prime generation backends
    • Generate random (safe) primes
    • Find previous/next prime
  • Integer factorization
    • Trial division
    • Pollard's rho algorithm
    • Shanks's square forms factorization (SQUFOF)
    • Fast factorization of u64 and u128 integers
  • Number theoretic functions
    • Prime Pi function (number of primes under limit), its estimation and its bounds
    • Nth prime, its estimation and its bounds
    • Moebius function
    • Divisor Sigma function (in examples)
    • Prime Omega function (in examples)

It's based on the num creates and most functions are decently optimized with pre-computed tables (see benchmark results here).

S
Description
No description provided
Readme 950 KiB
Languages
Rust 98.7%
Shell 1.3%