MUQ  0.4.3
MCMCFactory.h
Go to the documentation of this file.
1 #ifndef MCMCFACTORY_H_
2 #define MCMCFACTORY_H_
3 
5 
6 
7 namespace muq {
8  namespace SamplingAlgorithms {
9 
10  class MCMCFactory {
11 
12  public:
13 
14  static std::shared_ptr<SingleChainMCMC>
15  CreateSingleChain(boost::property_tree::ptree pt,
16  std::shared_ptr<AbstractSamplingProblem> problem);
17 
18  };
19 
20  } // namespace SamplingAlgoirthms
21 } // namespace muq
22 
23 #endif
static std::shared_ptr< SingleChainMCMC > CreateSingleChain(boost::property_tree::ptree pt, std::shared_ptr< AbstractSamplingProblem > problem)
Definition: MCMCFactory.cpp:8