minor updates,
create doxytag-file when running doxygen
This commit is contained in:
parent
7b9e6d3e1f
commit
57a39197b9
4 changed files with 12 additions and 10 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
|
eo.doxytag
|
||||||
html
|
html
|
||||||
latex
|
latex
|
||||||
man
|
man
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// eoAlgo.h
|
// eoAlgo.h
|
||||||
// (c) GeNeura Team, 1998
|
// (c) GeNeura Team, 1998
|
||||||
/*
|
/*
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
License as published by the Free Software Foundation; either
|
License as published by the Free Software Foundation; either
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
#include <eoPop.h> // for population
|
#include <eoPop.h> // for population
|
||||||
#include <eoFunctor.h>
|
#include <eoFunctor.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This is a generic class for population-transforming algorithms. There
|
This is a generic class for population-transforming algorithms. There
|
||||||
is only one operator defined, which takes a population and does stuff to
|
is only one operator defined, which takes a population and does stuff to
|
||||||
it. It needn't be a complete algorithm, can be also a step of an
|
it. It needn't be a complete algorithm, can be also a step of an
|
||||||
|
|
@ -39,5 +39,5 @@ template< class EOT >
|
||||||
class eoAlgo : public eoUF<eoPop<EOT>&, void>
|
class eoAlgo : public eoUF<eoPop<EOT>&, void>
|
||||||
{};
|
{};
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// eoSGA.h
|
// eoSGA.h
|
||||||
// (c) GeNeura Team, 2000 - EEAAX 1999 - Maarten Keijzer 2000
|
// (c) GeNeura Team, 2000 - EEAAX 1999 - Maarten Keijzer 2000
|
||||||
/*
|
/*
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
License as published by the Free Software Foundation; either
|
License as published by the Free Software Foundation; either
|
||||||
|
|
@ -37,11 +37,12 @@
|
||||||
#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
|
||||||
* (eoContinue) which gives the stopping criterion. Performs full
|
* course an evaluation function (eoEvalFunc) and a continuator
|
||||||
* generational replacement.
|
* (eoContinue) which gives the stopping criterion. Performs full
|
||||||
|
* generational replacement.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
template <class EOT>
|
template <class EOT>
|
||||||
|
|
|
||||||
Reference in a new issue