Stan
2.5.0
probability, sampling & optimization
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
stan
gm
arguments
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
4
#include <
stan/gm/arguments/categorical_argument.hpp
>
5
6
#include <
stan/gm/arguments/arg_engine.hpp
>
7
#include <
stan/gm/arguments/arg_metric.hpp
>
8
#include <
stan/gm/arguments/arg_stepsize.hpp
>
9
#include <
stan/gm/arguments/arg_stepsize_jitter.hpp
>
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
stan::gm::arg_hmc
Definition:
arg_hmc.hpp:15
arg_stepsize_jitter.hpp
categorical_argument.hpp
stan::gm::categorical_argument
Definition:
categorical_argument.hpp:11
stan::gm::categorical_argument::_subarguments
std::vector< argument * > _subarguments
Definition:
categorical_argument.hpp:153
stan::gm::arg_engine
Definition:
arg_engine.hpp:13
arg_metric.hpp
arg_stepsize.hpp
stan::gm::arg_stepsize
Definition:
arg_stepsize.hpp:10
stan::gm::argument::_name
std::string _name
Definition:
argument.hpp:76
arg_engine.hpp
stan::gm::arg_hmc::arg_hmc
arg_hmc()
Definition:
arg_hmc.hpp:19
stan::gm::arg_stepsize_jitter
Definition:
arg_stepsize_jitter.hpp:10
stan::gm::argument::_description
std::string _description
Definition:
argument.hpp:77
stan::gm::arg_metric
Definition:
arg_metric.hpp:14
[
Stan Home Page
]
© 2011–2014, Stan Development Team.