clock_rand/fast/mod.rs
1//! Fast deterministic RNGs
2//!
3//! This module contains high-performance PRNGs suitable for simulations
4//! and non-cryptographic randomness. These RNGs are deterministic when
5//! seeded and provide excellent statistical properties.
6
7pub mod pcg64;
8pub mod splitmix64;
9pub mod xoshiro256;
10
11pub use pcg64::Pcg64;
12pub use splitmix64::SplitMix64;
13pub use xoshiro256::Xoshiro256Plus;