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_nuts.hpp
Go to the documentation of this file.
1
#ifndef STAN__GM__ARGUMENTS__NUTS__HMC__HPP
2
#define STAN__GM__ARGUMENTS__NUTS__HMC__HPP
3
4
#include <
stan/gm/arguments/categorical_argument.hpp
>
5
6
#include <
stan/gm/arguments/arg_max_depth.hpp
>
7
8
namespace
stan {
9
10
namespace
gm {
11
12
class
arg_nuts
:
public
categorical_argument
{
13
14
public
:
15
16
arg_nuts
() {
17
18
_name
=
"nuts"
;
19
_description
=
"The No-U-Turn Sampler"
;
20
21
_subarguments
.push_back(
new
arg_max_depth
());
22
23
}
24
25
};
26
27
}
// gm
28
29
}
// stan
30
31
#endif
32
stan::gm::arg_nuts::arg_nuts
arg_nuts()
Definition:
arg_nuts.hpp:16
stan::gm::arg_nuts
Definition:
arg_nuts.hpp:12
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
arg_max_depth.hpp
stan::gm::argument::_name
std::string _name
Definition:
argument.hpp:76
stan::gm::arg_max_depth
Definition:
arg_max_depth.hpp:10
stan::gm::argument::_description
std::string _description
Definition:
argument.hpp:77
[
Stan Home Page
]
© 2011–2014, Stan Development Team.