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.
eodev/eo
2006-12-03 11:24:41 +00:00
..
app Fix using directives for gcc-4.1 2006-03-27 18:55:20 +00:00
contrib (VirusShiftMutation::operator()): Fix test for i>1. 2006-12-02 11:36:29 +00:00
doc update, add link to Niko Hansen's comparison 2006-12-03 11:24:41 +00:00
src cleanup, docs 2006-12-02 11:46:34 +00:00
test Change float to double. 2006-12-02 11:32:00 +00:00
tutorial * mainpage.html: update, add link to Niko Hansen's comparison 2006-12-03 10:41:54 +00:00
Tutorial * mainpage.html: update, add link to Niko Hansen's comparison 2006-12-03 10:41:54 +00:00
win Added Solution and Project files for MSVC 2003 2006-11-20 13:34:28 +00:00
.cvsignore updates, 2004-09-21 17:01:14 +00:00
acinclude.m4 * configure.in (AC_DEBUG): add test 2006-11-16 12:52:46 +00:00
AUTHORS Adding Jeroen :-) 2001-11-12 14:59:32 +00:00
autogen.sh Clean up configure/build-process. 2005-10-02 21:42:08 +00:00
ChangeLog * mainpage.html: update, add link to Niko Hansen's comparison 2006-12-03 10:41:54 +00:00
configure.in * mainpage.html: update, add link to Niko Hansen's comparison 2006-12-03 10:41:54 +00:00
COPYING Replaced GPL with LGPL license here. EO has always been LGPL 2005-10-06 10:06:25 +00:00
ForRelease add zip to dist, 2005-10-01 16:05:01 +00:00
INSTALL Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
LICENSE Added LICENSE 1999-09-20 11:37:00 +00:00
Makefile.am Clean up configure/build-process. 2005-10-02 21:42:08 +00:00
NEWS update version number of next release 2006-12-03 10:53:29 +00:00
README * mainpage.html: update, add link to Niko Hansen's comparison 2006-12-03 10:41:54 +00:00
README.html Added missing files, and LICENSE 2000-08-03 15:44:01 +00:00
THANKS updates for distributing/installing ParadisEO. 2004-09-22 17:30:11 +00:00
TODO.html Added missing files, and LICENSE 2000-08-03 15:44:01 +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  


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