[][src]Enum argmin::solver::simulatedannealing::SATempFunc

pub enum SATempFunc<F> {
    TemperatureFast,
    Boltzmann,
    Exponential(F),
}

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

TemperatureFast

t_i = t_init / i

Boltzmann

t_i = t_init / ln(i)

Exponential(F)

t_i = t_init * x^i

Trait Implementations

impl<F: Clone> Clone for SATempFunc<F>[src]

impl<F: Copy> Copy for SATempFunc<F>[src]

impl<F: Debug> Debug for SATempFunc<F>[src]

impl<F> Default for SATempFunc<F>[src]

impl<'de, F> Deserialize<'de> for SATempFunc<F> where
    F: Deserialize<'de>, 
[src]

impl<F> Serialize for SATempFunc<F> where
    F: Serialize
[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,