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
kuepper c8494642d5 Updated build-prcess to be completely under automake control.
For the tutorial the old Makefiles are saved as Makefile.simple in all
the respective directories.

Use generated config.h instead of command-line passing of preprocessor
flags.

Updated support files from current automake.
2004-09-17 16:53:31 +00:00
..
app Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
contrib Removed "using namespace std" statements from header files in EO -- "std::" identifier were added where necessary. 2003-02-27 19:28:07 +00:00
doc Updating doxygen configuration 2004-08-10 07:39:10 +00:00
src Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
test Committing at last the long awaited test for Sharing 2004-08-28 16:25:12 +00:00
tutorial Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
win Included new fitness class eoScalarFitnessAssembled, that stores different fitness terms in a std::vector, but still acts as a scalar fitness. A new checkpoint uses these values for statistics. 2003-04-03 16:51:47 +00:00
.cvsignore Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
acconfig.h learning about autoconf: eoBin and bvector.h 1999-02-08 14:15:11 +00:00
acinclude.m4 Removed HAVE_SSTREAM for redhat 2.96 2003-04-20 12:57:59 +00:00
AUTHORS Adding Jeroen :-) 2001-11-12 14:59:32 +00:00
autogen.sh Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
ChangeLog 1999-01-29 12:23:55 +00:00
config.cache Added define NO_GNUPLOT to disable gnuplot extensions 2004-01-21 19:57:19 +00:00
config.guess 1999-01-29 12:23:55 +00:00
config.sub 1999-01-29 12:23:55 +00:00
configure.in Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
COPYING Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
depcomp Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
INSTALL Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
install-sh 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
ltconfig New fresh ltconfig, works on my RedHat distr and also on geneura 2000-08-03 17:11:54 +00:00
ltmain.sh Added a different libtool configure so it runs on more machines 2000-08-03 17:11:02 +00:00
Makefile.am Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
missing Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
mkinstalldirs Updated build-prcess to be completely under automake control. 2004-09-17 16:53:31 +00:00
NEWS 1999-01-29 12:23:55 +00:00
README I'm not sure about whether the sourceforge list is equivalent to the onelist list, 2001-01-05 08:50:01 +00:00
README.html Added missing files, and LICENSE 2000-08-03 15:44:01 +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@egroups.com, eodev-main@lists.sourceforge.net

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

- go to the EO directory - that was created when you unzipped the
  archive file.

- run 
            ./autogen.sh

- run 
            make

and that's it. You should probably go to the tutorial and start
learning about EO features and programming.

WARNING: Compiling all test programs can take some time.
         But you don't have to: 

- you can simply type

            make lib

and then go in your application (or in the tutorial) dir and run make

            cd tutorial
            make

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 do:

$> ./autogen.sh --enable-maintainer-mode

instead of

$> ./autogen.sh

before making the libraries.