Struct argmin::solver::simulatedannealing::SimulatedAnnealing[][src]

pub struct SimulatedAnnealing<F> { /* fields omitted */ }
Expand description

Simulated Annealing

Example

References

[0] Wikipedia

[1] S Kirkpatrick, CD Gelatt Jr, MP Vecchi. (1983). “Optimization by Simulated Annealing”. Science 13 May 1983, Vol. 220, Issue 4598, pp. 671-680 DOI: 10.1126/science.220.4598.671

Implementations

Constructor

Parameter:

  • init_temp: initial temperature

Set temperature function to one of the options in SATempFunc.

The optimization stops after there has been no accepted solution after iter iterations

The optimization stops after there has been no new best solution after iter iterations

Start reannealing after iter iterations

Start reannealing after no accepted solution has been found for iter iterations

Start reannealing after no new best solution has been found for iter iterations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Perform one iteration of SA algorithm

Name of the solver

Initializes the algorithm Read more

Checks whether the algorithm must be terminated

Checks whether basic termination reasons apply. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.