ipopt-rs
A safe Rust interface to the Ipopt non-linear optimization library.
From the Ipopt webpage:
Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package for large-scale nonlinear optimization. It is designed to find (local) solutions of mathematical optimization problems of the from
min f(x) x in R^n s.t. g_L <= g(x) <= g_U x_L <= x <= x_U
where
f(x): R^n --> R
is the objective function, andg(x): R^n --> R^m
are the constraint functions. The vectorsg_L
andg_U
denote the lower and upper bounds on the constraints, and the vectorsx_L
andx_U
are the bounds on the variablesx
. The functionsf(x)
andg(x)
can be nonlinear and nonconvex, but should be twice continuously differentiable. Note that equality constraints can be formulated in the above formulation by setting the corresponding components ofg_L
andg_U
to the same value.
This crate aims to
- Reduce the boilerplate, especially for setting up simple unconstrained problems
- Maintain flexiblity for advanced use cases
- Prevent common mistakes when defining optimization problems as early as possible using the type system and error checking.
Examples
Solve a simple unconstrained problem using L-BFGS: minimize (x - 1)^2 + (y -1)^2
use *;
use *;
See the tests for more examples including constrained optimization.
Getting Ipopt Binaries
As it stands, this library is still immature in terms of platform support. There is ongoing work to improve this. For instance Windows is not currently supported until I get a Windows machine or somebody else pitches in to provide the support ;)
For details on how Ipopt binaries are acquired see ipopt-sys.
License
This repository is licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or (http://www.apache.org/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.