Updated documentation to give proper include file in doxygen and define a module selectors
Also added a load(stream) and save(stream) to eoState
This commit is contained in:
parent
6e925bedea
commit
f357a908bf
7 changed files with 46 additions and 9 deletions
|
|
@ -36,6 +36,9 @@ class eoStatBase
|
|||
public :
|
||||
virtual ~eoStatBase(){}
|
||||
|
||||
/**
|
||||
calculate some statistic on the population
|
||||
*/
|
||||
virtual void operator()(const eoPop<EOT>& _pop) = 0;
|
||||
};
|
||||
|
||||
|
|
@ -44,8 +47,6 @@ class eoStat : public eoValueParam<T>, public eoStatBase<EOT>
|
|||
{
|
||||
public :
|
||||
eoStat(T _value, std::string _description) : eoValueParam<T>(_value, _description) {}
|
||||
|
||||
virtual void operator()(const eoPop<EOT>& _pop) = 0;
|
||||
};
|
||||
|
||||
#include <numeric>
|
||||
|
|
|
|||
Reference in a new issue