ECF 1.5
FloatingPointMutSimple.h
1#ifndef FLOATINGPOINTMUTSIMPLE_H_
2#define FLOATINGPOINTMUTSIMPLE_H_
3
4
5namespace FloatingPoint
6{
7
13{
14protected:
15public:
16 bool mutate(GenotypeP gene);
17 bool initialize(StateP);
18 void registerParameters(StateP);
19};
20typedef boost::shared_ptr<FloatingPointMutSimple> FloatingPointMutSimpleP;
21}
22#endif /* FLOATINGPOINTMUTSIMPLE_H_ */
23
FloatingPoint genotype: simple mutation where a single vector element is mutated. New value is random...
bool initialize(StateP)
Initialize mutation operator. Called before first mutation operation.
bool mutate(GenotypeP gene)
Performs mutation of a genotype object. The genotype object must be initialized!
void registerParameters(StateP)
Register parameters with the system. Called before MutationOp::initialize.
MutationOp base class.
Definition: Mutation.h:17