Crates.io | small-rngs |
lib.rs | small-rngs |
version | 0.0.1 |
source | src |
created_at | 2018-10-04 09:47:38.191494 |
updated_at | 2018-10-04 09:47:38.191494 |
description | Small, simple pseudo-random number generators |
homepage | |
repository | https://github.com/rust-random/small-rngs |
max_upload_size | |
id | 87995 |
size | 27,219 |
This repository houses a collection of random number generators for use with the Rand project.
All implementations are housed in sub-crates, as follows.
Implements a selection of PCG random number generators.
PCG is a family of simple fast space-efficient statistically good algorithms for random number generation. [Melissa O'Neill, Harvey Mudd College, 2014].
Implements the Xorshift1 random number generator.
Wherever possible, all sub-crates are no_std
compatible, and depend only
core
and the rand_core
library.
All PRNGs feature at minimum a "true values" test comparing output against test vectors provided as part of the specification, as well as "construction" tests testing reproducibility of supported seeding methods.
This parent crate includes benchmarks of all sub-crates, making benchmarking
as simple as cargo +nightly bench
.
These crates are distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT, and COPYRIGHT for details.
Marsaglia, George (July 2003). "Xorshift RNGs". Journal of Statistical Software. Vol. 8 (Issue 14). ↩