#include <moExponentialCoolingSchedule.h>
Inheritance diagram for moExponentialCoolingSchedule:

Public Member Functions | |
| moExponentialCoolingSchedule (double __threshold, double __ratio) | |
| Simple constructor. | |
| bool | operator() (double &__temp) |
| Function which proceeds to the cooling. | |
Private Attributes | |
| double | threshold |
| The temperature threhold. | |
| double | ratio |
| The decreasing factor of the temperature. | |
An other very simple cooling schedule, the temperature decrease according to a ratio while the temperature is greater than a given threshold.
Definition at line 22 of file moExponentialCoolingSchedule.h.
| moExponentialCoolingSchedule::moExponentialCoolingSchedule | ( | double | __threshold, | |
| double | __ratio | |||
| ) | [inline] |
Simple constructor.
| __threshold | the threshold. | |
| __ratio | the ratio used to descrease the temperature. |
Definition at line 31 of file moExponentialCoolingSchedule.h.
| bool moExponentialCoolingSchedule::operator() | ( | double & | __temp | ) | [inline, virtual] |
Function which proceeds to the cooling.
It decreases the temperature and indicates if it is greater than the threshold.
| __temp | the current temperature. |
Implements eoUF< double &, bool >.
Definition at line 41 of file moExponentialCoolingSchedule.h.
1.4.7