Struct genetic_algorithm::extension::ExtensionMassGenesis
source · pub struct ExtensionMassGenesis {
pub cardinality_threshold: usize,
}Expand description
A version of MassExtinction, where only an adam and eve of current best chromosomes survive
Ensure you have some population growth in select/crossover by setting the Select selection_rate > 0.5 in order for the population to recover
Fields§
§cardinality_threshold: usizeImplementations§
Trait Implementations§
source§impl Clone for MassGenesis
impl Clone for MassGenesis
source§fn clone(&self) -> MassGenesis
fn clone(&self) -> MassGenesis
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for MassGenesis
impl Debug for MassGenesis
source§impl Extension for MassGenesis
impl Extension for MassGenesis
fn call<G: EvolveGenotype, R: Rng, SR: StrategyReporter<Genotype = G>>( &mut self, genotype: &mut G, state: &mut EvolveState<G>, config: &EvolveConfig, reporter: &mut SR, _rng: &mut R, )
source§impl From<MassGenesis> for Wrapper
impl From<MassGenesis> for Wrapper
source§fn from(extension: ExtensionMassGenesis) -> Self
fn from(extension: ExtensionMassGenesis) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MassGenesis
impl RefUnwindSafe for MassGenesis
impl Send for MassGenesis
impl Sync for MassGenesis
impl Unpin for MassGenesis
impl UnwindSafe for MassGenesis
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§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