62 {
if(ind == NULL)
error(
"IndFactory::recycle:ind is NULL!!\n");
else RecyclingPOOL.push_back(ind); }
Factory of Individual, stores the individual prototype and the trait prototypes, manages the individu...
Definition: indfactory.h:42
Individual * makeNewIndividual(Individual *newind, Individual *mother, Individual *father, sex_t sex, unsigned short homepatch)
Creates an individual from existing pointer with new ID.
Definition: indfactory.cc:151
void recycle(Individual *ind)
Put an individual in the recycling pool.
Definition: indfactory.h:61
virtual ~IndFactory()
Definition: indfactory.cc:35
std::deque< Individual * > RecyclingPOOL
Garbage collector for unused Individual's.
Definition: indfactory.h:53
Individual * makeOffsprg(Individual *mother, Individual *father, sex_t sex, unsigned short homepatch)
Completely creates an individual with inheritance and mutations on all traits.
Definition: indfactory.cc:233
Individual * decorateNewIndividual(Individual *newind, Individual *mother, Individual *father, sex_t sex, unsigned short homepatch)
Sets the internals of a new individual with pointers to parents, sex and home ID set.
Definition: indfactory.cc:179
std::map< trait_t, int > _TraitsIndex
Table containing the index of each trait.
Definition: indfactory.h:47
Individual * getNewIndividual()
Creates a blank individual which has to be "decorated" later.
Definition: indfactory.h:84
void makePrototype(map< trait_t, TraitPrototype * > TTlist)
Creates the individuals prototype from the selected trait prototypes.
Definition: indfactory.cc:49
std::map< trait_t, TraitPrototype * > _protoTraits
Map of the trait prototypes.
Definition: indfactory.h:45
void purgeRecyclingPOOL()
Empty the recycling pool.
Definition: indfactory.h:65
int getTraitIndex(trait_t type)
Gives the index of trait with type.
Definition: indfactory.cc:127
void clearPrototype()
Reset the trait prototypes, mostly done to unregister the genetic maps.
Definition: indfactory.cc:102
std::map< trait_t, TraitPrototype * > & getTraitPrototypes()
Accessor to the list of TraitPrototype's.
Definition: indfactory.h:139
IndFactory()
Definition: indfactory.h:57
Individual * getPrototypeClone()
Return an uninitialized copy of the individual prototype.
Definition: indfactory.h:78
Individual * getIndividualProtoype()
Individual prototype accessor.
Definition: indfactory.h:131
TraitPrototype * getTraitPrototype(trait_t type)
Accessor to a TraitPrototype.
Definition: indfactory.cc:139
Individual _protoIndividual
The individuals prototype used to create any new individual in a simulation.
Definition: indfactory.h:50
This class contains traits along with other individual information (sex, pedigree,...
Definition: individual.h:48
Individual * clone()
Cloning procedure, clones all the traits present in the individual.
Definition: individual.cc:149
TTrait setter.
Definition: ttrait.h:130
int error(const char *str,...)
Definition: output.cc:78
std::string trait_t
Trait types.
Definition: types.h:62
sex_t
Sex types, males are always 0 and females 1!!
Definition: types.h:35
@ MAL
Definition: types.h:36