ECF 1.5
PermutationMutInv.h
1#ifndef PERMUTATIONMUTINV_H_
2#define PERMUTATIONMUTINV_H_
3
4
5namespace Permutation
6{
7
13public:
14 bool mutate(GenotypeP gene);
15 bool initialize(StateP);
16 void registerParameters(StateP);
17};
18typedef boost::shared_ptr<PermutationMutInv> PermutationMutInvP;
19}
20#endif /* PERMUTATIONMUTINV_H_ */
MutationOp base class.
Definition: Mutation.h:17
Permutation genotype: inversion mutation operator (see e.g. http://dx.doi.org/10.1016/j....
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!