ECF 1.5
GEPChromosomeMutOp.h
1#ifndef GEPCHROMOSOMEMUTOP_H
2#define GEPCHROMOSOMEMUTOP_H
3#include "../ECF_base.h"
4#include "GEPChromosome.h"
5namespace GEPChromosome{
12 {
13 public:
14 void registerParameters(StateP state);
15 bool initialize(StateP state);
16 bool mutate(GenotypeP gene);
17 };
18}
19typedef boost::shared_ptr<GEPChromosome::GEPChromosomeMutOp> GEPChromosomeMutOpP;
20#endif // GEPChromosomeMutOp_h
GEPChromosome genotype: node replacement mutation operator. Tries to replace the selected primitive w...
bool mutate(GenotypeP gene)
Performs mutation of a genotype object. The genotype object must be initialized!
void registerParameters(StateP state)
Register parameters with the system. Called before MutationOp::initialize.
bool initialize(StateP state)
Initialize mutation operator. Called before first mutation operation.
MutationOp base class.
Definition: Mutation.h:17