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_sample_algo.hpp
Go to the documentation of this file.
1
#ifndef STAN__GM__ARGUMENTS__SAMPLE__ALGO__HPP
2
#define STAN__GM__ARGUMENTS__SAMPLE__ALGO__HPP
3
4
#include <
stan/gm/arguments/list_argument.hpp
>
5
6
#include <
stan/gm/arguments/arg_hmc.hpp
>
7
#include <
stan/gm/arguments/arg_fixed_param.hpp
>
8
9
namespace
stan {
10
11
namespace
gm {
12
13
class
arg_sample_algo
:
public
list_argument
{
14
15
public
:
16
17
arg_sample_algo
() {
18
19
_name
=
"algorithm"
;
20
_description
=
"Sampling algorithm"
;
21
22
_values
.push_back(
new
arg_hmc
());
23
_values
.push_back(
new
arg_fixed_param
());
24
25
_default_cursor
= 0;
26
_cursor
=
_default_cursor
;
27
28
}
29
30
};
31
32
}
// gm
33
34
}
// stan
35
36
#endif
37
stan::gm::arg_hmc
Definition:
arg_hmc.hpp:15
arg_fixed_param.hpp
stan::gm::list_argument::_default_cursor
int _default_cursor
Definition:
list_argument.hpp:183
list_argument.hpp
stan::gm::list_argument::_values
std::vector< argument * > _values
Definition:
list_argument.hpp:185
stan::gm::arg_fixed_param
Definition:
arg_fixed_param.hpp:10
stan::gm::list_argument
Definition:
list_argument.hpp:12
stan::gm::argument::_name
std::string _name
Definition:
argument.hpp:76
stan::gm::list_argument::_cursor
int _cursor
Definition:
list_argument.hpp:182
arg_hmc.hpp
stan::gm::arg_sample_algo
Definition:
arg_sample_algo.hpp:13
stan::gm::arg_sample_algo::arg_sample_algo
arg_sample_algo()
Definition:
arg_sample_algo.hpp:17
stan::gm::argument::_description
std::string _description
Definition:
argument.hpp:77
[
Stan Home Page
]
© 2011–2014, Stan Development Team.