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

This commit is contained in:
jhumeau 2009-02-06 14:48:04 +00:00
commit c30f6f90e8
5 changed files with 128 additions and 9 deletions

View file

@ -2,6 +2,8 @@
#include <moeo>
#include <moeoPopNeighborhoodExplorer.h>
#include <moeoAllSolAllNeighborsExpl.h>
#include <moeoOneSolAllNeighborsExpl.h>
#include <moeoOneSolOneNeighborExpl.h>
#include <moeoPopLS.h>
#include <moeoUnifiedDominanceBasedLS.h>
#include <moMove.h>
@ -34,7 +36,7 @@ int main(int argc, char* argv[])
eoPop<FlowShop>& pop = do_make_pop(parser, state, init);
eoTimeContinue < FlowShop > continuator(10000000);
moeoAllSolAllNeighborsExpl < ExchangeMove > explorer(moveInit,moveNext, eval);
moeoOneSolOneNeighborExpl < ExchangeMove > explorer(moveInit,moveNext, eval);
//
moeoUnifiedDominanceBasedLS < ExchangeMove > algo(continuator, explorer);