Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 5.19 KB

Readme.md

File metadata and controls

57 lines (44 loc) · 5.19 KB

Optimization-Solvers

Numerical optimization solvers for unconstrained and simple bound-constrained convex optimization problems. The solvers are implemented in Rust and are based on the ACM Collected Algorithms. The solvers are designed to be easy to use and to be easily integrated into existing codebases.

Note: Currently the unique non-rust solver is L-BFGS-B, which uses code bindings to the original Fortran implementation.

Modules and submodules of this crate follow the bipartition presented in [Nocedal, J., & Wright, S. J. (2006). Numerical optimization] regarding optimization algorithms:

  • Line search methods:
    • Steepest descent methods
    • Newton methods
    • Quasi-Newton methods
    • Conjugate gradient methods
  • Trust region methods:

Quadratic In the figure above: minimization of quadratic function using gradient descent solver

Todo

Links

Books and articles on convex optimization:

Nice community questions