Added a comment to stdout upon termination - so we know why we stop in case

of multiple criteria
This commit is contained in:
evomarc 2000-11-28 15:35:09 +00:00
commit e4b735b17f
2 changed files with 15 additions and 3 deletions

View file

@ -47,8 +47,15 @@ public:
* reached. Assumes pop is not sorted! */
virtual bool operator() ( const eoPop<EOT>& _pop )
{
return (_pop.nth_element_fitness(0) < maximum);
}
FitnessType bestCurrentFitness = _pop.nth_element_fitness(0);
if (bestCurrentFitness >= maximum)
{
cout << "STOP in eoFitContinue: Best fitness has reached " <<
bestCurrentFitness << "\n";
return false;
}
return true;
}
private:
FitnessType maximum;