00001 #ifndef TreeMutGauss_h
00002 #define TreeMutGauss_h
00003
00004 #include "boost/random/lagged_fibonacci.hpp"
00005
00006
00007 namespace Tree
00008 {
00009
00014 class TreeMutGauss : public MutationOp
00015 {
00016 public:
00017 bool mutate(GenotypeP gene);
00018 bool initialize(StateP);
00019 void registerParameters(StateP);
00020
00021 protected:
00022 boost::lagged_fibonacci607 engine_;
00023 };
00024 typedef boost::shared_ptr<TreeMutGauss> TreeMutGaussP;
00025 }
00026 #endif // TreeMutGauss_h