minor updates,

create doxytag-file when running doxygen
This commit is contained in:
kuepper 2004-12-23 17:26:39 +00:00
commit 57a39197b9
4 changed files with 12 additions and 10 deletions

View file

@ -1,5 +1,6 @@
Makefile Makefile
Makefile.in Makefile.in
eo.doxytag
html html
latex latex
man man

View file

@ -957,7 +957,7 @@ TAGFILES =
# When a file name is specified after GENERATE_TAGFILE, doxygen will create # When a file name is specified after GENERATE_TAGFILE, doxygen will create
# a tag file that is based on the input files it reads. # a tag file that is based on the input files it reads.
GENERATE_TAGFILE = GENERATE_TAGFILE = eo.doxytag
# If the ALLEXTERNALS tag is set to YES all external classes will be listed # If the ALLEXTERNALS tag is set to YES all external classes will be listed
# in the class index. If set to NO only the inherited external classes # in the class index. If set to NO only the inherited external classes

View file

@ -37,9 +37,10 @@
#include <apply.h> #include <apply.h>
/** The Simple Genetic Algorithm, following Holland and Goldberg /** The Simple Genetic Algorithm, following Holland and Goldberg
* Needs a selector (class eoSelectOne) a crossover (eoQuad, *
* i.e. a 2->2 operator) and a mutation with their respective rates, * Needs a selector (class eoSelectOne) a crossover (eoQuad, i.e. a
* of course an evaluation function (eoEvalFunc) and a continuator * 2->2 operator) and a mutation with their respective rates, of
* course an evaluation function (eoEvalFunc) and a continuator
* (eoContinue) which gives the stopping criterion. Performs full * (eoContinue) which gives the stopping criterion. Performs full
* generational replacement. * generational replacement.
*/ */