No description
This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • C++ 71.3%
  • HTML 18.2%
  • CMake 5.6%
  • Python 1.1%
  • JavaScript 1%
  • Other 2.8%
Find a file
2010-09-10 17:04:02 +02:00
application + test_cov_parameters.py: script to execute the estimator testor (t-EstimatorNormalMulti) in using all combinaison parameters values for 2-D cov-matrix 2010-09-10 15:48:16 +02:00
doc + some useful files added 2010-08-03 10:26:15 +02:00
screenshots + new screenshot with parameters -P=10000 -d=10 2010-09-09 11:53:14 +02:00
src + test/t-doEstimatorNormalMulti 2010-09-10 01:09:16 +02:00
test * bugfixed on test_cov_parameters 2010-09-10 17:04:02 +02:00
.gitignore ... 2010-07-05 20:31:30 +02:00
build_gcc_linux_debug + some useful files added 2010-08-03 10:26:15 +02:00
build_gcc_linux_release + some useful files added 2010-08-03 10:26:15 +02:00
CMakeLists.txt * cholesky 2010-08-03 18:54:41 +02:00
COPYING * LICENSE 2010-08-24 11:23:55 +02:00
distclean + some useful files added 2010-08-03 10:26:15 +02:00
do.pc * pkg-config updated + cmake file 2010-08-24 11:19:31 +02:00
package_deb + some useful files added 2010-08-03 10:26:15 +02:00
package_rpm + some useful files added 2010-08-03 10:26:15 +02:00
Packaging.cmake * fixed some packaging issues 2010-07-06 10:15:47 +02:00
README * README 2010-09-09 08:03:01 +02:00

This package contains the source code for DO.

# Step 1 - Configuration
------------------------
Rename the "install.cmake-dist" file as "install.cmake" and edit it, inserting the FULL PATH
to your ParadisEO distribution.
On Windows write your path with double antislash (ex: C:\\Users\\...)


# Step 2 - Build process
------------------------
ParadisEO is assumed to be compiled. To download ParadisEO, please visit http://paradiseo.gforge.inria.fr/.
Go to the DO/build/ directory and lunch cmake:
(Unix)       > cmake ..
(Windows)    > cmake .. -G"Visual Studio 9 2008"

Note for windows users: if you don't use VisualStudio 9, enter the name of your generator instead of "VisualStudio 9 2008".


# Step 3 - Compilation
----------------------
In the do/build/ directory:
(Unix)       > make
(Windows)    Open the VisualStudio solution and compile it, compile also the target install.
You can refer to this tutorial if you don't know how to compile a solution: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial


# Step 4 - Execution
---------------------
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 do/build/ directory:
(Unix)       > ctest
Windows users, please refer to this tutorial: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial

In the directory "application", there are several directory such as eda_sa which instantiate EDA-SA solver.

(Unix) After compilation you can run the binary "build/eda_sa" and see results. Parameters can be modified from command line.

(Windows) Add argument "eda_sa.param" and execute the corresponding algorithms.
Windows users, please refer to this tutorial: http://paradiseo.gforge.inria.fr/index.php?n=Paradiseo.VisualCTutorial


# Documentation
---------------
The API-documentation is available in doc/html/index.html


# Things to keep in mind when using DO
----------------------------------------
* By default, the EO random generator's seed is initialized by the number of seconds since the epoch (with time(0)). It is available in the status file dumped at each execution. Please, keep in mind that if you start two run at the same second without modifying the seed, you will get exactly the same results.

* Execution times are measured with the boost:timer, that measure wallclock time. Additionaly, it could not measure times larger than approximatively 596.5 hours (or even less). See http://www.boost.org/doc/libs/1_33_1/libs/timer/timer.htm

* The q-quantile computation use averaging at discontinuities (in R, it correspond to the R-2 method, in SAS, SAS-5). For more explanations, see http://en.wikipedia.org/wiki/Quantile#Estimating_the_quantiles_of_a_population and http://stat.ethz.ch/R-manual/R-devel/library/stats/html/quantile.html

* You can send a SIGUSR1 to a process to get some information (written down in the log file) on the current state of the search.