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