Removed extra () in method virtual const EOT& operator()(const eoPop<EOT>& pop)
Changed the include of eoPop.h from <> to ""
This commit is contained in:
parent
4b38c62c95
commit
f1fd1f8e33
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include <functional> //
|
||||
#include <numeric> // accumulate
|
||||
#include <eoPopOps.h> // eoPop eoSelect MINFLOAT
|
||||
#include "eoPopOps.h" // eoPop eoSelect MINFLOAT
|
||||
#include "selectors.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
@ -53,7 +53,7 @@ template <class EOT> class eoDetTournament: public eoSelectOne<EOT>
|
|||
|
||||
virtual const EOT& operator()(const eoPop<EOT>& pop)
|
||||
{
|
||||
return deterministic_tournament(pop, Tsize)();
|
||||
return deterministic_tournament(pop, Tsize);
|
||||
}
|
||||
|
||||
/** Inherited from eoObject
|
||||
|
|
|
|||
Reference in a new issue