Enum argmin::solver::simulatedannealing::SATempFunc
source · pub enum SATempFunc<F> {
TemperatureFast,
Boltzmann,
Exponential(F),
}
Expand description
Temperature functions for Simulated Annealing.
Given the initial temperature t_init
and the iteration number i
, the current temperature
t_i
is given as follows:
SATempFunc::TemperatureFast
:t_i = t_init / i
SATempFunc::Boltzmann
:t_i = t_init / ln(i)
SATempFunc::Exponential
:t_i = t_init * 0.95^i
Variants§
Trait Implementations§
source§impl<F: Clone> Clone for SATempFunc<F>
impl<F: Clone> Clone for SATempFunc<F>
source§fn clone(&self) -> SATempFunc<F>
fn clone(&self) -> SATempFunc<F>
Returns a copy 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<F: Debug> Debug for SATempFunc<F>
impl<F: Debug> Debug for SATempFunc<F>
source§impl<F> Default for SATempFunc<F>
impl<F> Default for SATempFunc<F>
source§fn default() -> SATempFunc<F>
fn default() -> SATempFunc<F>
Returns the “default value” for a type. Read more
source§impl<'de, F> Deserialize<'de> for SATempFunc<F>where
F: Deserialize<'de>,
impl<'de, F> Deserialize<'de> for SATempFunc<F>where
F: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<F: PartialEq> PartialEq for SATempFunc<F>
impl<F: PartialEq> PartialEq for SATempFunc<F>
source§impl<F> Serialize for SATempFunc<F>where
F: Serialize,
impl<F> Serialize for SATempFunc<F>where
F: Serialize,
impl<F: Copy> Copy for SATempFunc<F>
impl<F: Eq> Eq for SATempFunc<F>
impl<F> StructuralPartialEq for SATempFunc<F>
Auto Trait Implementations§
impl<F> Freeze for SATempFunc<F>where
F: Freeze,
impl<F> RefUnwindSafe for SATempFunc<F>where
F: RefUnwindSafe,
impl<F> Send for SATempFunc<F>where
F: Send,
impl<F> Sync for SATempFunc<F>where
F: Sync,
impl<F> Unpin for SATempFunc<F>where
F: Unpin,
impl<F> UnwindSafe for SATempFunc<F>where
F: 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§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 more§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).§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.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.