Stan  2.10.0
probability, sampling & optimization
arg_engine.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_ENGINE_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_ENGINE_HPP
3 
5 
9 
10 namespace stan {
11  namespace services {
12 
13  class arg_engine: public list_argument {
14  public:
16  _name = "engine";
17  _description = "Engine for Hamiltonian Monte Carlo";
18 
19  _values.push_back(new arg_static());
20  _values.push_back(new arg_nuts());
21  // _values.push_back(new arg_xhmc());
22 
23  _default_cursor = 1;
25  }
26  };
27 
28  } // services
29 } // stan
30 
31 #endif
std::vector< argument * > _values
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

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