00001 #ifndef BitStringMutSimple_h
00002 #define BitStringMutSimple_h
00003
00004
00005 namespace BitString
00006 {
00007
00012 class BitStringMutSimple : public MutationOp
00013 {
00014 protected:
00015 double bitProb_;
00016 bool bUseBitProb_;
00017
00018 public:
00019 bool mutate(GenotypeP gene);
00020 bool initialize(StateP);
00021 void registerParameters(StateP);
00022 };
00023 typedef boost::shared_ptr<BitStringMutSimple> BitStringMutSimpleP;
00024 }
00025 #endif // BitStringMutSimple_h
00026