debug for Visual Studio

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1357 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2009-01-21 15:59:15 +00:00
commit 497c64606f

View file

@ -195,7 +195,7 @@ public:
unsigned int tmp2=0;
//search bounds of copy_pop where are the goods elements
while ((copy_pop[j].fitness > -1) && (j < copy_pop.size()))
while ((j < copy_pop.size()) && (copy_pop[j].fitness > -1.0))
j++;
p=j-inf;
@ -298,7 +298,7 @@ private:
*/
struct refpop
{
unsigned index;
unsigned int index;
double fitness;
double diversity;
};