7typedef boost::shared_ptr<HallOfFame> HallOfFameP;
9typedef boost::shared_ptr<StatCalc> StatCalcP;
18class Deme :
public std::vector <IndividualP>
25 bool replace(uint index, IndividualP newInd);
31 {
return nIndividuals_; }
36typedef boost::shared_ptr<Deme> DemeP;
Deme class - inherits a vector of Individual objects.
uint & getSize()
get number of indiviuals (deme size)
bool replace(uint index, IndividualP newInd)
replace ind. at index with newInd
bool initialize(StateP state)
initialize deme
Records a set of best-so-far individuals.
Statistics calculation class.