pub struct MultiObjectiveConfig<T: Float> {
pub population_size: usize,
pub max_generations: usize,
pub crossover_probability: T,
pub mutation_probability: T,
pub mutation_strength: T,
pub elite_ratio: T,
pub convergence_tolerance: T,
pub reference_point: Option<Vec<T>>,
pub preserve_diversity: bool,
}Expand description
Configuration for multi-objective optimization algorithms
Fields§
§population_size: usizePopulation size for evolutionary algorithms
max_generations: usizeMaximum number of generations
crossover_probability: TCrossover probability
mutation_probability: TMutation probability
mutation_strength: TMutation strength (standard deviation)
elite_ratio: TElite preservation ratio
convergence_tolerance: TConvergence tolerance for hypervolume
reference_point: Option<Vec<T>>Reference point for hypervolume calculation
preserve_diversity: boolEnable diversity preservation mechanisms
Trait Implementations§
Source§impl<T: Clone + Float> Clone for MultiObjectiveConfig<T>
impl<T: Clone + Float> Clone for MultiObjectiveConfig<T>
Source§fn clone(&self) -> MultiObjectiveConfig<T>
fn clone(&self) -> MultiObjectiveConfig<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 MultiObjectiveConfig<T>where
T: Freeze,
impl<T> RefUnwindSafe for MultiObjectiveConfig<T>where
T: RefUnwindSafe,
impl<T> Send for MultiObjectiveConfig<T>where
T: Send,
impl<T> Sync for MultiObjectiveConfig<T>where
T: Sync,
impl<T> Unpin for MultiObjectiveConfig<T>where
T: Unpin,
impl<T> UnwindSafe for MultiObjectiveConfig<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