//! Fast deterministic RNGs
//!
//! This module contains high-performance PRNGs suitable for simulations
//! and non-cryptographic randomness. These RNGs are deterministic when
//! seeded and provide excellent statistical properties.
pub use Pcg64;
pub use SplitMix64;
pub use Xoshiro256Plus;