ECF 1.5
IntGenotypeMutOp.h
1#include <ecf/ECF.h>
2#include <ecf/ECF_base.h>
3#include <cmath>
4#include <sstream>
5
6
7namespace IntGenotype
8{
9 class IntGenotypeMutOp : public MutationOp
10 {
11 public:
12 bool mutate(GenotypeP gene);
13 };
14 typedef boost::shared_ptr<IntGenotypeMutOp> IntGenotypeMutOpP;
15
16}
bool mutate(GenotypeP gene)
Performs mutation of a genotype object. The genotype object must be initialized!
MutationOp base class.
Definition: Mutation.h:17