pub struct Mt64 { /* private fields */ }
Expand description
The 64-bit flavor of the Mersenne Twister pseudorandom number generator.
§Size
Mt64
requires approximately 2.5 kilobytes of internal state.
You may wish to store an Mt64
on the heap in a Box
to make it easier
to embed in another struct.
Mt64
is also the same size as Mt
.
assert_eq!(2504, size_of::<Mt64>());
assert_eq!(size_of::<Mt>(), size_of::<Mt64>());
Implementations§
Source§impl Mt64
impl Mt64
Sourcepub const DEFAULT_SEED: u64 = 5_489u64
pub const DEFAULT_SEED: u64 = 5_489u64
Default seed used by Mt64::new_unseeded
.
Sourcepub fn new(seed: u64) -> Self
pub fn new(seed: u64) -> Self
Create a new Mersenne Twister random number generator using the given seed.
§Examples
§Constructing with a u64
seed
let seed = 123_456_789_u64;
let mt1 = Mt64::new(seed);
let mt2 = Mt64::from(seed.to_le_bytes());
assert_eq!(mt1, mt2);
§Constructing with default seed
let mt1 = Mt64::new(Mt64::DEFAULT_SEED);
let mt2 = Mt64::new_unseeded();
assert_eq!(mt1, mt2);
Sourcepub fn new_with_key<I>(key: I) -> Self
pub fn new_with_key<I>(key: I) -> Self
Create a new Mersenne Twister random number generator using the given key.
Key can have any length.
Sourcepub fn new_unseeded() -> Self
pub fn new_unseeded() -> Self
Create a new Mersenne Twister random number generator using the default fixed seed.
§Examples
// Default MT seed
let seed = 5489_u64;
let mt = Mt64::new(seed);
let unseeded = Mt64::new_unseeded();
assert_eq!(mt, unseeded);
Sourcepub fn next_u64(&mut self) -> u64
pub fn next_u64(&mut self) -> u64
Generate next u64
output.
u64
is the native output of the generator. This function advances the
RNG step counter by one.
§Examples
let mut mt = Mt64::new_unseeded();
assert_ne!(mt.next_u64(), mt.next_u64());
Sourcepub fn next_u32(&mut self) -> u32
pub fn next_u32(&mut self) -> u32
Generate next u32
output.
This function is implemented by generating one u64
from the RNG and
performing shifting and masking to turn it into a u32
output.
§Examples
let mut mt = Mt64::new_unseeded();
assert_ne!(mt.next_u32(), mt.next_u32());
Sourcepub fn fill_bytes(&mut self, dest: &mut [u8])
pub fn fill_bytes(&mut self, dest: &mut [u8])
Fill a buffer with bytes generated from the RNG.
This method generates random u64
s (the native output unit of the RNG)
until dest
is filled.
This method may discard some output bits if dest.len()
is not a
multiple of 8.
§Examples
let mut mt = Mt64::new_unseeded();
let mut buf = [0; 32];
mt.fill_bytes(&mut buf);
assert_ne!([0; 32], buf);
let mut buf = [0; 31];
mt.fill_bytes(&mut buf);
assert_ne!([0; 31], buf);
Sourcepub fn recover<I>(key: I) -> Result<Self, RecoverRngError>where
I: IntoIterator<Item = u64>,
pub fn recover<I>(key: I) -> Result<Self, RecoverRngError>where
I: IntoIterator<Item = u64>,
Attempt to recover the internal state of a Mersenne Twister using the past 312 samples.
This conversion takes a history of samples from a RNG and returns a RNG that will produce identical output to the RNG that supplied the samples.
This constructor is also available as a TryFrom
implementation for
&[u32]
.
§Errors
If key
has less than 312 elements, an error is returned because there
is not enough data to fully initialize the RNG.
If key
has more than 312 elements, an error is returned because the
recovered RNG will not produce identical output to the RNG that supplied
the samples.
Sourcepub fn reseed(&mut self, seed: u64)
pub fn reseed(&mut self, seed: u64)
Reseed a Mersenne Twister from a single u64
.
§Examples
// Default MT seed
let mut mt = Mt64::new_unseeded();
let first = mt.next_u64();
mt.fill_bytes(&mut [0; 512]);
// Default MT seed
mt.reseed(5489_u64);
assert_eq!(first, mt.next_u64());
Sourcepub fn reseed_with_key<I>(&mut self, key: I)
pub fn reseed_with_key<I>(&mut self, key: I)
Reseed a Mersenne Twister from am iterator of u64
s.
Key can have any length.
Trait Implementations§
Source§impl Default for Mt64
impl Default for Mt64
Source§fn default() -> Self
fn default() -> Self
Return a new Mt64
with the default seed.
Equivalent to calling Mt64::new_unseeded
.
Source§impl From<u64> for Mt64
impl From<u64> for Mt64
Source§fn from(seed: u64) -> Self
fn from(seed: u64) -> Self
Construct a Mersenne Twister RNG from a u64
seed.
This function is equivalent to new
.
§Examples
// Default MT seed
let seed = 5489_u64;
let mt1 = Mt64::from(seed);
let mt2 = Mt64::new(seed);
assert_eq!(mt1, mt2);
// Non-default MT seed
let seed = 9927_u64;
let mt1 = Mt64::from(seed);
let mt2 = Mt64::new(seed);
assert_eq!(mt1, mt2);
Source§impl Ord for Mt64
impl Ord for Mt64
Source§impl PartialOrd for Mt64
impl PartialOrd for Mt64
Source§impl TryFrom<&[u64]> for Mt64
impl TryFrom<&[u64]> for Mt64
Source§fn try_from(key: &[u64]) -> Result<Self, Self::Error>
fn try_from(key: &[u64]) -> Result<Self, Self::Error>
Attempt to recover the internal state of a Mersenne Twister using the past 312 samples.
This conversion takes a history of samples from a RNG and returns a RNG that will produce identical output to the RNG that supplied the samples.
This conversion is implemented with Mt64::recover
.
§Errors
If key
has less than 312 elements, an error is returned because there
is not enough data to fully initialize the RNG.
If key
has more than 312 elements, an error is returned because the
recovered RNG will not produce identical output to the RNG that supplied
the samples.