35 #include <Eigen/Dense> 299 typedef double (*lbfgs_evaluate_t)(
void *instance,
const double *x,
300 double *g,
const int n,
const double step);
322 typedef int (*lbfgs_progress_t)(
void *instance,
const double *x,
323 const double *g,
const double fx,
const double xnorm,
324 const double gnorm,
const double step,
int n,
int k,
int ls);
384 int lbfgs(
int n,
double *x,
double *ptr_fx,
385 lbfgs_evaluate_t proc_evaluate, lbfgs_progress_t proc_progress,
428 bool initialize(
NlpDescription* nlproblem,
double constraints_weight = 1.);
431 bool& verbose() {
return verbose_; }
436 static double delegate_evaluate(
void *instance,
const double *x,
double *g,
const int n,
const double step );
437 double evaluate(
void *instance,
const double *x,
double *g,
const int n,
const double step );
438 double evaluate_objective_function(
const double* eig_x);
441 static int delegate_progress(
void *instance,
const double *x,
const double *g,
const double fx,
const double xnorm,
442 const double gnorm,
const double step,
int n,
int k,
int ls );
443 int progress(
const double *x,
const double *g,
double fx,
double xnorm,
double gnorm,
int n,
int k );
447 double constraints_weight_;
448 bool verbose_, initialized_;
450 int nvars_, ncons_, *user_info_, opt_status_, length_of_address_to_this_;
int m
The number of corrections to approximate the inverse hessian matrix.
Definition: LbfgsSolver.hpp:166
Unknown error.
Definition: LbfgsSolver.hpp:50
double wolfe
A coefficient for the Wolfe condition.
Definition: LbfgsSolver.hpp:257
A rounding error occurred; alternatively, no line-search step satisfies the sufficient decrease and c...
Definition: LbfgsSolver.hpp:91
double ftol
A parameter to control the accuracy of the line search routine.
Definition: LbfgsSolver.hpp:246
double epsilon
Epsilon for convergence test.
Definition: LbfgsSolver.hpp:176
Logic error.
Definition: LbfgsSolver.hpp:52
double delta
Delta for convergence test.
Definition: LbfgsSolver.hpp:197
The default algorithm (MoreThuente method).
Definition: LbfgsSolver.hpp:113
The line-search step became larger than lbfgs_parameter_t::max_step.
Definition: LbfgsSolver.hpp:95
void lbfgs_parameter_init(lbfgs_parameter_t *param)
Initialize L-BFGS parameters to the default values.
Definition: LbfgsSolver.cpp:184
Invalid parameter lbfgs_parameter_t::wolfe specified.
Definition: LbfgsSolver.hpp:72
double xtol
The machine precision for floating-point values.
Definition: LbfgsSolver.hpp:278
int lbfgs(int n, double *x, double *ptr_fx, lbfgs_evaluate_t proc_evaluate, lbfgs_progress_t proc_progress, void *instance, lbfgs_parameter_t *param)
Start a L-BFGS optimization.
Definition: LbfgsSolver.cpp:189
The current search direction increases the objective function value.
Definition: LbfgsSolver.hpp:105
double gtol
A parameter to control the accuracy of the line search routine.
Definition: LbfgsSolver.hpp:269
int linesearch
The line search algorithm.
Definition: LbfgsSolver.hpp:214
Invalid parameter lbfgs_parameter_t::gtol specified.
Definition: LbfgsSolver.hpp:74
Invalid parameter lbfgs_parameter_t::delta specified.
Definition: LbfgsSolver.hpp:62
double min_step
The minimum step of the line search routine.
Definition: LbfgsSolver.hpp:230
Backtracking method with the Armijo condition.
Definition: LbfgsSolver.hpp:125
int max_iterations
The maximum number of iterations.
Definition: LbfgsSolver.hpp:207
double * lbfgs_malloc(int n)
Allocate an array for variables.
Definition: LbfgsSolver.cpp:179
The algorithm routine reaches the maximum number of iterations.
Definition: LbfgsSolver.hpp:99
Insufficient memory.
Definition: LbfgsSolver.hpp:54
Invalid number of variables specified.
Definition: LbfgsSolver.hpp:56
Invalid parameter lbfgs_parameter_t::max_linesearch specified.
Definition: LbfgsSolver.hpp:78
Invalid parameter lbfgs_parameter_t::orthantwise_start specified.
Definition: LbfgsSolver.hpp:82
Invalid parameter lbfgs_parameter_t::max_step specified.
Definition: LbfgsSolver.hpp:68
Invalid parameter lbfgs_parameter_t::epsilon specified.
Definition: LbfgsSolver.hpp:58
The line-search step became smaller than lbfgs_parameter_t::min_step.
Definition: LbfgsSolver.hpp:93
Definition: LbfgsSolver.hpp:422
Invalid parameter lbfgs_parameter_t::linesearch specified.
Definition: LbfgsSolver.hpp:64
The initial variables already minimize the objective function.
Definition: LbfgsSolver.hpp:48
Backtracking method with regular Wolfe condition.
Definition: LbfgsSolver.hpp:138
double max_step
The maximum step of the line search.
Definition: LbfgsSolver.hpp:239
A logic error (negative line-search step) occurred.
Definition: LbfgsSolver.hpp:103
int max_linesearch
The maximum number of trials for the line search.
Definition: LbfgsSolver.hpp:221
Definition: NlpDescription.hpp:18
L-BFGS optimization parameters.
Definition: LbfgsSolver.hpp:157
MoreThuente method proposd by More and Thuente.
Definition: LbfgsSolver.hpp:115
void lbfgs_free(double *x)
Free an array of variables.
int past
Distance for delta-based convergence test.
Definition: LbfgsSolver.hpp:185
Invalid parameter lbfgs_parameter_t::ftol specified.
Definition: LbfgsSolver.hpp:70
The line-search routine reaches the maximum number of evaluations.
Definition: LbfgsSolver.hpp:97
Invalid parameter lbfgs_parameter_t::xtol specified.
Definition: LbfgsSolver.hpp:76
The line-search step went out of the interval of uncertainty.
Definition: LbfgsSolver.hpp:86
Backtracking method with strong Wolfe condition.
Definition: LbfgsSolver.hpp:149
Relative width of the interval of uncertainty is at most lbfgs_parameter_t::xtol. ...
Definition: LbfgsSolver.hpp:101
Invalid parameter lbfgs_parameter_t::max_step specified.
Definition: LbfgsSolver.hpp:66
The backtracking method with the defualt (regular Wolfe) condition.
Definition: LbfgsSolver.hpp:127
Invalid parameter lbfgs_parameter_t::orthantwise_end specified.
Definition: LbfgsSolver.hpp:84
Invalid parameter lbfgs_parameter_t::past specified.
Definition: LbfgsSolver.hpp:60
A logic error occurred; alternatively, the interval of uncertainty became too small.
Definition: LbfgsSolver.hpp:88
L-BFGS reaches convergence.
Definition: LbfgsSolver.hpp:45
Invalid parameter lbfgs_parameter_t::orthantwise_c specified.
Definition: LbfgsSolver.hpp:80