Stan  2.10.0
probability, sampling & optimization
arg_hmc.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_HMC_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_HMC_HPP
3 
9 
10 namespace stan {
11  namespace services {
12 
13  class arg_hmc: public categorical_argument {
14  public:
15  arg_hmc() {
16  _name = "hmc";
17  _description = "Hamiltonian Monte Carlo";
18 
19  _subarguments.push_back(new arg_engine());
20  _subarguments.push_back(new arg_metric());
21  _subarguments.push_back(new arg_stepsize());
22  _subarguments.push_back(new arg_stepsize_jitter());
23  }
24  };
25 
26  } // services
27 } // stan
28 
29 #endif
30 
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

     [ Stan Home Page ] © 2011–2016, Stan Development Team.