diff --git a/trunk/paradiseo-peo/README b/trunk/paradiseo-peo/README index e69de29bb..e0e18bbfe 100755 --- a/trunk/paradiseo-peo/README +++ b/trunk/paradiseo-peo/README @@ -0,0 +1,66 @@ + PARADISEO-PEO README FILE +======================================================================= + check latest news at http://paradiseo.gforge.inria.fr/ +======================================================================= + +Welcome to ParadisEO-PEO, the Parallel Evolving Objects library. +The latest news about ParadisEO-PEO can be found on the gforge repository at +http://paradiseo.gforge.inria.fr/ +In case of any problem, please e-mail us at +paradiseo-help@lists.gforge.inria.fr + + +================================================================== + BUILDING PARADISEO-PEO +================================================================== +The basic installation procedure goes the following: + +Go to your build-directory and run + > cmake . -DEOdir=$(EO_SRC) -DMOdir=$(MO_SRC) + > make + > make doc + +where $(EO_SRC) is the top-level source directory of PARADISEO-EO +and $(MO_SRC) is the top-level source 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-PEO directory, created when unpacking. + | + +-- src SOURCE directory Contains most PARADISEO-PEO .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 APPLICATIONS - one directory per separate application. + | + +-- examples Examples repository including source code shared by all or most of the included lessons. + | | + | +- tsp A Traveling Salesman Problem (TSP) example with benchmarks, the main operators, definitions, etc. + | + +-- Lesson1 A simple ParadisEO-PEO evolutionary algorithm example using the peoEA class. + | + +-- Lesson2 Example of an EA featuring a parallel evaluation of the population/parallel fitness function evaluation. + | + +-- Lesson3 Example of an asynchronous insular model including two evolutionary algorithms. + | + +-- Walkthrough Walkthrough ParadisEO-PEO features - EA+LS hybridization, parallelization, insular model. + +=================================================================== + NOTES +=================================================================== + +Mailing list : paradiseo-help@lists.gforge.inria.fr diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonA.param b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonA.param similarity index 80% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonA.param rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonA.param index ab6d3b3cb..0577bc0d4 100644 --- a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonA.param +++ b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonA.param @@ -4,7 +4,7 @@ ## deployment schema ---schema=../src/schemaA.xml +--schema=../config/schemaA.xml ## parameters diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonB.param b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonB.param similarity index 80% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonB.param rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonB.param index 8b9394f01..bde5270bc 100644 --- a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonB.param +++ b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonB.param @@ -4,7 +4,7 @@ ## deployment schema ---schema=../src/schemaB.xml +--schema=../config/schemaB.xml ## parameters diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonC.param b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonC.param similarity index 80% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonC.param rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonC.param index 0683ddd9c..2074c5b31 100644 --- a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonC.param +++ b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonC.param @@ -4,7 +4,7 @@ ## deployment schema ---schema=../src/schemaC.xml +--schema=../config/schemaC.xml ## parameters diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonD.param b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonD.param similarity index 80% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonD.param rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonD.param index f01278be3..604589170 100644 --- a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonD.param +++ b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonD.param @@ -4,7 +4,7 @@ ## deployment schema ---schema=../src/schemaD.xml +--schema=../config/schemaD.xml ## parameters diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonE.param b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonE.param similarity index 80% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonE.param rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonE.param index b21c786ba..7b1643f6f 100644 --- a/trunk/paradiseo-peo/tutorial/Walkthrough/src/lessonE.param +++ b/trunk/paradiseo-peo/tutorial/Walkthrough/config/lessonE.param @@ -4,7 +4,7 @@ ## deployment schema ---schema=../src/schemaE.xml +--schema=../config/schemaE.xml ## parameters diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaA.xml b/trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaA.xml similarity index 100% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaA.xml rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaA.xml diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaB.xml b/trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaB.xml similarity index 100% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaB.xml rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaB.xml diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaC.xml b/trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaC.xml similarity index 100% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaC.xml rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaC.xml diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaD.xml b/trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaD.xml similarity index 100% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaD.xml rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaD.xml diff --git a/trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaE.xml b/trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaE.xml similarity index 100% rename from trunk/paradiseo-peo/tutorial/Walkthrough/src/schemaE.xml rename to trunk/paradiseo-peo/tutorial/Walkthrough/config/schemaE.xml