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:
parent
c399f0b4d2
commit
497c64606f
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue