Enum rustcoalescence_scenarios::spatially_explicit::map::SpatiallyExplicitTurnoverMapScenario
source · pub enum SpatiallyExplicitTurnoverMapScenario {}
Trait Implementations§
source§impl<M: MathsCore, G: RngCore<M>> Scenario<M, G> for SpatiallyExplicitTurnoverMapScenario
impl<M: MathsCore, G: RngCore<M>> Scenario<M, G> for SpatiallyExplicitTurnoverMapScenario
type Decomposition = EqualDecomposition<M, <SpatiallyExplicitTurnoverMapScenario as Scenario<M, G>>::Habitat>
type DecompositionAuxiliary = ()
type DispersalSampler = InMemoryPackedSeparableAliasDispersalSampler<M, <SpatiallyExplicitTurnoverMapScenario as Scenario<M, G>>::Habitat, G>
type Habitat = InMemoryHabitat<M>
type LineageStore<L: LineageStore<M, Self::Habitat>> = L
type OriginSampler<'h, I: Iterator<Item = u64>> = InMemoryOriginSampler<'h, M, I> where G: 'h
type OriginSamplerAuxiliary = ()
type SpeciationProbability = UniformSpeciationProbability
type TurnoverRate = InMemoryTurnoverRate
source§fn new(
args: Self::Arguments,
speciation_probability_per_generation: PositiveUnitF64
) -> Result<ScenarioCogs<M, G, Self>, Self::Error>
fn new( args: Self::Arguments, speciation_probability_per_generation: PositiveUnitF64 ) -> Result<ScenarioCogs<M, G, Self>, Self::Error>
Errors Read more
fn sample_habitat<'h, I: Iterator<Item = u64>>(
habitat: &'h Self::Habitat,
pre_sampler: OriginPreSampler<M, I>,
_auxiliary: Self::OriginSamplerAuxiliary
) -> Self::OriginSampler<'h, I>where
G: 'h,
fn decompose( habitat: &Self::Habitat, subdomain: Partition, _auxiliary: Self::DecompositionAuxiliary ) -> Self::Decomposition
Auto Trait Implementations§
impl Freeze for SpatiallyExplicitTurnoverMapScenario
impl RefUnwindSafe for SpatiallyExplicitTurnoverMapScenario
impl Send for SpatiallyExplicitTurnoverMapScenario
impl Sync for SpatiallyExplicitTurnoverMapScenario
impl Unpin for SpatiallyExplicitTurnoverMapScenario
impl UnwindSafe for SpatiallyExplicitTurnoverMapScenario
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> ExtractDiscriminant for T
impl<T> ExtractDiscriminant for T
§type Discriminant = <T as ExtractDiscriminantSpec<<T as DiscriminantKind>::Discriminant>>::Ty
type Discriminant = <T as ExtractDiscriminantSpec<<T as DiscriminantKind>::Discriminant>>::Ty
The type of the discriminant, which must satisfy the trait bounds
required by
core::mem::Discriminant
. Read moresource§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more