1#ifndef BINARYMUTSIMPLE_H_ 
    2#define BINARYMUTSIMPLE_H_ 
   19    bool mutate(GenotypeP gene);
 
   23typedef boost::shared_ptr<BinaryMutSimple> BinaryMutSimpleP;
 
Binary genotype: simple (bit-flip) mutation operator.
 
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!