Trait argmin::solver::simulatedannealing::Anneal
source · pub trait Anneal {
type Param;
type Output;
type Float;
// Required method
fn anneal(
&self,
param: &Self::Param,
extent: Self::Float,
) -> Result<Self::Output, Error>;
}
Expand description
This trait handles the annealing of a parameter vector. Problems which are to be solved using
SimulatedAnnealing
must implement this trait.