testILS updated

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1733 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2010-04-07 16:07:37 +00:00
commit b453cef86f

View file

@ -31,6 +31,8 @@ using namespace std;
#include <neighborhood/moRndWithoutReplNeighborhood.h>
#include <oneMaxBitNeighbor.h>
#include <neighborhood/moDummyNeighbor.h>
#include <eval/moFullEvalByModif.h>
#include <eval/moFullEvalByCopy.h>
#include <comparator/moNeighborComparator.h>
@ -192,9 +194,9 @@ void main_function(int argc, char **argv)
moILSexplorer< Neighbor > explorerILS(hc, perturb, accept);
moIterContinuator<Neighbor> continuatorILS(100);
moIterContinuator<moDummyNeighbor<Indi, Indi::Fitness> > continuatorILS(100);
moLocalSearch<Neighbor>localSearch(explorerILS, continuatorILS, eval);
moLocalSearch<moDummyNeighbor<Indi, Indi::Fitness> >localSearch(explorerILS, continuatorILS, eval);
/* =========================================================