paradiseo/eo
2010-08-30 22:50:59 +02:00
..
app changed YAML saving technique to YAML::Serializable 2010-05-07 03:17:44 +00:00
contrib Updated makefiles, updated the moo stuff and cleaned up some stuff that refused to compile 2007-11-12 16:23:57 +00:00
doc Cmake configuration modified 2009-01-14 14:50:46 +00:00
src add eoDualFitness.h to the list of headers 2010-08-30 22:50:59 +02:00
test Merge branch 'master' of ssh://localhost:9001/gitroot/eodev/eodev 2010-08-18 12:16:13 +02:00
tutorial This commit was manufactured by cvs2svn to create branch 2010-05-04 13:00:51 +00:00
win All debug (dll and non-dll libs) and release libs are placed in either debug or release 2007-05-03 14:00:50 +00:00
.cproject make_continue... just a little formatting 2008-03-31 12:53:51 +00:00
.cvsignore updates, 2004-09-21 17:01:14 +00:00
.project make_continue... just a little formatting 2008-03-31 12:53:51 +00:00
acinclude.m4 * configure.in (AC_DEBUG): add test 2006-11-16 12:52:46 +00:00
AUTHORS updated a few things about paradiseo (links, docs) 2008-04-18 08:19:22 +00:00
autogen.sh Clean up configure/build-process. 2005-10-02 21:42:08 +00:00
ChangeLog Adjusting configuration for Eclipse 2008-03-28 15:57:55 +00:00
CMakeLists.txt Add "Visual Studio 10" in config file for CMake 2010-06-10 10:03:26 +00:00
config.guess Adjusting configuration for Eclipse 2008-03-28 15:57:55 +00:00
config.h.cmake added CMake configuration files 2007-08-10 14:29:12 +00:00
configure.in configure changes to prepare for use of libyaml-cpp 2010-05-04 17:18:12 +00:00
ConfigureChecks.cmake added CMake configuration files 2007-08-10 14:29:12 +00:00
COPYING * TODO.html, README.html: Remove these old files. 2006-12-18 11:17:55 +00:00
CTestConfig.cmake Switch from Dart to Dash. 2008-11-17 10:27:55 +00:00
ForRelease * TODO.html, README.html: Remove these old files. 2006-12-18 11:17:55 +00:00
INSTALL Reflecting build process changes in doc and source tree (now using autogen.sh;./configure) 2010-05-04 13:00:50 +00:00
LICENSE Added LICENSE 1999-09-20 11:37:00 +00:00
Makefile.am deleted "win" directory in the autotools config 2008-04-18 12:00:15 +00:00
NEWS start preparation for 1.1 release 2008-03-31 19:12:12 +00:00
README Adjusting configuration for Eclipse 2008-03-28 15:57:55 +00:00
stamp-h1 Adjusting configuration for Eclipse 2008-03-28 15:57:55 +00:00
THANKS updates for distributing/installing ParadisEO. 2004-09-22 17:30:11 +00:00
ToDo * index.h: Add old ToDos 2006-12-18 12:18:32 +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-help@lists.sourceforge.net, eodev@egroups.com

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 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.

Run "$(SRCDIR)/configure --help" 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.