[−][src]Struct rand_pcg::Lcg128Xsl64
A PCG random number generator (XSL RR 128/64 (LCG) variant).
Permuted Congruential Generator with 128-bit state, internal Linear Congruential Generator, and 64-bit output via "xorshift low (bits), random rotation" output function.
This is a 128-bit LCG with explicitly chosen stream with the PCG-XSL-RR
output function. This combination is the standard pcg64.
Despite the name, this implementation uses 32 bytes (256 bit) space
comprising 128 bits of state and 128 bits stream selector. These are both
set by SeedableRng, using a 256-bit seed.
Implementations
impl Lcg128Xsl64[src][−]
pub fn new(state: u128, stream: u128) -> Self[src][−]
Construct an instance compatible with PCG seed and stream.
Note that PCG specifies default values for both parameters:
state = 0xcafef00dd15ea5e5stream = 0xa02bdbf7bb3c0a7ac28fa16a64abf96
Trait Implementations
impl Clone for Lcg128Xsl64[src][+]
impl Debug for Lcg128Xsl64[src][+]
impl RngCore for Lcg128Xsl64[src][+]
impl SeedableRng for Lcg128Xsl64[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Lcg128Xsl64
impl Send for Lcg128Xsl64
impl Sync for Lcg128Xsl64
impl Unpin for Lcg128Xsl64
impl UnwindSafe for Lcg128Xsl64
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> From<T> for T[src][+]
impl<T, U> Into<U> for T where
U: From<T>, [src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src][+]
U: TryFrom<T>,