puremp
Pure-Rust, MIT-licensed, arbitrary-precision arithmetic — integers, rationals, MPFR-class floating point, and base-10 decimals, plus derived modular integers, complex numbers, polynomials, matrices, interval & ball arithmetic, p-adic numbers, finite fields, and exact real algebraic numbers — with no foreign-code dependencies. Usable as a Rust crate, a C library, and a command-line calculator.
Why
A GMP + MPFR-class toolkit that is:
- Pure, safe Rust — no C, no inline assembly, no intrinsics. The only
unsafein the crate is the opt-in C ABI module. - Clean-room & MIT-licensed — algorithms come from the open literature (Knuth; Brent & Zimmermann's Modern Computer Arithmetic; the HAC), never from GMP/MPFR source. Use it anywhere, including closed-source projects.
no_std+alloc— runs on bare metal with an allocator; no OS assumptions in the core. Verified on 32-bitthumbv7em-none-eabiin CI.
Quick start (Rust)
[]
= "0"
use ;
let big = from_i64.pow;
assert_eq!;
let sum = new? // 1/2
.add; // + 1/3
assert_eq!;
# Ok::
Quick start (CLI)
$ cargo run --bin puremp
puremp> 2 ** 100
1267650600228229401496703205376
puremp> x = 1000
puremp> x * x - 1
999999
puremp> (2**64) * (2**64)
340282366920938463463374607431768211456
puremp> :quit
Supports + - * / % **, parentheses, unary minus, decimal literals, and
name = expr variables (/ and % are truncated integer division).
Quick start (C)
Build the static and/or shared library and link against the header in
include/puremp.h:
$ cargo rustc --lib --release --features ffi --crate-type staticlib
$ cargo rustc --lib --release --features ffi --crate-type cdylib
$ cc myprog.c -I include target/release/libpuremp.a -lpthread -ldl -lm -o myprog
int
Feature flags
| Feature | Default | Enables |
|---|---|---|
std |
✔ | std::error::Error, the CLI, system I/O (implies alloc) |
alloc |
✔ | Heap-backed arbitrary-precision types (required by every layer) |
int |
✔ | Nat and Int |
rational |
✔ | Rational and InfRational (implies int) |
dyadic |
✔ | Dyadic — exact n·2⁻ᵏ binary fractions (implies int) |
decimal |
✔ | Decimal — exact base-10 floating point (implies int) |
padic |
✔ | Padic — fixed-precision p-adic numbers ℤ_p/ℚ_p (implies rational) |
complex |
✔ | Complex<T> — generic complex / Gaussian integers |
poly |
✔ | Poly<T> — generic univariate polynomials |
matrix |
✔ | Matrix<T> — dense matrices with exact linear algebra |
lattice |
✔ | lll_reduce — exact LLL lattice basis reduction (implies rational) |
interval |
✔ | Interval — outward-rounded interval arithmetic (implies float) |
ball |
✔ | Ball — midpoint–radius (mid-rad) rigorous arithmetic, Arb-style (implies interval) |
algebraic |
✔ | Quadratic (ℚ(√d)) and general real Algebraic numbers |
galois |
✔ | GaloisField / GfElement — finite field extensions GF(pᵏ) (implies int) |
identify |
✔ | Inverse symbolic calculator (identify, machin_like) via PSLQ (implies lattice + float) |
primality |
✔ | Primality proving with auditable certificates — Pocklington + BLS n∓1 (implies int) |
float |
✔ | Separable Float + FixedFloat layer (implies int); not part of the core contract, disable via --no-default-features |
dlog |
Discrete logarithm — BSGS, Pollard rho, Pohlig–Hellman (implies int) |
|
num-traits |
Implements num-traits interfaces for Int/Rational/Nat/Decimal/Complex |
|
ffi |
The C ABI module (include/puremp.h) |
|
cli |
✔ | The puremp binary |
Beyond the base types, Int/Rational provide a number-theory toolkit —
factorize (trial division → Pollard rho → Lenstra ECM → quadratic sieve),
sqrt_mod (Tonelli–Shanks), jacobi/legendre, crt, random_prime,
factorial/binomial/fibonacci, and continued-fraction approximate — plus
ModInt for modular arithmetic.
The exact-algebra layers stack on top of these:
Poly::factorfactors a rational polynomial into irreducible factors over ℚ (Berlekamp–Zassenhaus with van Hoeij LLL recombination).Algebraicis a real root of a rational polynomial, with exact+ − × ÷, comparison, andsqrt— andAlgebraic::from_floatrecovers one exactly from a floating-point approximation.lattice::lll_reduceis an exact LLL lattice reduction; on top of it,find_integer_relationrecognizes constants (e.g. is a numbera·√2 + b?) andminimal_polynomialrecovers a real algebraic number's defining polynomial.Poly<T>andMatrix<T>are generic over anyRing— including the context-carryingModInt(ℤ/nℤ) andGfElement(GF(pᵏ)), so polynomials and matrices over finite fields and modular integers work, not just overInt/Rational. Over aField,FieldMatrixgivesdeterminant/inverse/solve/rankby Gaussian elimination, andFactorOverFieldfactors polynomials over a finite field (Cantor–Zassenhaus).
For a bare no_std build: --no-default-features (add --features int for the
integer types).
Design & provenance
Bottom-up layers, each building only on the ones below: machine-word carry
primitives (adc/sbb/mac) → unsigned magnitudes (Nat, home of the hard
algorithms) → tagged signed Int → Rational, with the optional Float and
the derived types layered on top. Signed integers inline single-limb magnitudes
(no heap allocation until a value exceeds 64 bits).
The implementation is clean-room: GMP and MPFR are LGPL and their source is never consulted. Algorithms come from the open literature —
- Knuth, TAOCP Vol. 2 §4.3 (schoolbook arithmetic; Algorithm D for division);
- Brent & Zimmermann, Modern Computer Arithmetic (sub-quadratic multiply/ divide, GCD, base conversion);
- Menezes, van Oorschot & Vanstone, Handbook of Applied Cryptography;
- primary papers: Karatsuba; Toom–Cook; Burnikel–Ziegler; Möller–Granlund; Faddeev–LeVerrier (algebraic numbers); Sturm sequences (real-root isolation); Lenstra–Lenstra–Lovász (LLL); Cantor–Zassenhaus and van Hoeij (polynomial factorization).
Correctness is checked against published values and, in the dev-only test harness, a trusted reference — never a runtime dependency.
Non-goals: constant-time / side-channel resistance across the general API
(for constant-time crypto see the sibling purecrypto crate); drop-in GMP/MPFR
C-header compatibility (puremp ships its own cleaner C ABI).
Run cargo run --release --example bench for a throughput harness across the
core operations and the derived types.
Roadmap
Candidate directions not yet implemented, all specifiable from open literature (so they preserve the clean-room provenance). Ordering is rough interest, not commitment. Brent & Zimmermann's Modern Computer Arithmetic (MCA; freely available drafts) is the umbrella reference for much of this list.
Faster algorithms (existing operations, correct today, just not maximally fast):
- Deeper multi-prime argument reduction — the current
expmulti-prime fast path finds the reducing prime-log combination with an f64 Babai nearest-plane, which caps its winning range; a higher-precision Babai over more primes (and an extension tosin/cos) would widen it. Johansson, arXiv:2207.02501. - AGM-based transcendentals — π and
log/expvia the arithmetic–geometric mean (Brent–Salamin / Gauss–Legendre),O(M(n)·log n)in ~2·lg n quadratically converging steps; a large implicit constant means it complements binary splitting, winning only at very high precision. Brent (1976); Borwein & Borwein, Pi and the AGM; MCA §4.8.
Candidate new capabilities (new operations / types):
- Primality proving for arbitrary inputs —
n∓1certificate proofs (Pocklington + BLSn^{1/3}) already prove any number with a sufficiently factorablen∓1; the general case (a large prime whosen∓1is hard) needs ECPP (Goldwasser–Kilian → Atkin → Morain; heuristicÕ((log N)⁴⁻⁵)) or the deterministic APR-CL. - Second-kind Bessel functions —
YₙandKₙ(the subtractive-cancellation cases; first-kindJₙand modifiedIₙare done). DLMF §10; MCA §4.7.1. - Factorization past ~50 digits — SIQS handles balanced semiprimes into the ~50-digit range; a large-prime variation, a sparse GF(2) solver (block Lanczos / Wiedemann in place of dense Gaussian elimination), and ultimately the number-field sieve (GNFS) are the path toward ~80–100+ digits.
License
MIT — see LICENSE.