pub enum AlgorithmSpecificState {
ParticleSwarm {
inertia_weights: Array1<f64>,
acceleration_coefficients: Array2<f64>,
neighborhood_topology: Array2<bool>,
},
AntColony {
pheromone_matrix: Array2<f64>,
pheromone_update_matrix: Array2<f64>,
evaporation_rate: f64,
pheromone_deposit: f64,
},
ArtificialBee {
employed_bees: Array1<bool>,
onlooker_bees: Array1<bool>,
scout_bees: Array1<bool>,
trial_counters: Array1<usize>,
nectar_amounts: Array1<f64>,
},
Firefly {
brightness_matrix: Array2<f64>,
attraction_matrix: Array2<f64>,
randomization_factors: Array1<f64>,
light_absorption: f64,
},
CuckooSearch {
levy_flights: Array2<f64>,
discovery_probability: f64,
step_sizes: Array1<f64>,
},
BacterialForaging {
chemotactic_steps: Array1<usize>,
health_status: Array1<f64>,
reproduction_pool: Array1<bool>,
elimination_pool: Array1<bool>,
},
GreyWolf {
alpha_wolf: Array1<f64>,
beta_wolf: Array1<f64>,
delta_wolf: Array1<f64>,
pack_hierarchy: Array1<usize>,
},
WhaleOptimization {
spiral_constants: Array1<f64>,
encircling_coefficients: Array2<f64>,
bubble_net_feeding: Array1<bool>,
},
}
Expand description
Algorithm-specific state storage
Variants§
ParticleSwarm
Fields
AntColony
Fields
ArtificialBee
Fields
Firefly
Fields
CuckooSearch
BacterialForaging
Fields
GreyWolf
Fields
WhaleOptimization
Trait Implementations§
Source§impl Clone for AlgorithmSpecificState
impl Clone for AlgorithmSpecificState
Source§fn clone(&self) -> AlgorithmSpecificState
fn clone(&self) -> AlgorithmSpecificState
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 Freeze for AlgorithmSpecificState
impl RefUnwindSafe for AlgorithmSpecificState
impl Send for AlgorithmSpecificState
impl Sync for AlgorithmSpecificState
impl Unpin for AlgorithmSpecificState
impl UnwindSafe for AlgorithmSpecificState
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.