First example using ParadisEO - A software framework for metaheuristics
ParadisEO is assumed to be compiled. In addition, we supposed you are using Unix makefiles or MinGW makefiles.
To download ParadisEO or having further information about the installation and configuration, please visit http://paradiseo.gforge.inria.fr/.
Create a build directory :
mkdir build
Go to the build/ directory and lunch cmake:
(Unix)
cmake ..
(Windows)
cmake .. -G "MinGW Makefiles"
In the Example/build/ directory:
make
A toy example is given to test the components. You can run these tests as following. To define problem-related components for your own problem, please refer to the tutorials available on the website : http://paradiseo.gforge.inria.fr/. In the Example/build/ directory:
ctest
In the directory "application", there are three ".cpp" which instantiate NSGAII on ZDT problems.
(Unix) After compilation you can run the script "Example/run.sh" and see results in "NSGAII.out". Parameters can be modified in the script.
(Windows) Add argument "NSGAII.param" and execute the corresponding algorithms.
The API-documentation is available in doc/html/index.html
For regenerate the API-documentation:
make doc