pub trait SingularActiveLineageSampler<M: MathsCore, H: Habitat<M>, G: RngCore<M>, S: LineageStore<M, H>, X: EmigrationExit<M, H, G, S>, D: DispersalSampler<M, H, G>, C: CoalescenceSampler<M, H, S>, T: TurnoverRate<M, H>, N: SpeciationProbability<M, H>, E: EventSampler<M, H, G, S, X, D, C, T, N>, I: ImmigrationEntry<M>>: ActiveLineageSampler<M, H, G, S, X, D, C, T, N, E, I> {
    // Required method
    fn replace_active_lineage(
        &mut self,
        active_lineage: Option<Lineage>
    ) -> Option<Lineage>;
}

Required Methods§

source

fn replace_active_lineage( &mut self, active_lineage: Option<Lineage> ) -> Option<Lineage>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<M: MathsCore, H: Habitat<M>, G: PrimeableRng<M>, X: EmigrationExit<M, H, G, IndependentLineageStore<M, H>>, D: DispersalSampler<M, H, G>, T: TurnoverRate<M, H>, N: SpeciationProbability<M, H>, J: EventTimeSampler<M, H, G, T>> SingularActiveLineageSampler<M, H, G, IndependentLineageStore<M, H>, X, D, IndependentCoalescenceSampler<M, H>, T, N, IndependentEventSampler<M, H, G, X, D, T, N>, NeverImmigrationEntry> for IndependentActiveLineageSampler<M, H, G, X, D, T, N, J>