* mainpage.html: update, add link to Niko Hansen's comparison
* README: Add more specific note about tutorial. * configure.in: Bump version to 1.0-beta1 * tutorial/Makefile.am: Add all necessary files, including html and Templates to distribution.
This commit is contained in:
parent
20d37259e9
commit
ab9b38654d
14 changed files with 117 additions and 12 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
2006-12-03 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
||||||
|
|
||||||
|
* README: Add more specific note about tutorial.
|
||||||
|
|
||||||
|
* configure.in: Bump version to 1.0-beta1
|
||||||
|
|
||||||
2006-12-02 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
2006-12-02 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
||||||
|
|
||||||
* configure.in: Remove unnecessary tests.
|
* configure.in: Remove unnecessary tests.
|
||||||
|
|
|
||||||
15
eo/README
15
eo/README
|
|
@ -1,4 +1,6 @@
|
||||||
|
|
||||||
EO README FILE
|
EO README FILE
|
||||||
|
|
||||||
=======================================================================
|
=======================================================================
|
||||||
check latest news at http://eodev.sourceforge.net/
|
check latest news at http://eodev.sourceforge.net/
|
||||||
=======================================================================
|
=======================================================================
|
||||||
|
|
@ -6,12 +8,14 @@
|
||||||
Welcome to EO, the Evolving Objects library.
|
Welcome to EO, the Evolving Objects library.
|
||||||
|
|
||||||
The latest news about EO can be found on the sourceforge repository at
|
The latest news about EO can be found on the sourceforge repository at
|
||||||
|
|
||||||
http://eodev.sourceforge.net/
|
http://eodev.sourceforge.net/
|
||||||
|
|
||||||
In case of any problem, please e-mail us at
|
In case of any problem, please e-mail us at
|
||||||
|
eodev-help@lists.sourceforge.net, eodev@egroups.com
|
||||||
|
|
||||||
eodev@egroups.com, eodev-main@lists.sourceforge.net
|
|
||||||
|
To get started, take a look at the tutorial, starting with
|
||||||
|
./tutorial/html/eoTutorial.html
|
||||||
|
|
||||||
|
|
||||||
==================================================================
|
==================================================================
|
||||||
|
|
@ -27,9 +31,10 @@ Go to your build-directory and run
|
||||||
where $(SRCDIR) is the top-level source directory of EO, i.e. where
|
where $(SRCDIR) is the top-level source directory of EO, i.e. where
|
||||||
the sources where unpacked.
|
the sources where unpacked.
|
||||||
|
|
||||||
See $(SRCDIR)/configure for possible options. You can specify to not
|
Run "$(SRCDIR)/configure --help" for possible options. You can specify
|
||||||
build example applications, the tutorial, or to build the ParadisEO
|
to not build example applications, the tutorial, or to build the
|
||||||
tutorial. You may also change the installation directory that way.
|
ParadisEO tutorial. You may also change the installation directory
|
||||||
|
that way.
|
||||||
|
|
||||||
Now you should probably go to the tutorial and start learning about EO
|
Now you should probably go to the tutorial and start learning about EO
|
||||||
features and programming.
|
features and programming.
|
||||||
|
|
|
||||||
1
eo/Tutorial/.cvsignore
Normal file
1
eo/Tutorial/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile.in
|
||||||
11
eo/Tutorial/ChangeLog
Normal file
11
eo/Tutorial/ChangeLog
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
2006-12-03 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
||||||
|
|
||||||
|
* tutorial/Makefile.am: Add all necessary files, including html and
|
||||||
|
Templates to distribution.
|
||||||
|
|
||||||
|
|
||||||
|
* Local Variables:
|
||||||
|
* coding: iso-8859-1
|
||||||
|
* mode: flyspell
|
||||||
|
* fill-column: 80
|
||||||
|
* End:
|
||||||
1
eo/Tutorial/Makefile.am
Normal file
1
eo/Tutorial/Makefile.am
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
SUBDIRS = html Lesson1 Lesson2 Lesson3 Lesson4 Lesson5 pdf Templates
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl
|
dnl
|
||||||
dnl Change the version number here
|
dnl Change the version number here
|
||||||
AC_INIT([Evolving Objects], [0.9.4-cvs], [eodev-help@sourceforge.net], [eo])
|
AC_INIT([Evolving Objects], [1.0-beta1], [eodev-help@sourceforge.net], [eo])
|
||||||
AC_PREREQ(2.53)
|
AC_PREREQ(2.53)
|
||||||
|
|
||||||
dnl make sure we are compiling from the correct sources
|
dnl make sure we are compiling from the correct sources
|
||||||
|
|
@ -61,9 +61,12 @@ AC_OUTPUT(Makefile \
|
||||||
src/utils/Makefile \
|
src/utils/Makefile \
|
||||||
test/Makefile \
|
test/Makefile \
|
||||||
tutorial/Makefile \
|
tutorial/Makefile \
|
||||||
|
tutorial/html/Makefile \
|
||||||
tutorial/Lesson1/Makefile \
|
tutorial/Lesson1/Makefile \
|
||||||
tutorial/Lesson2/Makefile \
|
tutorial/Lesson2/Makefile \
|
||||||
tutorial/Lesson3/Makefile \
|
tutorial/Lesson3/Makefile \
|
||||||
tutorial/Lesson4/Makefile \
|
tutorial/Lesson4/Makefile \
|
||||||
tutorial/Lesson5/Makefile \
|
tutorial/Lesson5/Makefile \
|
||||||
|
tutorial/TEMPLATES/Makefile \
|
||||||
|
tutorial/pdf/Makefile \
|
||||||
win/Makefile)
|
win/Makefile)
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2006-12-03 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
||||||
|
|
||||||
|
* mainpage.html: update, add link to Niko Hansen's comparison
|
||||||
|
|
||||||
2006-12-01 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
2006-12-01 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
||||||
|
|
||||||
* Makefile.am: Update for release-distribution.
|
* Makefile.am: Update for release-distribution.
|
||||||
|
|
|
||||||
|
|
@ -80,13 +80,13 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li>Linux x86 with GCC 3.x and 4.x</li>
|
<li>Linux x86 with GCC 3.x and 4.x</li>
|
||||||
<li>Linux x86_64 with GCC 3.x and GCC 4.x</li>
|
<li>Linux x86_64 with GCC 3.x and GCC 4.x</li>
|
||||||
<li>MacOS X/Darwin PowerPC with GCC 3.3</li>
|
<li>MacOS X/Darwin PowerPC with GCC 3.x</li>
|
||||||
<li>MacOS X/Darwin x86 with GCC 4.0</li>
|
<li>MacOS X/Darwin x86 with GCC 4.x</li>
|
||||||
<li>Microsoft Windows using Cygwin's GCC 3.3.1 (cygming special).
|
<li>Microsoft Windows using Cygwin's GCC 3.x (cygming special).
|
||||||
<li>Microsoft Windows using Visual Studio 2003/2005; projects files
|
<li>Microsoft Windows using Visual Studio 2003/2005; projects files
|
||||||
are provided.</li>
|
are provided.</li>
|
||||||
<li>Solaris SPARC with GCC 3.3.2</li>
|
<li>Solaris SPARC with GCC 3.x</li>
|
||||||
<li>Solaris x86 with GCC 3.3.2</li>
|
<li>Solaris x86 with GCC 3.x</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
If you have tested EO on a system not listed here, please
|
If you have tested EO on a system not listed here, please
|
||||||
|
|
@ -281,6 +281,9 @@
|
||||||
on Evolutionary algorithms.</li>
|
on Evolutionary algorithms.</li>
|
||||||
<li>Charles Darwin: <a href="http://www.bbc.co.uk/education/darwin/origin/index.htm">The
|
<li>Charles Darwin: <a href="http://www.bbc.co.uk/education/darwin/origin/index.htm">The
|
||||||
Origin of Species</a>.</li>
|
Origin of Species</a>.</li>
|
||||||
|
<li>Nikolaus Hansen: <a
|
||||||
|
href="http://www.bionik.tu-berlin.de/user/niko/cec2005.html">Comparison
|
||||||
|
of Evolutionary Algorithms on a Benchmark Function Set</a>.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
||||||
1
eo/tutorial/Templates/.cvsignore
Normal file
1
eo/tutorial/Templates/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile.in
|
||||||
23
eo/tutorial/Templates/Makefile.am
Normal file
23
eo/tutorial/Templates/Makefile.am
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
EXTRA_DIST = EO.tpl \
|
||||||
|
MakeSimple.tmpl \
|
||||||
|
Makefile.tmpl \
|
||||||
|
MyStructEA.cpp \
|
||||||
|
MyStructLibEA.cpp \
|
||||||
|
MyStructSEA.cpp \
|
||||||
|
README \
|
||||||
|
binCrossover.tmpl \
|
||||||
|
continue.tmpl \
|
||||||
|
create.sh \
|
||||||
|
createSimple \
|
||||||
|
eoMyStruct.tmpl \
|
||||||
|
evalFunc.tmpl \
|
||||||
|
init.tmpl \
|
||||||
|
lessOffspringExternalSelectorGenOp.tmpl \
|
||||||
|
lessOffspringSameSelectorGenOp.tmpl \
|
||||||
|
make_MyStruct.cpp \
|
||||||
|
make_genotype_MyStruct.h \
|
||||||
|
make_op_MyStruct.h \
|
||||||
|
moreOffspringGenOp.tmpl \
|
||||||
|
mutation.tmpl \
|
||||||
|
quadCrossover.tmpl \
|
||||||
|
stat.tmpl
|
||||||
1
eo/tutorial/html/.cvsignore
Normal file
1
eo/tutorial/html/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile.in
|
||||||
44
eo/tutorial/html/Makefile.am
Normal file
44
eo/tutorial/html/Makefile.am
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
EXTRA_DIST = BitEA.html \
|
||||||
|
EA_tutorial.jpg \
|
||||||
|
FirstBitEA.html \
|
||||||
|
FirstBitGA.html \
|
||||||
|
FirstRealEA.html \
|
||||||
|
FirstRealGA.html \
|
||||||
|
Firstmerge.html \
|
||||||
|
NoWay.html \
|
||||||
|
OneMaxEA.html \
|
||||||
|
SecondBitEA.html \
|
||||||
|
SecondRealEA.html \
|
||||||
|
beige009.jpg \
|
||||||
|
binary_value.html \
|
||||||
|
debut.html \
|
||||||
|
eoBottomUp.html \
|
||||||
|
eoCheckPoint.html \
|
||||||
|
eoEngine.html \
|
||||||
|
eoEval.html \
|
||||||
|
eoGeneration.html \
|
||||||
|
eoInit.html \
|
||||||
|
eoIo.html \
|
||||||
|
eoLesson1.html \
|
||||||
|
eoLesson2.html \
|
||||||
|
eoLesson3.html \
|
||||||
|
eoLesson4.html \
|
||||||
|
eoLesson5.html \
|
||||||
|
eoOneMax.html \
|
||||||
|
eoOneMaxEvalFunc.html \
|
||||||
|
eoOneMaxInit.html \
|
||||||
|
eoOneMaxMutation.html \
|
||||||
|
eoOneMaxQuadCrossover.html \
|
||||||
|
eoOneMax_complete.html \
|
||||||
|
eoOperators.html \
|
||||||
|
eoOutput.html \
|
||||||
|
eoProgramming.html \
|
||||||
|
eoRepresentation.html \
|
||||||
|
eoSGA.html \
|
||||||
|
eoSelect.html \
|
||||||
|
eoStop.html \
|
||||||
|
eoTopDown.html \
|
||||||
|
eoTutorial.html \
|
||||||
|
make_genotype_OneMax.html \
|
||||||
|
make_op_OneMax.html \
|
||||||
|
real_value.html
|
||||||
1
eo/tutorial/pdf/.cvsignore
Normal file
1
eo/tutorial/pdf/.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile.in
|
||||||
1
eo/tutorial/pdf/Makefile.am
Normal file
1
eo/tutorial/pdf/Makefile.am
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
EXTRA_DIST = paradiseoJet7.pdf
|
||||||
Reference in a new issue