Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
arguments
arg_sample_algo.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ARGUMENTS_ARG_SAMPLE_ALGO_HPP
2
#define STAN_SERVICES_ARGUMENTS_ARG_SAMPLE_ALGO_HPP
3
4
#include <
stan/services/arguments/list_argument.hpp
>
5
#include <
stan/services/arguments/arg_hmc.hpp
>
6
#include <
stan/services/arguments/arg_fixed_param.hpp
>
7
8
namespace
stan
{
9
namespace
services {
10
11
class
arg_sample_algo
:
public
list_argument
{
12
public
:
13
arg_sample_algo
() {
14
_name
=
"algorithm"
;
15
_description
=
"Sampling algorithm"
;
16
17
_values
.push_back(
new
arg_hmc
());
18
_values
.push_back(
new
arg_fixed_param
());
19
20
_default_cursor
= 0;
21
_cursor
=
_default_cursor
;
22
}
23
};
24
25
}
// services
26
}
// stan
27
28
#endif
29
stan::services::list_argument::_values
std::vector< argument * > _values
Definition:
list_argument.hpp:178
stan
Probability, optimization and sampling library.
Definition:
base_interrupt.hpp:4
arg_fixed_param.hpp
list_argument.hpp
stan::services::argument::_description
std::string _description
Definition:
argument.hpp:84
stan::services::argument::_name
std::string _name
Definition:
argument.hpp:83
stan::services::list_argument::_default_cursor
int _default_cursor
Definition:
list_argument.hpp:176
stan::services::list_argument::_cursor
int _cursor
Definition:
list_argument.hpp:175
stan::services::list_argument
Definition:
list_argument.hpp:14
stan::services::arg_sample_algo::arg_sample_algo
arg_sample_algo()
Definition:
arg_sample_algo.hpp:13
stan::services::arg_sample_algo
Definition:
arg_sample_algo.hpp:11
arg_hmc.hpp
stan::services::arg_fixed_param
Definition:
arg_fixed_param.hpp:9
stan::services::arg_hmc
Definition:
arg_hmc.hpp:13
[
Stan Home Page
]
© 2011–2016, Stan Development Team.