Removed extra {} in operator()
This commit is contained in:
parent
f430468921
commit
b4e61489c7
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ template <class EOT> class eoStochTournament: public eoSelectOne<EOT>
|
||||||
DON'T cast the fitness to a float, use the EOT comparator! */
|
DON'T cast the fitness to a float, use the EOT comparator! */
|
||||||
virtual const EOT& operator()(const eoPop<EOT>& pop)
|
virtual const EOT& operator()(const eoPop<EOT>& pop)
|
||||||
{
|
{
|
||||||
return stochastic_tournament(pop, Trate)();
|
return stochastic_tournament(pop, Trate);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
||||||
Reference in a new issue