Struct R30

Source
pub struct R30 {
    pub state: u32,
}
Expand description

A Rule30 CA based PRNG

Fields§

§state: u32

The current state of the Automata (a bit-string of len 32)

Implementations§

Source§

impl R30

Source

pub fn new(seed: u32) -> Self

Source

pub fn center() -> Self

Source

pub fn evolve(&mut self)

Update the current state of the automata according to Rule-30

Source

pub fn next_bool(&mut self) -> bool

Sample a bit from the center cell as a boolean

Source

pub fn next_u32(&mut self) -> u32

Sample 32 bits from the center of the automata (done by iterating the automata 32 times) and interpret the resultant bitstring as u32

Source

pub fn next_u64(&mut self) -> u64

Sample a u64 using the same method as next_u32

Source

pub fn next_u8(&mut self) -> u8

Sample a u8

Source

pub fn next_i32(&mut self) -> i32

Sample an i32

Source

pub fn next_i64(&mut self) -> i64

Sample an i64

Source

pub fn next_f32(&mut self) -> f32

Sample an f32 in the interval [0, 1)

Source

pub fn next_f64(&mut self) -> f64

Sample an f64 in the interval [0, 1)

Source

pub fn next_u64_in(&mut self, a: u64, b: u64) -> u64

Generate a u64 in [a, b]

Source

pub fn next_u32_in(&mut self, a: u32, b: u32) -> u32

Generate a u32 in [a, b]

Source

pub fn rand_choice<'a, T>(&'a mut self, xs: &'a Vec<T>) -> &T

Uniformly sample from a Vec

Trait Implementations§

Source§

impl Clone for R30

Source§

fn clone(&self) -> R30

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for R30

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for R30

Source§

fn default() -> Self

Use the square of the system time as the seed

Source§

impl Display for R30

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for R30

Source§

fn eq(&self, other: &R30) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl RngCore for R30

Source§

fn next_u32(&mut self) -> u32

Return the next random u32. Read more
Source§

fn next_u64(&mut self) -> u64

Return the next random u64. Read more
Source§

fn fill_bytes(&mut self, dest: &mut [u8])

Fill dest with random data. Read more
Source§

fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error>

Fill dest entirely with random data. Read more
Source§

impl Copy for R30

Source§

impl Eq for R30

Source§

impl StructuralPartialEq for R30

Auto Trait Implementations§

§

impl Freeze for R30

§

impl RefUnwindSafe for R30

§

impl Send for R30

§

impl Sync for R30

§

impl Unpin for R30

§

impl UnwindSafe for R30

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<R> Rng for R
where R: RngCore + ?Sized,

Source§

fn gen<T>(&mut self) -> T

Return a random value supporting the Standard distribution. Read more
Source§

fn gen_range<T, R>(&mut self, range: R) -> T
where T: SampleUniform, R: SampleRange<T>,

Generate a random value in the given range. Read more
Source§

fn sample<T, D>(&mut self, distr: D) -> T
where D: Distribution<T>,

Sample a new value, using the given distribution. Read more
Source§

fn sample_iter<T, D>(self, distr: D) -> DistIter<D, Self, T>
where D: Distribution<T>, Self: Sized,

Create an iterator that generates values using the given distribution. Read more
Source§

fn fill<T>(&mut self, dest: &mut T)
where T: Fill + ?Sized,

Fill any type implementing Fill with random data Read more
Source§

fn try_fill<T>(&mut self, dest: &mut T) -> Result<(), Error>
where T: Fill + ?Sized,

Fill any type implementing Fill with random data Read more
Source§

fn gen_bool(&mut self, p: f64) -> bool

Return a bool with a probability p of being true. Read more
Source§

fn gen_ratio(&mut self, numerator: u32, denominator: u32) -> bool

Return a bool with a probability of numerator/denominator of being true. I.e. gen_ratio(2, 3) has chance of 2 in 3, or about 67%, of returning true. If numerator == denominator, then the returned value is guaranteed to be true. If numerator == 0, then the returned value is guaranteed to be false. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V