paradiseo/trunk/paradiseo-eo
legrand c3aec878e5 Paradiseo-eo sources added
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@40 331e1502-861f-0410-8da2-ba01fb791d7f
2006-12-12 14:49:08 +00:00
..
app Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
build-freebsd-x86/CVS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
build-linux-x86/CVS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
contrib Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
CVS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
doc Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
gp/CVS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
src Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
test Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
Tutorial/CVS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
tutorial Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
win Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
.cvsignore Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
acinclude.m4 Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
AUTHORS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
autogen.sh Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
ChangeLog Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
configure.in Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
COPYING Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
ForRelease Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
INSTALL Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
LICENSE Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
Makefile.am Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
NEWS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
README Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
README.html Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
THANKS Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00
TODO.html Paradiseo-eo sources added 2006-12-12 14:49:08 +00:00

                      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@egroups.com, eodev-main@lists.sourceforge.net


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

Go to your build-directory and run 
    $(SRCDIR)/configure
    make
    make check
    make install
where $(SRCDIR) is the top-level source directory of EO, i.e. where
the sources where unpacked.

See $(SRCDIR)/configure for possible options. You can specify to not
build example applications, the tutorial, or to build the ParadisEO
tutorial. You may also change the installation directory that way.

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


In case of problems, you can read the INSTALL file - but remember this
is a standard installation file from GNU and that it contains nothing
specific about EO.


===================================================================
                       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+



===================================================================
              NOTES
===================================================================
If you extracted a fresh snapshot from the cvs-repository, remember
to run
    ./autogen.sh
in the source-directory before building the libraries.