Struct rand::prng::isaac::IsaacCore [−][src]
pub struct IsaacCore { /* fields omitted */ }The core of IsaacRng, used with BlockRng.
Trait Implementations
impl Clone for IsaacCore[src]
impl Clone for IsaacCorefn clone(&self) -> IsaacCore[src]
fn clone(&self) -> IsaacCoreReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for IsaacCore[src]
impl Debug for IsaacCorefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl BlockRngCore for IsaacCore[src]
impl BlockRngCore for IsaacCoretype Item = u32
Results element type, e.g. u32.
type Results = IsaacArray<Self::Item>
Results type. This is the 'block' an RNG implementing BlockRngCore generates, which will usually be an array like [u32; 16]. Read more
fn generate(&mut self, results: &mut IsaacArray<Self::Item>)[src]
fn generate(&mut self, results: &mut IsaacArray<Self::Item>)Refills the output buffer, results. See also the pseudocode desciption
of the algorithm in the IsaacRng documentation.
Optimisations used (similar to the reference implementation):
- The loop is unrolled 4 times, once for every constant of mix().
- The contents of the main loop are moved to a function
rngstep, to reduce code duplication. - We use local variables for a and b, which helps with optimisations.
- We split the main loop in two, one that operates over 0..128 and one
over 128..256. This way we can optimise out the addition and modulus
from
s[i+128 mod 256]. - We maintain one index
iand addmorm2as base (m2 for thes[i+128 mod 256]), relying on the optimizer to turn it into pointer arithmetic. - We fill
resultsbackwards. The reference implementation reads values fromresultsin reverse. We read them in the normal direction, to makefill_bytesa memcopy. To maintain compatibility we fill in reverse.
impl SeedableRng for IsaacCore[src]
impl SeedableRng for IsaacCoretype Seed = [u8; 32]
Seed type, which is restricted to types mutably-dereferencable as u8 arrays (we recommend [u8; N] for some N). Read more
fn from_seed(seed: Self::Seed) -> Self[src]
fn from_seed(seed: Self::Seed) -> SelfCreate a new PRNG using the given seed. Read more
fn from_rng<R: RngCore>(rng: R) -> Result<Self, Error>[src]
fn from_rng<R: RngCore>(rng: R) -> Result<Self, Error>Create a new PRNG seeded from another Rng. Read more