MUQ  0.4.3
MCMC.cpp
Go to the documentation of this file.
1 #include "MUQ/SamplingAlgorithms/MCMC.h"
2 
3 using namespace muq::SamplingAlgorithms;
4 
5 MCMC::MCMC() :
6  SamplingAlgorithm(true) // the sampling algorithm produces correlated samples
7 {}
8 
9 MCMC::~MCMC() {}
10 
11 std::shared_ptr<TransitionKernel> MCMC::ConstructKernel(boost::property_tree::ptree& pt, std::shared_ptr<SamplingProblem> problem) const {
12  return TransitionKernel::Construct(pt, problem);
13 }