Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
arguments
arg_xhmc.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ARGUMENTS_ARG_XHMC_HPP
2
#define STAN_SERVICES_ARGUMENTS_ARG_XHMC_HPP
3
4
#include <
stan/services/arguments/categorical_argument.hpp
>
5
#include <
stan/services/arguments/arg_max_depth.hpp
>
6
#include <
stan/services/arguments/arg_x_delta.hpp
>
7
8
namespace
stan
{
9
namespace
services {
10
11
class
arg_xhmc
:
public
categorical_argument
{
12
public
:
13
arg_xhmc
() {
14
_name
=
"xhmc"
;
15
_description
=
"Exhaustive Hamiltonian Monte Carlo"
;
16
17
_subarguments
.push_back(
new
arg_max_depth
());
18
_subarguments
.push_back(
new
arg_x_delta
());
19
}
20
};
21
22
}
// services
23
}
// stan
24
25
#endif
stan
Probability, optimization and sampling library.
Definition:
base_interrupt.hpp:4
stan::services::arg_xhmc
Definition:
arg_xhmc.hpp:11
categorical_argument.hpp
stan::services::argument::_description
std::string _description
Definition:
argument.hpp:84
arg_x_delta.hpp
stan::services::categorical_argument
Definition:
categorical_argument.hpp:11
stan::services::argument::_name
std::string _name
Definition:
argument.hpp:83
arg_max_depth.hpp
stan::services::arg_max_depth
Definition:
arg_max_depth.hpp:9
stan::services::arg_xhmc::arg_xhmc
arg_xhmc()
Definition:
arg_xhmc.hpp:13
stan::services::categorical_argument::_subarguments
std::vector< argument * > _subarguments
Definition:
categorical_argument.hpp:148
stan::services::arg_x_delta
Definition:
arg_x_delta.hpp:9
[
Stan Home Page
]
© 2011–2016, Stan Development Team.