solver
LbfgsSolver.hpp
Go to the documentation of this file.
1 
32 #pragma once
33 
34 #include <iostream>
35 #include <Eigen/Dense>
37 
38 namespace solver {
43  enum {
46  LBFGS_STOP,
106  };
107 
111  enum {
150  };
151 
157  typedef struct {
166  int m;
167 
176  double epsilon;
177 
185  int past;
186 
197  double delta;
198 
208 
215 
222 
230  double min_step;
231 
239  double max_step;
240 
246  double ftol;
247 
257  double wolfe;
258 
269  double gtol;
270 
278  double xtol;
280 
281 
299  typedef double (*lbfgs_evaluate_t)(void *instance, const double *x,
300  double *g, const int n, const double step);
301 
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);
325 
326  /*
327  A user must implement a function compatible with ::lbfgs_evaluate_t (evaluation
328  callback) and pass the pointer to the callback function to lbfgs() arguments.
329  Similarly, a user can implement a function compatible with ::lbfgs_progress_t
330  (progress callback) to obtain the current progress (e.g., variables, function
331  value, ||G||, etc) and to cancel the iteration process if necessary.
332  Implementation of a progress callback is optional: a user can pass \c NULL if
333  progress notification is not necessary.
334 
335  In addition, a user must preserve two requirements:
336  - The number of variables must be multiples of 16 (this is not 4).
337  - The memory block of variable array ::x must be aligned to 16.
338 
339  This algorithm terminates an optimization
340  when:
341 
342  ||G|| < \epsilon \cdot \max(1, ||x||) .
343 
344  In this formula, ||.|| denotes the Euclidean norm.
345  */
346 
384  int lbfgs(int n, double *x, double *ptr_fx,
385  lbfgs_evaluate_t proc_evaluate, lbfgs_progress_t proc_progress,
386  void *instance, lbfgs_parameter_t *param);
387 
397 
409  double* lbfgs_malloc(int n);
410 
417  void lbfgs_free(double *x);
418 
419  /*
420  * LBFGS Interface Class
421  */
423  {
424  public:
425  LbfgsSolver();
426  virtual ~LbfgsSolver(){}
427 
428  bool initialize(NlpDescription* nlproblem, double constraints_weight = 1.);
429  void optimize();
430 
431  bool& verbose() { return verbose_; }
432  lbfgs_parameter_t& opt_params() { return opt_params_; }
433 
434  private:
435  // definition of cost evaluation
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);
439 
440  // definition of how to show progress of the optimization
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 );
444 
445  private:
446  NlpDescription* nlproblem_;
447  double constraints_weight_;
448  bool verbose_, initialized_;
449  lbfgs_parameter_t opt_params_;
450  int nvars_, ncons_, *user_info_, opt_status_, length_of_address_to_this_;
451  };
452 
453 }
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
Definition: Cone.hpp:20
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