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/tutorial/Templates
kuepper f7ce3d8b91 * createEOproject.sh: Set TargetDir to /tmp/<name>. This is a workaround
for automake finding the scripts of eo itself if we run it in a embedded
subdirectory.
(COPYING, INSTALL): create.

* README: State more explicitly what a "complete installation" means.
Give build-instructions for moved directories.
2007-01-14 18:56:31 +00:00
..
.cvsignore * mainpage.html: update, add link to Niko Hansen's comparison 2006-12-03 10:41:54 +00:00
binCrossover.tmpl Added many template files, and totally modified the comments in most other. 2001-09-04 08:35:22 +00:00
ChangeLog * createEOproject.sh: Set TargetDir to /tmp/<name>. This is a workaround 2007-01-14 18:56:31 +00:00
configure.ac.tmpl * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
continue.tmpl Added many template files, and totally modified the comments in most other. 2001-09-04 08:35:22 +00:00
createEOproject.sh * createEOproject.sh: Set TargetDir to /tmp/<name>. This is a workaround 2007-01-14 18:56:31 +00:00
EO.tpl * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
eoMyStruct.tmpl ADded comments and hook for copy constructor 2003-03-22 06:39:21 +00:00
evalFunc.tmpl Big modifications - now the init and most important the operators 2001-10-04 20:12:19 +00:00
init.tmpl Added the invalidate() call - that bug was not seem before, because 2001-11-10 06:32:05 +00:00
lessOffspringExternalSelectorGenOp.tmpl Added many template files, and totally modified the comments in most other. 2001-09-04 08:35:22 +00:00
lessOffspringSameSelectorGenOp.tmpl Added many template files, and totally modified the comments in most other. 2001-09-04 08:35:22 +00:00
make_genotype_MyStruct.h Replaced the eoParameterLoader parameter by an eoParser (used everywhere now) 2002-05-03 05:12:32 +00:00
make_MyStruct.cpp * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
make_op_MyStruct.h Big modifications - now the init and most important the operators 2001-10-04 20:12:19 +00:00
Makefile.am * Makefile.am (EXTRA_DIST): Distribute exactly the necessary files 2006-12-16 22:05:17 +00:00
Makefile.am.src-tmpl * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
Makefile.am.top-tmpl * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
moreOffspringGenOp.tmpl Added many template files, and totally modified the comments in most other. 2001-09-04 08:35:22 +00:00
mutation.tmpl Suppressed most warning (except some unused variables) if you don't modify anythig 2001-09-24 05:59:13 +00:00
MyStructEA.cpp * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
MyStructLibEA.cpp Added the MyStructLibEA.cpp+make_MyStruct.cpp that allow separate 2002-05-08 06:47:50 +00:00
MyStructSEA.cpp * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
quadCrossover.tmpl More precise comment 2003-06-21 06:34:00 +00:00
README * createEOproject.sh: Set TargetDir to /tmp/<name>. This is a workaround 2007-01-14 18:56:31 +00:00
README.manual * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
README.tmpl * EO.tpl, MyStructEA.cpp, MyStructSEA.cpp, make_MyStruct.cpp: Use 2006-12-16 21:55:03 +00:00
stat.tmpl Added the complete reference to the base class in call for value() 2005-02-10 09:57:28 +00:00

This Templates directory contains template files of an EO project and
a script createEOproject.sh to create a complete new EO project.

The template requires a complete installation of EO, that is, you must
have run "make install" in the build-directory.

In particular, the C++ compiler must find the EO include files and the
linker must find the EO libraries. Most probably, that means that you
have to set the variables CPLUS_INCLUDE_PATH and LIBRARY_PATH, i.e.
for a standard installation and using tcsh:

setenv CPLUS_INCLUDE_PATH /usr/local/include/eo:"$CPLUS_INCLUDE_PATH"
setenv LIBRARY_PATH /usr/local/lib:"$LIBRARY_PATH"


You can freely move the created project around. However, whenever you
change the location of the source- or build-directories, you need to
run 
  touch configure.ac && autoreconf && make
in the source-directory and make in the build-directory.


See README.manual for more details.