pub trait OptimizationResult<G, F> where
    G: Genotype,
    F: Fitness
{ fn best_solution(&self) -> &BestSolution<G, F>; }

Required methods

Implementors