paradiseo/eo
2002-03-06 06:54:00 +00:00
..
app the gpsymreg code has been slightly altered to allow compilation using the 2002-02-04 14:28:00 +00:00
contrib Modified the path of include eoVirus because MSVC did not find it. 2001-12-03 16:28:30 +00:00
doc Changed the directory structure for gp 2001-07-02 13:31:04 +00:00
src Corrected a sligth error in eoParamParam reading that resulted in making the comma 2002-03-05 05:46:55 +00:00
test Suppressed the lt_arity fn that was added for MSVC - and now seems unnecessary 2002-02-02 07:36:58 +00:00
tutorial More on parameter input (getORcreateParam explained) 2002-03-06 06:54:00 +00:00
win Added the move from Release and DEbug into the lib dir 2002-01-17 17:57:55 +00:00
.cvsignore *** empty log message *** 1999-09-10 12:11:11 +00:00
acconfig.h learning about autoconf: eoBin and bvector.h 1999-02-08 14:15:11 +00:00
AUTHORS Adding Jeroen :-) 2001-11-12 14:59:32 +00:00
autogen.sh Ok, made an eoParetoFitness class, which meant that I could roll back a few changes in EO.h (phew). 2001-03-16 12:08:26 +00:00
ChangeLog 1999-01-29 12:23:55 +00:00
config.cache Fixed some compatibility issues with GCC 3.0.1 and the Intel C++ Compiler 2002-02-04 13:16:50 +00:00
config.guess 1999-01-29 12:23:55 +00:00
config.sub 1999-01-29 12:23:55 +00:00
configure.in app/gpsymreg/Makefile added to configure.in 2001-06-29 09:22:26 +00:00
COPYING 1999-01-29 12:23:55 +00:00
INSTALL Updated INSTALL and README to EO-specific instructions! 2000-12-19 22:14:29 +00:00
install-sh 1999-01-29 12:23:55 +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 Removed dir win from list of subdirs (generated an error in make check) 2001-12-03 06:56:43 +00:00
missing 1999-01-29 12:23:55 +00:00
mkinstalldirs eoBreeder almost finished 1999-02-12 17:43:28 +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.