tutorial update

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@738 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jboisson 2007-10-23 13:14:32 +00:00
commit a261f9c857
7 changed files with 29 additions and 61 deletions

View file

@ -40,12 +40,16 @@
#include "moAlgo.h" #include "moAlgo.h"
#include "moAspirCrit.h" #include "moAspirCrit.h"
#include "moBestImprSelect.h" #include "moBestImprSelect.h"
#include "moComparator.h"
#include "moCoolingSchedule.h" #include "moCoolingSchedule.h"
#include "moExponentialCoolingSchedule.h" #include "moExponentialCoolingSchedule.h"
#include "moFirstImprSelect.h" #include "moFirstImprSelect.h"
#include "moFitComparator.h"
#include "moFitSolContinue.h"
#include "moGenSolContinue.h" #include "moGenSolContinue.h"
#include "moHC.h" #include "moHC.h"
#include "moHCMoveLoopExpl.h" #include "moHCMoveLoopExpl.h"
#include "moILS.h"
#include "moImprBestFitAspirCrit.h" #include "moImprBestFitAspirCrit.h"
#include "moItRandNextMove.h" #include "moItRandNextMove.h"
#include "moLinearCoolingSchedule.h" #include "moLinearCoolingSchedule.h"
@ -58,12 +62,14 @@
#include "moMoveSelect.h" #include "moMoveSelect.h"
#include "moNextMove.h" #include "moNextMove.h"
#include "moNoAspirCrit.h" #include "moNoAspirCrit.h"
#include "moNoFitImprSolContinue.h"
#include "moRandImprSelect.h" #include "moRandImprSelect.h"
#include "moRandMove.h" #include "moRandMove.h"
#include "moSA.h" #include "moSA.h"
#include "moSimpleMoveTabuList.h" #include "moSimpleMoveTabuList.h"
#include "moSimpleSolutionTabuList.h" #include "moSimpleSolutionTabuList.h"
#include "moSolContinue.h" #include "moSolContinue.h"
#include "moSteadyFitSolContinue.h"
#include "moTabuList.h" #include "moTabuList.h"
#include "moTS.h" #include "moTS.h"
#include "moTSMoveLoopExpl.h" #include "moTSMoveLoopExpl.h"

View file

@ -12,6 +12,6 @@ SET(TSP_BINARY_DIR ${ParadisEO-MO_BINARY_DIR}/tutorial/examples/tsp CACHE PATH "
### 2) Where must cmake go now ? ### 2) Where must cmake go now ?
###################################################################################### ######################################################################################
SUBDIRS(examples Lesson1 Lesson2 Lesson3) SUBDIRS(examples Lesson1 Lesson2 Lesson3 Lesson4)
###################################################################################### ######################################################################################

View file

@ -34,17 +34,8 @@
* *
*/ */
#include <mo.h> #include <mo>
#include <tsp>
#include <graph.h>
#include <route.h>
#include <route_eval.h>
#include <route_init.h>
#include <two_opt.h>
#include <two_opt_init.h>
#include <two_opt_next.h>
#include <two_opt_incr_eval.h>
int int
main (int __argc, char * __argv []) main (int __argc, char * __argv [])

View file

@ -34,18 +34,8 @@
* *
*/ */
#include <mo.h> #include <mo>
#include <tsp>
#include <graph.h>
#include <route.h>
#include <route_eval.h>
#include <route_init.h>
#include <two_opt.h>
#include <two_opt_init.h>
#include <two_opt_next.h>
#include <two_opt_incr_eval.h>
#include <two_opt_tabu_list.h>
int int
main (int __argc, char * __argv []) main (int __argc, char * __argv [])

View file

@ -34,16 +34,8 @@
* *
*/ */
#include <mo.h> #include <mo>
#include <tsp>
#include <graph.h>
#include <route.h>
#include <route_eval.h>
#include <route_init.h>
#include <two_opt.h>
#include <two_opt_rand.h>
#include <two_opt_incr_eval.h>
int int
main (int __argc, char * __argv []) main (int __argc, char * __argv [])

View file

@ -9,19 +9,8 @@
Contact: paradiseo-help@lists.gforge.inria.fr Contact: paradiseo-help@lists.gforge.inria.fr
*/ */
#include <mo.h> #include <mo>
#include <tsp>
#include <graph.h>
#include <route.h>
#include <route_eval.h>
#include <route_init.h>
#include <two_opt.h>
#include <two_opt_init.h>
#include <two_opt_next.h>
#include <two_opt_incr_eval.h>
#include <city_swap.h>
int int
main (int __argc, char * __argv []) main (int __argc, char * __argv [])

View file

@ -33,20 +33,20 @@ SET(TSP_LIB_OUTPUT_PATH ${TSP_BINARY_DIR}/lib)
SET(LIBRARY_OUTPUT_PATH ${TSP_LIB_OUTPUT_PATH}) SET(LIBRARY_OUTPUT_PATH ${TSP_LIB_OUTPUT_PATH})
SET (TSP_SOURCES graph.cpp SET (TSP_SOURCES graph.cpp
route_init.cpp route_init.cpp
route_eval.cpp route_eval.cpp
part_route_eval.cpp part_route_eval.cpp
edge_xover.cpp edge_xover.cpp
order_xover.cpp order_xover.cpp
route_valid.cpp route_valid.cpp
partial_mapped_xover.cpp partial_mapped_xover.cpp
city_swap.cpp city_swap.cpp
two_opt.cpp two_opt.cpp
two_opt_init.cpp two_opt_init.cpp
two_opt_next.cpp two_opt_next.cpp
two_opt_incr_eval.cpp two_opt_incr_eval.cpp
two_opt_tabu_list.cpp two_opt_tabu_list.cpp
two_opt_rand.cpp) two_opt_rand.cpp)
ADD_LIBRARY(tsp STATIC ${TSP_SOURCES}) ADD_LIBRARY(tsp STATIC ${TSP_SOURCES})