Trait genetic_algorithm::strategy::Strategy
source · [−]pub trait Strategy<G: Genotype> {
fn call<R: Rng>(&mut self, rng: &mut R);
fn best_chromosome(&self) -> Option<Chromosome<G>>;
}
pub trait Strategy<G: Genotype> {
fn call<R: Rng>(&mut self, rng: &mut R);
fn best_chromosome(&self) -> Option<Chromosome<G>>;
}