Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
arguments
arg_method.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ARGUMENTS_ARG_METHOD_HPP
2
#define STAN_SERVICES_ARGUMENTS_ARG_METHOD_HPP
3
4
#include <
stan/services/arguments/list_argument.hpp
>
5
#include <
stan/services/arguments/arg_sample.hpp
>
6
#include <
stan/services/arguments/arg_optimize.hpp
>
7
#include <
stan/services/arguments/arg_variational.hpp
>
8
#include <
stan/services/arguments/arg_diagnose.hpp
>
9
10
namespace
stan
{
11
namespace
services {
12
13
class
arg_method
:
public
list_argument
{
14
public
:
15
arg_method
() {
16
_name
=
"method"
;
17
_description
=
"Analysis method (Note that method= is optional)"
;
18
19
_values
.push_back(
new
arg_sample
());
20
_values
.push_back(
new
arg_optimize
());
21
_values
.push_back(
new
arg_variational
());
22
_values
.push_back(
new
arg_diagnose
());
23
24
_default_cursor
= 0;
25
_cursor
=
_default_cursor
;
26
}
27
};
28
29
}
// services
30
}
// stan
31
32
#endif
33
arg_diagnose.hpp
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
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::arg_optimize
Definition:
arg_optimize.hpp:12
stan::services::arg_variational
Definition:
arg_variational.hpp:18
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_method
Definition:
arg_method.hpp:13
stan::services::arg_sample
Definition:
arg_sample.hpp:15
arg_variational.hpp
arg_optimize.hpp
stan::services::arg_method::arg_method
arg_method()
Definition:
arg_method.hpp:15
arg_sample.hpp
stan::services::arg_diagnose
Definition:
arg_diagnose.hpp:10
[
Stan Home Page
]
© 2011–2016, Stan Development Team.