paradiseo/trunk/paradiseo-moeo
2008-12-17 17:35:43 +00:00
..
doc moeo.doxyfile.cmake has been updated to be complient with the new version of doxygen 2008-12-16 09:41:06 +00:00
src Several modifications have been made to obtain g++ (GCC) 4.3.2 20081105 compatibility, -Wno-unused-parameter and -Wno-ignored-qualifiers have been added to avoid the corresponding warnings (only moeo is concerned by the second one). In order to avoid all the warnings, several modifications into EO are needed. 2008-12-17 17:35:43 +00:00
test test for Aggregative fitness assignment added 2008-12-17 14:17:53 +00:00
tutorial from moeoFastNonDominantedSortingFitnessAssignment to moeoDominanceDepthFitnessAssignment 2008-11-27 14:33:11 +00:00
AUTHORS git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1271 331e1502-861f-0410-8da2-ba01fb791d7f 2008-12-02 13:04:53 +00:00
CMakeLists.txt simplified CMake config: a common "install.cmake" for the three modules. + ctest calls in the installation script 2008-02-18 14:01:49 +00:00
CTestConfig.cmake new reporting config 2008-11-13 16:30:32 +00:00
moeo-conf.cmake git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1273 331e1502-861f-0410-8da2-ba01fb791d7f 2008-12-02 13:14:42 +00:00
README README up-to-date 2008-03-05 13:37:13 +00:00

                PARADISEO-MOEO README FILE
=======================================================================
         check latest news at http://paradiseo.gforge.inria.fr/
=======================================================================

Welcome to ParadisEO-MOEO, the Multi-Objective Evolving Objects library.
The latest news about ParadisEO-MOEO 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-MOEO
=======================================================================
The basic installation procedure goes the following.

To compile paradiseo-moeo in the default directory,
go to paradiseo-moeo/build/ and run:
    > cmake ../ -Dconfig=<path to the install.cmake file>
    > make
    // for an easy-use of the provided lessons
    > make install
    // optional (if the documentation is not already available)
    > make doc

To compile paradiseo-moeo anywhere else, simply run:
    > cmake $(MOEO) -Dconfig=<path to the install.cmake file>
    > make
    // for an easy-use of the provided lessons
    > make install
    // optional (if the documentation is not already available)
    > make doc

where $(MOEO) is the top-level directory of PARADISEO-MOEO.

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-MOEO directory, created when unpacking.
   |
   |
   +-- build               BUILD directory that contains libraries and executable files.
   |
   |
   +-- src                 SOURCE directory that contains PARADISEO-MOEO source 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 directory that contains with lessons.
       |
       +-- examples        APPLICATIONS - one directory per separate application.
       |   |
       |   +-- flowshop    Flow-shop scheduling problem example source files.
       |       |
       |       +-- benchs  Benchmark suites for the flow-shop.
       |
       +-- Lesson1         NSGA-II to solve the SCH1 problem.
       |
       +-- 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.

=======================================================================
                                 NOTES
=======================================================================

Mailing list : paradiseo-help@lists.gforge.inria.fr