pub struct MultiObjectiveResult<T: Float> {
pub pareto_front: ParetoFront<T>,
pub generations: usize,
pub final_population: Vec<Individual<T>>,
pub converged: bool,
pub evolution_history: Option<Vec<ParetoFront<T>>>,
}Expand description
Results from multi-objective optimization
Fields§
§pareto_front: ParetoFront<T>Final Pareto front
generations: usizeNumber of generations performed
final_population: Vec<Individual<T>>Final population
converged: boolConvergence status
evolution_history: Option<Vec<ParetoFront<T>>>Evolution history (optional)
Trait Implementations§
Source§impl<T: Clone + Float> Clone for MultiObjectiveResult<T>
impl<T: Clone + Float> Clone for MultiObjectiveResult<T>
Source§fn clone(&self) -> MultiObjectiveResult<T>
fn clone(&self) -> MultiObjectiveResult<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for MultiObjectiveResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for MultiObjectiveResult<T>where
T: RefUnwindSafe,
impl<T> Send for MultiObjectiveResult<T>where
T: Send,
impl<T> Sync for MultiObjectiveResult<T>where
T: Sync,
impl<T> Unpin for MultiObjectiveResult<T>where
T: Unpin,
impl<T> UnwindSafe for MultiObjectiveResult<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more