#ipopt #optimization #non-linear #constrained #unsafe

sys ipopt-sys

Raw unsafe Rust bindings to the Ipopt non-linear optimization library

12 releases

0.5.5 Nov 26, 2020
0.5.4 Mar 8, 2020
0.5.1 Apr 23, 2019
0.5.0 Mar 28, 2019
0.1.0 Mar 1, 2018

#5 in #ipopt

Download history 1/week @ 2024-01-02 8/week @ 2024-01-09 3/week @ 2024-01-16 3/week @ 2024-01-23 5/week @ 2024-02-13 19/week @ 2024-02-20 33/week @ 2024-02-27 22/week @ 2024-03-05 29/week @ 2024-03-12 32/week @ 2024-03-19 29/week @ 2024-03-26

116 downloads per month
Used in ipopt

MIT/Apache

75KB
1.5K SLoC

Rust 1K SLoC // 0.1% comments C++ 411 SLoC // 0.0% comments

ipopt-sys

This package provides unsafe Rust bindings to the Ipopt non-linear optimization library. Unlike most other wrappers for Ipopt, we link against a custom C interface called CNLP, which mimics Ipopt's own C++ TNLP interface. This serves two purposes:

  1. It helps users who are already familiar with Ipopt's C++ interface to transition into Rust.
  2. It persists the Ipopt solver instance between subsequent solves, which eliminates unnecessary additional allocations for initial data and bounds.

This also means that you will need a working C++ compiler and a C++ standard library implementation available since the CNLP shim currently uses it in the implementation.

Contributions are welcome!

Building

We provide a number of options for building Ipopt from source as well as different methods for retrieving binaries. Building also requires the openssl and libclang system libraries. Currently supported methods for getting the Ipopt library:

  1. Using pkg-config to find a system installed static or dynamic library.

  2. Manually check system lib directories for a dynamic library.

  3. Build Ipopt from source. You will need fortran compiler libs installed (e.g. libgfortran) and one of the following options for linear solvers:

    a. Linking against MKL. (set MKLROOT environment variable to specify a custom MKL installation path or if the system path is not found.)

    b. Building with MUMPS/METIS and linking against a system installed OpenBLAS library (Linux) or Accelerate framework (macOS). If no system BLAS/LAPACK libraries are found, then the default netlib implementations will be pulled and built.

  4. Download a prebuilt dynamic Ipopt library from JuliaOpt.

Each of these steps are at various levels of polish and currently tested on Linux and macOS systems only.

MacOS

Since macOS doesn't ship with the fortran library, you would need to install it manually. Using homebrew you may either install gcc or gfortran directly with

$ brew install gcc

or

$ brew cask install gfortran

respectively. Since homebrew doesn't link these automatically from /usr/local/lib, you will have to create the symlink manually with

$ ln -s /usr/local/Cellar/gcc/8.3.0_2/lib/gcc/8/libgfortran.dylib /usr/local/lib/libgfortran.dylib

if you have libgfortran from the gcc set (mind the gcc version). Otherwise create the symlink with

$ ln -s /usr/local/gfortran/lib/libgfortran.dylib /usr/local/lib/libgfortran.dylib

if you installed gfortran directly.

Ultimately, no matter which method you choose, libgfortran.dylib must be available through the linker search paths.

License

This repository is licensed under either of

at your option.

No runtime deps

~0–5MB
~85K SLoC