ECF 1.5
BitStringMutMix.h
1#ifndef BitStringMut_h
2#define BitStringMut_h
3
4
5namespace BitString
6{
7
13{
14public:
15 bool mutate(GenotypeP gene);
16 bool initialize(StateP);
17 void registerParameters(StateP);
18};
19typedef boost::shared_ptr<BitStringMutMix> BitStringMutMixP;
20}
21#endif // BitStringMut_h
22
BitString genotype mixing mutation operator.
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!
bool initialize(StateP)
Initialize mutation operator. Called before first mutation operation.
MutationOp base class.
Definition: Mutation.h:17