Seeded pseudo-random number generator (Linear Congruential Generator). Use for reproducible stochastic algorithms (Shapley, bootstrap, etc.).
seed = null → uses Math.random() (non-deterministic). seed = number → deterministic reproducible sequence.
Seeded pseudo-random number generator (Linear Congruential Generator). Use for reproducible stochastic algorithms (Shapley, bootstrap, etc.).
seed = null → uses Math.random() (non-deterministic). seed = number → deterministic reproducible sequence.