Trait necsim_core::cogs::rng::HabitatPrimeableRng

source ·
pub trait HabitatPrimeableRng<M: MathsCore, H: Habitat<M>>: PrimeableRng<M> {
    // Provided method
    fn prime_with_habitat(
        &mut self,
        habitat: &H,
        indexed_location: &IndexedLocation,
        time_index: u64
    ) { ... }
}

Provided Methods§

source

fn prime_with_habitat( &mut self, habitat: &H, indexed_location: &IndexedLocation, time_index: u64 )

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<M: MathsCore, R: PrimeableRng<M>, H: Habitat<M>> HabitatPrimeableRng<M, H> for R