[][src]Struct spdkit::Valuer

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

Methods

impl<G, F, C> Valuer<G, F, C> where
    G: Genome,
    F: EvaluateFitness<G>,
    C: EvaluateObjectiveValue<G>, 
[src]

pub fn new() -> Self[src]

pub fn with_fitness(self, f: F) -> Self[src]

Set fitness evaluator for building population.

pub fn with_creator(self, c: C) -> Self[src]

Set evaluator of objective value for creating individuals.

Important traits for Vec<u8>
pub fn create_individuals(&self, genomes: Vec<G>) -> Vec<Individual<G>>[src]

Create individuals from genomes.

pub fn build_population(&mut self, indvs: Vec<Individual<G>>) -> Population<G>[src]

Build a population from individuals.

Auto Trait Implementations

impl<G, F, C> RefUnwindSafe for Valuer<G, F, C> where
    C: RefUnwindSafe,
    F: RefUnwindSafe,
    G: RefUnwindSafe

impl<G, F, C> Send for Valuer<G, F, C> where
    C: Send,
    F: Send

impl<G, F, C> Sync for Valuer<G, F, C> where
    C: Sync,
    F: Sync,
    G: Sync

impl<G, F, C> Unpin for Valuer<G, F, C> where
    C: Unpin,
    F: Unpin,
    G: Unpin

impl<G, F, C> UnwindSafe for Valuer<G, F, C> where
    C: 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>,