pub struct Mt { /* private fields */ }
Expand description
The 32-bit flavor of the Mersenne Twister pseudorandom number generator.
The official name of this RNG is MT19937
. It natively outputs u32
.
§Size
Mt
requires approximately 2.5 kilobytes of internal state.
You may wish to store an Mt
on the heap in a Box
to make it easier to
embed in another struct.
Mt
is also the same size as Mt64
.
assert_eq!(2504, size_of::<Mt>());
assert_eq!(size_of::<Mt64>(), size_of::<Mt>());
Implementations§
Source§impl Mt
impl Mt
Sourcepub const DEFAULT_SEED: u32 = 5_489u32
pub const DEFAULT_SEED: u32 = 5_489u32
Default seed used by Mt::new_unseeded
.
Sourcepub fn new(seed: u32) -> Self
pub fn new(seed: u32) -> Self
Create a new Mersenne Twister random number generator using the given seed.
§Examples
§Constructing with a u32
seed
let seed = 123_456_789_u32;
let mt1 = Mt::new(seed);
let mt2 = Mt::from(seed.to_le_bytes());
assert_eq!(mt1, mt2);
§Constructing with default seed
let mt1 = Mt::new(Mt::DEFAULT_SEED);
let mt2 = Mt::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_u32;
let mt = Mt::new(seed);
let unseeded = Mt::new_unseeded();
assert_eq!(mt, unseeded);
Sourcepub fn next_u64(&mut self) -> u64
pub fn next_u64(&mut self) -> u64
Generate next u64
output.
This function is implemented by generating two u32
s from the RNG and
performing shifting and masking to turn them into a u64
output.
§Examples
let mut mt = Mt::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.
u32
is the native output of the generator. This function advances the
RNG step counter by one.
§Examples
let mut mt = Mt::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 u32
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 4.
§Examples
let mut mt = Mt::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 = u32>,
pub fn recover<I>(key: I) -> Result<Self, RecoverRngError>where
I: IntoIterator<Item = u32>,
Attempt to recover the internal state of a Mersenne Twister using the past 624 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 624 elements, an error is returned because there
is not enough data to fully initialize the RNG.
If key
has more than 624 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: u32)
pub fn reseed(&mut self, seed: u32)
Reseed a Mersenne Twister from a single u32
.
§Examples
// Default MT seed
let mut mt = Mt::new_unseeded();
let first = mt.next_u32();
mt.fill_bytes(&mut [0; 512]);
// Default MT seed
mt.reseed(5489_u32);
assert_eq!(first, mt.next_u32());
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 u32
s.
Key can have any length.
Trait Implementations§
Source§impl Default for Mt
impl Default for Mt
Source§fn default() -> Self
fn default() -> Self
Return a new Mt
with the default seed.
Equivalent to calling Mt::new_unseeded
.
Source§impl From<[u8; 4]> for Mt
impl From<[u8; 4]> for Mt
Source§fn from(seed: [u8; 4]) -> Self
fn from(seed: [u8; 4]) -> Self
Construct a Mersenne Twister RNG from 4 bytes.
The given bytes are treated as a little endian encoded u32
.
§Examples
// Default MT seed
let seed = 5489_u32.to_le_bytes();
let mut mt = Mt::from(seed);
assert_ne!(mt.next_u32(), mt.next_u32());
This constructor is equivalent to passing a little endian encoded u32
.
// Default MT seed
let seed = 5489_u32.to_le_bytes();
let mt1 = Mt::from(seed);
let mt2 = Mt::new(5489_u32);
assert_eq!(mt1, mt2);
Source§impl From<u32> for Mt
impl From<u32> for Mt
Source§fn from(seed: u32) -> Self
fn from(seed: u32) -> Self
Construct a Mersenne Twister RNG from a u32
seed.
This function is equivalent to new
.
§Examples
// Default MT seed
let seed = 5489_u32;
let mt1 = Mt::from(seed);
let mt2 = Mt::new(seed);
assert_eq!(mt1, mt2);
// Non-default MT seed
let seed = 9927_u32;
let mt1 = Mt::from(seed);
let mt2 = Mt::new(seed);
assert_eq!(mt1, mt2);
Source§impl Ord for Mt
impl Ord for Mt
Source§impl PartialOrd for Mt
impl PartialOrd for Mt
Source§impl TryFrom<&[u32]> for Mt
impl TryFrom<&[u32]> for Mt
Source§fn try_from(key: &[u32]) -> Result<Self, Self::Error>
fn try_from(key: &[u32]) -> Result<Self, Self::Error>
Attempt to recover the internal state of a Mersenne Twister using the past 624 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 Mt::recover
.
§Errors
If key
has less than 624 elements, an error is returned because there
is not enough data to fully initialize the RNG.
If key
has more than 624 elements, an error is returned because the
recovered RNG will not produce identical output to the RNG that supplied
the samples.