Crate seedling

Source
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§

TreeRng32
A type alias for a TreeRng using Pcg32 for 32-bit random number generation.
TreeRng64
A type alias for a TreeRng using Pcg64 for 64-bit random number generation.
TreeRng64Fast
A type alias for a TreeRng using Pcg64Mcg for fast 64-bit random number generation.