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