git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1456 331e1502-861f-0410-8da2-ba01fb791d7f

This commit is contained in:
jhumeau 2009-02-19 17:04:55 +00:00
commit 95bd548f36
2 changed files with 2 additions and 1 deletions

View file

@ -97,6 +97,7 @@ public:
_dest.push_back(_src[i]);
move(_dest.back());
_dest.back().objectiveVector(objVec);
_dest.back().flag(0);
}
}
// preparing the next iteration

View file

@ -102,7 +102,7 @@ protected:
bool res = false;
unsigned int i=0;
while(!res && i < _pop.size()){
res = (_pop[i].flag() == 0);
res = (_pop[i].flag() != 1);
i++;
}
std::cout << res << std::endl;