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

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

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

Variants

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

Implementations

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.

Trait Implementations

impl Clone for Genocide[src]

impl Debug for Genocide[src]

impl<'de> Deserialize<'de> for Genocide[src]

impl Serialize for Genocide[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,