Interface SimulatedAnnealingFrontierStrategy.CoolingSchedule
- Enclosing class:
SimulatedAnnealingFrontierStrategy<B extends Bigraph<? extends Signature<?>>>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface representing a cooling schedule used in simulated annealing processes.
It provides a method to calculate the next temperature based on the current temperature
and the current epoch or iteration.
-
Method Summary
-
Method Details
-
cool
double cool(double currentT, int epoch) - Parameters:
currentT- current temperatureepoch- current epoch
-