ECF 1.7
TreeMutShrink.h
1#ifndef TreeMutShrink_h
2#define TreeMutShrink_h
3
4
5namespace Tree
6{
7
12class TreeMutShrink : public MutationOp
13{
14public:
15 bool mutate(GenotypeP gene);
16 bool initialize(StateP);
17 void registerParameters(StateP);
18};
19typedef std::shared_ptr<TreeMutShrink> TreeMutShrinkP;
20}
21#endif // TreeMutShrink_h
Tree genotype: mutation operator that shrinks randomly chosen subtree.
bool initialize(StateP)
Initialize mutation operator. Called before first mutation operation.
void registerParameters(StateP)
Register parameters with the system. Called before MutationOp::initialize.
bool mutate(GenotypeP gene)
Performs mutation of a genotype object. The genotype object must be initialized!