Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
arguments
arg_lbfgs.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ARGUMENTS_ARG_LBFGS_HPP
2
#define STAN_SERVICES_ARGUMENTS_ARG_LBFGS_HPP
3
4
#include <
stan/services/arguments/arg_bfgs.hpp
>
5
#include <
stan/services/arguments/arg_history_size.hpp
>
6
7
namespace
stan
{
8
namespace
services {
9
10
class
arg_lbfgs
:
public
arg_bfgs
{
11
public
:
12
arg_lbfgs
() {
13
_name
=
"lbfgs"
;
14
_description
=
"LBFGS with linesearch"
;
15
16
_subarguments
.push_back(
new
arg_history_size
());
17
}
18
};
19
20
}
// services
21
}
// stan
22
23
#endif
24
stan::services::arg_lbfgs::arg_lbfgs
arg_lbfgs()
Definition:
arg_lbfgs.hpp:12
stan
Probability, optimization and sampling library.
Definition:
base_interrupt.hpp:4
stan::services::arg_lbfgs
Definition:
arg_lbfgs.hpp:10
stan::services::argument::_description
std::string _description
Definition:
argument.hpp:84
stan::services::argument::_name
std::string _name
Definition:
argument.hpp:83
arg_bfgs.hpp
stan::services::arg_history_size
Definition:
arg_history_size.hpp:9
stan::services::categorical_argument::_subarguments
std::vector< argument * > _subarguments
Definition:
categorical_argument.hpp:148
arg_history_size.hpp
stan::services::arg_bfgs
Definition:
arg_bfgs.hpp:11
[
Stan Home Page
]
© 2011–2016, Stan Development Team.