pub struct AdaptiveConfig {
pub adaptive_mutation: bool,
pub wls_enabled: bool,
pub w_max: f64,
pub w_min: f64,
pub w_f: f64,
pub w_cr: f64,
pub f_m: f64,
pub cr_m: f64,
pub wls_prob: f64,
pub wls_scale: f64,
}Expand description
Adaptive differential evolution configuration
Fields§
§adaptive_mutation: boolEnable adaptive mutation strategy
wls_enabled: boolEnable Wrapper Local Search (WLS)
w_max: f64Maximum weight for adaptive mutation (w_max)
w_min: f64Minimum weight for adaptive mutation (w_min)
w_f: f64Weight factor for F parameter adaptation (between 0.8 and 1.0)
w_cr: f64Weight factor for CR parameter adaptation (between 0.9 and 1.0)
f_m: f64Initial location parameter for Cauchy distribution (F_m)
cr_m: f64Initial location parameter for Gaussian distribution (CR_m)
wls_prob: f64WLS probability (what fraction of population to apply WLS to)
wls_scale: f64WLS Cauchy scale parameter
Trait Implementations§
Source§impl Clone for AdaptiveConfig
impl Clone for AdaptiveConfig
Source§fn clone(&self) -> AdaptiveConfig
fn clone(&self) -> AdaptiveConfig
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 moreSource§impl Debug for AdaptiveConfig
impl Debug for AdaptiveConfig
Auto Trait Implementations§
impl Freeze for AdaptiveConfig
impl RefUnwindSafe for AdaptiveConfig
impl Send for AdaptiveConfig
impl Sync for AdaptiveConfig
impl Unpin for AdaptiveConfig
impl UnsafeUnpin for AdaptiveConfig
impl UnwindSafe for AdaptiveConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more