#include <moFitSolContinue.h>
Inheritance diagram for moFitSolContinue< EOT >:

Public Types | |
| typedef EOT::Fitness | Fitness |
| Alias for the fitness. | |
Public Member Functions | |
| moFitSolContinue (Fitness __fitness, bool __maximization=true) | |
| Basic constructor. | |
| bool | operator() (const EOT &__sol) |
| Function that activates the stopping criterion. | |
| void | init () |
| Procedure which allows to initialise all the stuff needed. | |
Private Attributes | |
| Fitness | fitness |
| Fitness target. | |
| bool | maximization |
| Flag that indicate if there is a maximization (true) or a minimization (false) of the fitness value. | |
The stop criterion corresponds to a fitness threshold gained.
Definition at line 21 of file moFitSolContinue.h.
| moFitSolContinue< EOT >::moFitSolContinue | ( | Fitness | __fitness, | |
| bool | __maximization = true | |||
| ) | [inline] |
Basic constructor.
| __fitness | The fitness to reach. | |
| __maximization | Indicate if the the aim is to maximize or minimize the fitness. |
Definition at line 34 of file moFitSolContinue.h.
| bool moFitSolContinue< EOT >::operator() | ( | const EOT & | __sol | ) | [inline, virtual] |
Function that activates the stopping criterion.
Indicates if the fitness threshold has not been yet reached.
| __sol | the current solution. |
Implements eoUF< const EOT &, bool >.
Definition at line 44 of file moFitSolContinue.h.
References moFitSolContinue< EOT >::fitness, and moFitSolContinue< EOT >::maximization.
bool moFitSolContinue< EOT >::maximization [private] |
Flag that indicate if there is a maximization (true) or a minimization (false) of the fitness value.
It can be interesting to know this information because some solution-based metaheuristics can generate solution with a fitness that is worse that the best known fitness (in this case, the counter is not reinitialized).
Definition at line 72 of file moFitSolContinue.h.
Referenced by moFitSolContinue< EOT >::operator()().
1.5.2