Updated documentation to give proper include file in doxygen and define a module bitstring
This commit is contained in:
parent
fee9a330b1
commit
6e925bedea
2 changed files with 44 additions and 9 deletions
|
|
@ -29,8 +29,16 @@
|
|||
#include <string> // string
|
||||
#include <eoVector.h> // EO
|
||||
|
||||
/**
|
||||
\defgroup bitstring
|
||||
|
||||
Various functions for a bitstring representation
|
||||
*/
|
||||
|
||||
/** eoBin: implementation of binary chromosome.
|
||||
* based on STL's bit_vector (vector<bool>).
|
||||
\class eoBin eoBin.h ga/eoBin.h
|
||||
\ingroup bitstring
|
||||
* based on STL's bit_vector (vector<bool>).
|
||||
*/
|
||||
template <class F> class eoBin: public eoVector<bool, F>
|
||||
{
|
||||
|
|
|
|||
Reference in a new issue