From 6ba038e8a99d4be93e83fc120d3bec5ceed5b8af Mon Sep 17 00:00:00 2001 From: jhumeau Date: Tue, 8 Jun 2010 14:51:22 +0000 Subject: [PATCH] =?UTF-8?q?README=20files=20mis=20=C3=A0=20jour?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1852 331e1502-861f-0410-8da2-ba01fb791d7f --- tags/paradiseo-1.3-beta/AUTHORS | 2 - tags/paradiseo-1.3-beta/paradiseo-mo/README | 79 +++++++++++++++++++ tags/paradiseo-1.3-beta/paradiseo-moeo/README | 2 + .../paradiseo-old-mo/README | 26 +++--- 4 files changed, 98 insertions(+), 11 deletions(-) create mode 100644 tags/paradiseo-1.3-beta/paradiseo-mo/README diff --git a/tags/paradiseo-1.3-beta/AUTHORS b/tags/paradiseo-1.3-beta/AUTHORS index 7ed5cf621..dca8925e0 100644 --- a/tags/paradiseo-1.3-beta/AUTHORS +++ b/tags/paradiseo-1.3-beta/AUTHORS @@ -9,5 +9,3 @@ El-Ghazali Talbi Alexandru-Adrian Tantar Sebastien Verel Jérémie Humeau - - diff --git a/tags/paradiseo-1.3-beta/paradiseo-mo/README b/tags/paradiseo-1.3-beta/paradiseo-mo/README new file mode 100644 index 000000000..27333447b --- /dev/null +++ b/tags/paradiseo-1.3-beta/paradiseo-mo/README @@ -0,0 +1,79 @@ + PARADISEO-MO README FILE +======================================================================= + +======================================================================= + +Welcome to PARADISEO-MO (Moving Objects), a part of the ParadisEO framework. + +======================================================================= + BUILDING PARADISEO-OLD-MO +======================================================================= +The basic installation procedure goes the following: + +To compile paradiseo-mo in the default directory, +go to paradiseo-mo/build/ and run: + > cmake ../ -Dconfig= + > make + // for an easy-use of the provided lessons + > make install + // optional (if the documentation is not already available) + > make doc + +To compile paradiseo-mo anywhere else, simply run: + > cmake $(MO) -Dconfig= + > make + // for an easy-use of the provided lessons + > make install + // optional (if the documentation is not already available) + > make doc + +where $(MO) is the top-level directory of PARADISEO-MO. + +To clean everything, simply run + > make clean + +====================================================================== + DIRECTORY STRUCTURE +====================================================================== +After unpacking the archive file, you should end up with the following +structure: + +.../ The MAIN PARADISEO-MO directory, created when unpacking. + | + +-- build Repertory where the executables will be produced. + | + | + +-- src SOURCE directory contains most PARADISEO-MO .h files. + | + | + +-- doc DOCUMENTATION directory (generated by Doxygen). + | | + | +- html HTML files - start at index.html. + | | + | +- latex latex files - use to generate Postcript doc. + | | + | +- man Unix man format documentation. + | + | + +-- tutorial TUTORIAL with lessons + | + +- Lesson1 How make a Hill Climbing. Example on the oneMax problem. + | + +- Lesson2 How make a Neighborhood. + | + +- Lesson3 How make a Simulated Annealing. Example on the QUEEN problem. + | + +- Lesson4 How make a Simple Tabu Search. Example on the QUEEN problem. + | + +- Lesson5 How make a Iterated Tabu Search on the QUEEN problem. + | + +- Lesson6 How make a Landscape analysis. + | + +- Lesson7 How make a Hybridization between a algorithm genetic and a local search. + + +=================================================================== + NOTES +=================================================================== + +Mailing list : paradiseo-help@lists.gforge.inria.fr diff --git a/tags/paradiseo-1.3-beta/paradiseo-moeo/README b/tags/paradiseo-1.3-beta/paradiseo-moeo/README index 8ca8258f3..b81762dac 100644 --- a/tags/paradiseo-1.3-beta/paradiseo-moeo/README +++ b/tags/paradiseo-1.3-beta/paradiseo-moeo/README @@ -74,6 +74,8 @@ structure: +-- Lesson2 A bi-objective flow-shop scheduling problem solved using main MOEAs. | +-- Lesson3 A bi-objective flow-shop scheduling problem solved using main MOEAs thanks to a parameter file. + | + +-- Lesson4 A bi-objective flow-shop scheduling problem solved using DMLS. ======================================================================= NOTES diff --git a/tags/paradiseo-1.3-beta/paradiseo-old-mo/README b/tags/paradiseo-1.3-beta/paradiseo-old-mo/README index 089902ff4..98ace94bd 100644 --- a/tags/paradiseo-1.3-beta/paradiseo-old-mo/README +++ b/tags/paradiseo-1.3-beta/paradiseo-old-mo/README @@ -1,12 +1,12 @@ - PARADISEO-MO README FILE + PARADISEO-OLD-MO README FILE ======================================================================= ======================================================================= -Welcome to PARADISEO-MO (Moving Objects), one part of the ParadisEO framework. +Welcome to PARADISEO-OLD-MO (Moving Objects), a part of the ParadisEO framework. ======================================================================= - BUILDING PARADISEO-MO + BUILDING PARADISEO-OLD-MO ======================================================================= The basic installation procedure goes the following: @@ -20,14 +20,14 @@ go to paradiseo-mo/build/ and run: > make doc To compile paradiseo-mo anywhere else, simply run: - > cmake $(MO) -Dconfig= + > cmake $(OLD-MO) -Dconfig= > make // for an easy-use of the provided lessons > make install // optional (if the documentation is not already available) > make doc -where $(MO) is the top-level directory of PARADISEO-MO. +where $(OLD-MO) is the top-level directory of PARADISEO-MO. To clean everything, simply run > make clean @@ -62,12 +62,20 @@ structure: | +- tsp traveling salesman problem (TSP) example sources. | | | +- benchs TSP instance files. - | - +- Lesson1 How make a Hill Climbing on the TSP example (source file and lesson_1.pdf). | - +- Lesson2 How make a Tabu Search on the TSP example (source file and lesson_2.pdf). + +- HybridLesson How make a Hybridization between a algorithm genetic and a local search. + | + +- Lesson1 How make a Hill Climbing on the TSP example. + | + +- Lesson2 How make a Tabu Search on the TSP example. | - +- Lesson3 How make a Simulated Annealing on the TSP example (source file and lesson_3.pdf). + +- Lesson3 How make a Simulated Annealing on the TSP example. + | + +- Lesson4 How make a Iterated Tabu Search on the TSP example. + | + +- Lesson5 How make a Variable Neighbor Search on the TSP example. + | + +- OldLesson Old lesson. =================================================================== NOTES