Removed "using namespace std" statements from header files in EO -- "std::" identifier were added where necessary.
This commit is contained in:
parent
6441ea1ec3
commit
86fa476c67
263 changed files with 2009 additions and 1976 deletions
|
|
@ -39,7 +39,7 @@ public:
|
|||
/// Ctor
|
||||
eoEvalContinue( eoEvalFuncCounter<EOT> & _eval, unsigned long _totalEval)
|
||||
: eval(_eval), repTotalEvaluations( _totalEval ) {
|
||||
cout << "Ctor de eoEvalFuncCounter avec total = " << repTotalEvaluations << endl;
|
||||
std::cout << "Ctor de eoEvalFuncCounter avec total = " << repTotalEvaluations << std::endl;
|
||||
};
|
||||
|
||||
/** Returns false when a certain number of evaluations has been done
|
||||
|
|
@ -47,7 +47,7 @@ public:
|
|||
virtual bool operator() ( const eoPop<EOT>& _vEO ) {
|
||||
if (eval.value() >= repTotalEvaluations)
|
||||
{
|
||||
cout << "STOP in eoEvalContinue: Reached maximum number of evaluations [" << repTotalEvaluations << "]\n";
|
||||
std::cout << "STOP in eoEvalContinue: Reached maximum number of evaluations [" << repTotalEvaluations << "]\n";
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue