Updated documentation to give proper include file in doxygen and define a module bitstring

This commit is contained in:
mac 2000-04-09 09:44:53 +00:00
commit 6e925bedea
2 changed files with 44 additions and 9 deletions

View file

@ -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>
{