pub struct AntColonyPermutation<B: Backend> { /* private fields */ }Expand description
Ant Colony Optimization for permutation problems (TSP, QAP, …).
Not yet implemented — planned for a future release.
§Panics
All Strategy methods except best invoke todo!(). The struct
is constructible (new, Default) and useful for declaring
downstream API surface; do not drive it through a harness.
§Example
use burn::backend::Flex;
use rlevo_evolution::algorithms::metaheuristic::aco_perm::{AntColonyPermutation, AcoPermConfig};
let strategy = AntColonyPermutation::<Flex>::new();
let params = AcoPermConfig::default_for(32, 20);
let _ = (strategy, params);Implementations§
Trait Implementations§
Source§impl<B: Clone + Backend> Clone for AntColonyPermutation<B>
impl<B: Clone + Backend> Clone for AntColonyPermutation<B>
Source§fn clone(&self) -> AntColonyPermutation<B>
fn clone(&self) -> AntColonyPermutation<B>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<B: Copy + Backend> Copy for AntColonyPermutation<B>
Source§impl<B: Default + Backend> Default for AntColonyPermutation<B>
impl<B: Default + Backend> Default for AntColonyPermutation<B>
Source§fn default() -> AntColonyPermutation<B>
fn default() -> AntColonyPermutation<B>
Returns the “default value” for a type. Read more
Source§impl<B: Backend> Strategy<B> for AntColonyPermutation<B>
impl<B: Backend> Strategy<B> for AntColonyPermutation<B>
Source§type Params = AcoPermConfig
type Params = AcoPermConfig
Static parameters for a run.
Source§type State = AcoPermState<B>
type State = AcoPermState<B>
Generation-to-generation state.
Source§fn init(
&self,
_params: &AcoPermConfig,
_rng: &mut dyn Rng,
_device: &<B as BackendTypes>::Device,
) -> AcoPermState<B>
fn init( &self, _params: &AcoPermConfig, _rng: &mut dyn Rng, _device: &<B as BackendTypes>::Device, ) -> AcoPermState<B>
Build the initial state. Read more
Source§fn ask(
&self,
_params: &AcoPermConfig,
_state: &AcoPermState<B>,
_rng: &mut dyn Rng,
_device: &<B as BackendTypes>::Device,
) -> (Self::Genome, AcoPermState<B>)
fn ask( &self, _params: &AcoPermConfig, _state: &AcoPermState<B>, _rng: &mut dyn Rng, _device: &<B as BackendTypes>::Device, ) -> (Self::Genome, AcoPermState<B>)
Propose the next population. Read more
Source§fn tell(
&self,
_params: &AcoPermConfig,
_population: Self::Genome,
_fitness: Tensor<B, 1>,
_state: AcoPermState<B>,
_rng: &mut dyn Rng,
) -> (AcoPermState<B>, StrategyMetrics)
fn tell( &self, _params: &AcoPermConfig, _population: Self::Genome, _fitness: Tensor<B, 1>, _state: AcoPermState<B>, _rng: &mut dyn Rng, ) -> (AcoPermState<B>, StrategyMetrics)
Consume fitness values and produce the next state. Read more
Auto Trait Implementations§
impl<B> Freeze for AntColonyPermutation<B>
impl<B> RefUnwindSafe for AntColonyPermutation<B>
impl<B> Send for AntColonyPermutation<B>
impl<B> Sync for AntColonyPermutation<B>
impl<B> Unpin for AntColonyPermutation<B>
impl<B> UnsafeUnpin for AntColonyPermutation<B>
impl<B> UnwindSafe for AntColonyPermutation<B>
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<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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