Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
arg_hmc.hpp
Go to the documentation of this file.
1 #ifndef STAN__GM__ARGUMENTS__HMC__HPP
2 #define STAN__GM__ARGUMENTS__HMC__HPP
3 
5 
10 
11 namespace stan {
12 
13  namespace gm {
14 
15  class arg_hmc: public categorical_argument {
16 
17  public:
18 
19  arg_hmc() {
20 
21  _name = "hmc";
22  _description = "Hamiltonian Monte Carlo";
23 
24  _subarguments.push_back(new arg_engine());
25  _subarguments.push_back(new arg_metric());
26  _subarguments.push_back(new arg_stepsize());
27  _subarguments.push_back(new arg_stepsize_jitter());
28 
29  }
30 
31  };
32 
33  } // gm
34 
35 } // stan
36 
37 #endif
38 
std::vector< argument * > _subarguments
std::string _name
Definition: argument.hpp:76
std::string _description
Definition: argument.hpp:77

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