Interface AnnealingFunction
-
- All Known Implementing Classes:
BoltzAnnealingFunction
,BoxGSAAnnealingFunction
,FastAnnealingFunction
,GSAAnnealingFunction
,SimpleAnnealingFunction
public interface AnnealingFunction
An annealing function or a tempered proposal function gives the next proposal/state from the current state and temperature.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vector
nextProposal(Vector currentState, double temperature)
Gets the next proposal, given the current state and the temperature.
-