Expand description
Seedling is a Rust crate for creating hierarchical pseudo-random number generators (PRNGs) based on the rand_pcg
algorithm. It provides a simple way to organize RNGs into a tree-like structure, ensuring reproducible and independent
random sequences.
Re-exports§
pub use rand_core;
Structs§
- TreeRng
- A hierarchical pseudo-random number generator (PRNG).
Type Aliases§
- Tree
Rng32 - A type alias for a
TreeRng
usingPcg32
for 32-bit random number generation. - Tree
Rng64 - A type alias for a
TreeRng
usingPcg64
for 64-bit random number generation. - Tree
Rng64 Fast - A type alias for a
TreeRng
usingPcg64Mcg
for fast 64-bit random number generation.