5 releases

0.1.1 Oct 19, 2023
0.1.0 Oct 13, 2023
0.1.0-alpha.3 Oct 10, 2023
0.1.0-alpha.2 Oct 9, 2023

#723 in Algorithms

Download history 95/week @ 2024-01-06 86/week @ 2024-01-13 112/week @ 2024-01-20 131/week @ 2024-01-27 123/week @ 2024-02-03 136/week @ 2024-02-10 143/week @ 2024-02-17 35/week @ 2024-02-24 154/week @ 2024-03-02 37/week @ 2024-03-09 55/week @ 2024-03-16 26/week @ 2024-03-23 119/week @ 2024-03-30 131/week @ 2024-04-06 48/week @ 2024-04-13 126/week @ 2024-04-20

427 downloads per month
Used in 2 crates (via egobox-ego)

Custom license

490KB
12K SLoC

Rust 8K SLoC // 0.0% comments C 4K SLoC // 0.3% comments

slsqp - a pure Rust implementation

tests crates.io docs

SLSQP is a sequential quadratic programming algorithm for nonlinearly constrained gradient-based optimization based on the implementation by Dieter Kraft and described in:

Dieter Kraft, "A software package for sequential quadratic programming", Technical Report DFVLR-FB 88-28, Institut für Dynamik der Flugsysteme, Oberpfaffenhofen, July 1988. Dieter Kraft, "Algorithm 733: TOMP–Fortran modules for optimal control calculations," ACM Transactions on Mathematical Software, vol. 20, no. 3, pp. 262-281 (1994).

The Rust code was generated/adapted from the C code from the NLopt project (version 2.7.1). The algorithme is available here as a minimize function. An initial transpilation was done with c2rust then the code was manually edited to make it work. The callback mechanism is inspired from the Rust binding of NLopt, namely rust-nlopt.

Example

cargo run --example paraboloid

License

The project is released under MIT License.

Dependencies