ECF 1.7
IntGenotypeMutOp.h
1#include <cmath>
2#include <sstream>
3
4
5namespace IntGenotype
6{
11 class IntGenotypeMutOp : public MutationOp
12 {
13 public:
14 bool mutate(GenotypeP gene);
15 };
16 typedef std::shared_ptr<IntGenotypeMutOp> IntGenotypeMutOpP;
17
18}
IntGenotype genotype: single-point mutation operator.
bool mutate(GenotypeP gene)
Performs mutation of a genotype object. The genotype object must be initialized!