fix some doxygen warnings

This commit is contained in:
Johann Dreo 2010-11-07 23:43:58 +01:00
commit b7009822a5
10 changed files with 26 additions and 24 deletions

View file

@ -71,6 +71,7 @@ public:
/**
* (Default) Constructor.
* @param size Size of the binary std::string.
* @param value Default value.
*/
eoBit(unsigned size = 0, bool value = false):
eoVector<FitT, bool>(size, value) {}

View file

@ -109,6 +109,7 @@ template<class Chrom> class eoBitMutation: public eoMonOp<Chrom>
/**
* (Default) Constructor.
* @param _rate Rate of mutation.
* @param _normalize use rate/chrom.size if true
*/
eoBitMutation(const double& _rate = 0.01, bool _normalize=false):
rate(_rate), normalize(_normalize) {}
@ -289,7 +290,7 @@ template<class Chrom> class eoUBitXover: public eoQuadOp<Chrom>
* Uniform crossover for binary chromosomes.
* @param chrom1 The first chromosome.
* @param chrom2 The first chromosome.
* @std::runtime_error if sizes don't match
* std::runtime_error if sizes don't match
*/
bool operator()(Chrom& chrom1, Chrom& chrom2)
{