Re-enabled declone flag (seemed to be commented out for some reason)
This commit is contained in:
parent
e930ff84dd
commit
742457ae3e
1 changed files with 1 additions and 1 deletions
|
|
@ -175,7 +175,7 @@ private :
|
||||||
unsigned index = sort1[i];
|
unsigned index = sort1[i];
|
||||||
|
|
||||||
// check for clones and delete them
|
// check for clones and delete them
|
||||||
if (0 && i > 0)
|
if (i > 0)
|
||||||
{
|
{
|
||||||
unsigned prev = sort1[i-1];
|
unsigned prev = sort1[i-1];
|
||||||
if ( _pop[index].fitness() == _pop[prev].fitness())
|
if ( _pop[index].fitness() == _pop[prev].fitness())
|
||||||
|
|
|
||||||
Reference in a new issue