[][src]Enum radiate::engine::genocide::Genocide

pub enum Genocide {
    KeepTop(usize),
    KillWorst(f32),
    KillRandom(f32),
    KillOldestSpecies(usize),
}

Definine genocide struct to provide options of what to do when a population is stagnent, ie: how to clean the population

Variants

KeepTop(usize)
KillWorst(f32)
KillRandom(f32)
KillOldestSpecies(usize)

Methods

impl Genocide[src]

pub fn kill<T, E>(&self, generation: &mut Generation<T, E>) where
    T: Genome<T, E> + Send + Sync + Clone,
    E: Send + Sync
[src]

match the enum option to what it is, and call it's function to clean the population by it.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.

impl<T> Type for T where
    T: ?Sized
[src]

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