The rationale for this crate is to generate good quality random numbers fast, simply and with a minimal footprint.
Not everyone wants to add 375 kB, plus another ten dependencies, just to generate a bunch of random numbers for testing etc ( looking at the 'other' crate: rand
).
In contradistinction, this crate is lightweight and it has no dependencies.
Even so, there are four different algorithms on offer, plus some utility functions to easily generate vectors and vectors of vectors filled with random numbers.
The main objective has been the ease of use rather than flat-out speed but the algorithms are neverheless very fast.
xoshiu64()
generates u64 random numbers in full 64 bit range and 2^256 state space. That means the sequence is not going to repeat for a very long time. This algorithm is used to construct random numbers of all (unsigned) integer types and ranges up to 64 bits.
splitmix()
also generates u64 numbers. It is used here only to generate the initial seeds for the 'xoshi' type algorithms.
There are two transformation wrappers for xoshiu64()
:
```rust /// Generate u64 random number in the interval [min,max]. pub fn ran_urange(min:u64, max:u64) -> u64
/// Get random numbers of various smaller unsigned integer types by
/// specifying the number of bits required,
/// e.g. ran_ubits(16) as u16
pub fn ran_ubits(bits:i32) -> u64
```
ranf64()
is a little older (George Marsaglia, 2003). It has been adapted here to generate f64 numbers in the half open interval [0,1). That means its output can be easily transformed into any other range. Its main claim to fame is its superior speed.
xoshif64()
is also fast, though not quite as much as ranf64()
but it makes up for it by quality. It has also been adpted to output f64 numbers in the range [0,1).
Again, there is a transformation wrapper. It takes an output of either ranf64()
or xoshif64()
as the first argument:
rust
/// Transform an f64 number in [0,1) to [min,max)
pub fn ran_frange(rnum:f64, min:f64, max:f64) -> f64
use ran::*;
These algorithms use thread safe static seeds.
It is strongly recommended to initialise the main SEED with set_seeds(value);
in every thread where you may want to be generating random numbers, otherwise you will get the same sequence every time, based on the default value. Any u64 value will do to get a new, different sequence.
```rust /// Use this function to initialise SEED and also xoshi seeds X0-X3. /// The supplied value must be > 0, otherwise SEED will not be changed. pub fn set_seeds( seed:u64 )
/// Reset xoshi seeds without changing the main SEED. /// There is usually no need to reset any already running seeds. pub fn reset_xoshi() ```
Also included are higher level utility functions to generate vectors and vectors of vectors of random numbers of some basic types:
```rust
/// Generates vector of size d, filled with full range u64 random numbers.
pub fn ranvu64(d: usize) -> Vec
/// Generates vector of size d, filled with random numbers in the interval [0f64,1f64).
pub fn ranvf64(d: usize) -> Vec
/// Generates vector of size d, filled with random numbers in the interval [0u8,255u8].
/// You can similarly recast u64 yourself to any other type.
pub fn ranvu8(d: usize) -> Vec
/// Generates n vectors of size d each, filled with full range u64 random numbers.
pub fn ranvvu64(d: usize, n: usize) -> Vec
/// Generates n vectors of size d each, filled with random numbers in the interval [0f64,1f64).
pub fn ranvvf64(d: usize, n: usize) -> Vec
/// Generates n vectors of size d each, filled with random numbers in the interval [0u8,255u8].
pub fn ranvvu8(d: usize, n: usize) -> Vec
And these alternatives, using the 'improved' f64 generator xoshif64()
:
``rust
/// Generates vector of size d, filled with random numbers in the interval [0_f64,1_f64).
/// Bit slower but otherwise superior to
ranvf64`.
pub fn ranvf64_xoshi(d: usize) -> Vec
/// Generates n vectors of size d each, filled with random numbers in the interval [0f64,1f64).
pub fn ranvvf64_xoshi(d: usize, n: usize) -> Vec
Version 0.2.0 Added general purpose xoshiu64()
which is now used to construct random numbers of all (unsigned) integer types and ranges. Reorganised, renamed and/or deleted some functions. Made the xoshiro seeds also static, for ease of use. They no longer need to be explicitly passed as arguments.
Version 0.1.4 Fixed the debug mode overflow 'errors'. They were not affecting the release mode but given that this crate is intended for testing, they were annoying. The solution was to use overflowing_
versions of some of the operators, available as of Rust version 1.53. So, in case of problems, you may have to update to the latest (stable) version of Rust.
Version 0.1.3 Tested and fixed an &mut argument. Added ranvvf64_xoshiro
and ranvvu8_xoshiro
for completeness.
Version 0.1.2 Fixed the initial typos.
Version 0.1.1 Changed the crate name to ran
as all others are taken.
Version 0.1.0 The initial version.