Update for windows compatibility

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@359 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jboisson 2007-06-25 15:44:52 +00:00
commit f9693d1e1c
229 changed files with 3759 additions and 2398 deletions

View file

@ -31,7 +31,7 @@ public:
/*!
\param __size The maximum size of the solution tabu list.
*/
moSimpleSolutionTabuList(unsigned __size): maxSize(__size)
moSimpleSolutionTabuList(unsigned int __size): maxSize(__size)
{
currentSize=0;
}
@ -123,10 +123,10 @@ private:
}
//! The maximum size of the tabu list.
unsigned maxSize;
unsigned int maxSize;
//! The current size of the tabu list.
unsigned currentSize;
unsigned int currentSize;
//! The solution tabu list.
std::list<EOT> tabuList;