paradiseo/trunk/eo
quemy b312749bab Install in /usr/local instead of /usr
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2724 331e1502-861f-0410-8da2-ba01fb791d7f
2012-08-27 09:22:45 +00:00
..
app Merge from rc2.0 2012-07-19 09:53:26 +00:00
cmake/modules Merge from rc2.0 2012-07-19 09:53:26 +00:00
contrib Merge from rc2.0 2012-07-19 09:53:26 +00:00
doc Install in /usr/local instead of /usr 2012-08-27 09:22:45 +00:00
src Install in /usr/local instead of /usr 2012-08-27 09:22:45 +00:00
test Install in /usr/local instead of /usr 2012-08-27 09:22:45 +00:00
tutorial Install in /usr/local instead of /usr 2012-08-27 09:22:45 +00:00
AUTHORS Merge from rc2.0 2012-07-19 09:53:26 +00:00
build_gcc_linux_debug Merge from rc2.0 2012-07-19 09:53:26 +00:00
build_gcc_linux_pyeo Merge from rc2.0 2012-07-19 09:53:26 +00:00
build_gcc_linux_release Merge from rc2.0 2012-07-19 09:53:26 +00:00
build_gcc_linux_stl_parallel Merge from rc2.0 2012-07-19 09:53:26 +00:00
build_gcc_linux_tutorial Merge from rc2.0 2012-07-19 09:53:26 +00:00
build_gcc_linux_unittest Merge from rc2.0 2012-07-19 09:53:26 +00:00
build_vs2008_release.bat Merge from rc2.0 2012-07-19 09:53:26 +00:00
BuildConfig.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
CHANGELOG Merge from rc2.0 2012-07-19 09:53:26 +00:00
CMakeLists.txt Install in /usr/local instead of /usr 2012-08-27 09:22:45 +00:00
config.h.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
ConfigureChecks.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
COPYING Merge from rc2.0 2012-07-19 09:53:26 +00:00
CTestConfig.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
distclean Merge from rc2.0 2012-07-19 09:53:26 +00:00
eo-conf.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
ForRelease Merge from rc2.0 2012-07-19 09:53:26 +00:00
INSTALL Merge from rc2.0 2012-07-19 09:53:26 +00:00
install_symlink.py.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
LICENSE Merge from rc2.0 2012-07-19 09:53:26 +00:00
NEWS Merge from rc2.0 2012-07-19 09:53:26 +00:00
package_deb Merge from rc2.0 2012-07-19 09:53:26 +00:00
package_nsis.bat Merge from rc2.0 2012-07-19 09:53:26 +00:00
package_rpm Merge from rc2.0 2012-07-19 09:53:26 +00:00
Packaging.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
pc.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
PKGBUILD.cmake Merge from rc2.0 2012-07-19 09:53:26 +00:00
README Merge from rc2.0 2012-07-19 09:53:26 +00:00
THANKS Merge from rc2.0 2012-07-19 09:53:26 +00:00
ToDo Merge from rc2.0 2012-07-19 09:53:26 +00:00

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

		      EO README FILE

=======================================================================
	 check latest news at http://eodev.sourceforge.net/
=======================================================================

Welcome to EO, the Evolving Objects library.

The latest news about EO can be found on the sourceforge repository at
    http://eodev.sourceforge.net/

In case of any problem, please e-mail us at
    eodev-main@lists.sourceforge.net

To get started, take a look at the tutorial, starting with
    ./tutorial/html/eoTutorial.html

The easiest way to start programming a new genome with all EO
evolution engines handy is to create a new standalone EO project from
the tutorial/Templates/ directory. Read Lesson 5 of the tutorial for
an introduction ;)


==================================================================
		      BUILDING EO
==================================================================
The basic installation procedure goes the following:

Go to the "eo/" and run one of the "build_*" script. 

Using the "build_gcc_linux_release" script is generally what you want. The
binaries are then located in the "release/" directory.

Now you should probably go to the tutorial and start learning about EO
features and programming.

In case of problems or if you want advanced options, you can read the INSTALL file.

===================================================================
		       DIRECTORY STRUCTURE
===================================================================
After unpacking the archive file, you should end up with the following
structure:

.../                            the MAIN EO dir, created when unpacking
   |
   +-- src                    SOURCE dir. Contains most EO .h files
   |   |
   |   +- utils          general utilities (e.g. RNG-related source files)
   |   |
   |   +- ga             bistring-genotypes source files
   |   |
   |   +- es             real-valued-genotypes source files
   |   |
   |   +- gp             Genetic Programming source files
   |   |
   |   +- obsolete       files from old versions - for upward compatibility
   |
   |
   |
   +-- tutorial               TUTORIAL dir (indeed :-)
   |   |
   |   +- html           all html files - start by browsing index.html
   |   |
   |   +- LessonX        for X=1, 2, 3, ... : example of increasing complexity
   |
   |
   |
   +-- doc                    DOCUMENTATION dir (generated by Doxygen)
   |   |
   |   +- html             HTML files - start at index.html (see also tutorial)
   |   |
   |   +- latex            latex files - use to generate Poatscript doc.
   |   |
   |   +- man              Unix man format documentation
   |
   |
   +-- test                   TEST files - for debugging purposes only
   |
   |
   +-- app                    APPLICATIONS - one dir per separate application
   |   |
   |   +- gprop            GA/backpropagation for neural nets
   |   |
   |   +- mastermind       the wellknown MasterMind game
   |
   |
   +-- win                    WINDOWS dir: project files for MS/VC5+