[][src]Struct spdkit::engine::Engine

pub struct Engine<G, E, F, C> where
    G: Genome,
    E: Evolve<G, F, C>,
    F: EvaluateFitness<G>,
    C: EvaluateObjectiveValue<G>, 
{ /* fields omitted */ }

Evolution engine.

Methods

impl<G, E, F, C> Engine<G, E, F, C> where
    G: Genome,
    E: Evolve<G, F, C>,
    F: EvaluateFitness<G>,
    C: EvaluateObjectiveValue<G>, 
[src]

pub fn create() -> Self[src]

pub fn algorithm(self, algo: E) -> Self[src]

Set core algorithm for evolution

pub fn termination_nlast(self, n: usize) -> Self[src]

The last n generations for termination criterion.

pub fn set_termination_nlast(&mut self, n: usize)[src]

The last n generations for termination criterion.

pub fn valuer(self, valuer: Valuer<G, F, C>) -> Self[src]

Set Valuer for evolution.

pub fn evolve<'a>(
    &'a mut self,
    seeds: &[G]
) -> impl Iterator<Item = Result<Generation<G>>> + 'a
[src]

Evolves one step forward from seeds.

Parameters

  • seeds: genomes as initial seeds for evolution. The length of seeds will be set as the internal population size limit.

Returns

  • return an iterator over Generation.

Auto Trait Implementations

impl<G, E, F, C> RefUnwindSafe for Engine<G, E, F, C> where
    C: RefUnwindSafe,
    E: RefUnwindSafe,
    F: RefUnwindSafe,
    G: RefUnwindSafe

impl<G, E, F, C> Send for Engine<G, E, F, C> where
    C: Send,
    E: Send,
    F: Send

impl<G, E, F, C> Sync for Engine<G, E, F, C> where
    C: Sync,
    E: Sync,
    F: Sync,
    G: Sync

impl<G, E, F, C> Unpin for Engine<G, E, F, C> where
    C: Unpin,
    E: Unpin,
    F: Unpin,
    G: Unpin

impl<G, E, F, C> UnwindSafe for Engine<G, E, F, C> where
    C: UnwindSafe,
    E: UnwindSafe,
    F: UnwindSafe,
    G: UnwindSafe

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<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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>,