rust_physics_engine 0.2.0

A zero-dependency Rust library for physics, mathematics and engineering computation — 6,365 public functions across 71 modules
Documentation
1
2
3
4
5
6
7
8
9
10
//! Discrete mathematics: primes and factorization, elementary and
//! analytic number theory, counting and enumeration, integer partitions,
//! integer sequences, and union-find.

pub mod combinatorics;
pub mod disjoint_set;
pub mod number_theory;
pub mod partitions;
pub mod primes;
pub mod sequences;