Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
arguments
arg_test.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ARGUMENTS_ARG_TEST_HPP
2
#define STAN_SERVICES_ARGUMENTS_ARG_TEST_HPP
3
4
#include <
stan/services/arguments/list_argument.hpp
>
5
#include <
stan/services/arguments/arg_test_gradient.hpp
>
6
7
namespace
stan
{
8
namespace
services {
9
10
class
arg_test
:
public
list_argument
{
11
public
:
12
arg_test
() {
13
_name
=
"test"
;
14
_description
=
"Diagnostic test"
;
15
16
_values
.push_back(
new
arg_test_gradient
());
17
18
_default_cursor
= 0;
19
_cursor
=
_default_cursor
;
20
}
21
};
22
23
}
// services
24
}
// stan
25
26
#endif
27
stan::services::arg_test::arg_test
arg_test()
Definition:
arg_test.hpp:12
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_test_gradient.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::arg_test_gradient
Definition:
arg_test_gradient.hpp:11
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_test
Definition:
arg_test.hpp:10
[
Stan Home Page
]
© 2011–2016, Stan Development Team.