pounce-rs 0.7.0

Single-crate facade for solving nonlinear programs with POUNCE from Rust: re-exports the TNLP trait, the IpoptApplication driver, and the supporting types in one place (plus a prelude).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# pounce-rs

Single-crate facade for solving nonlinear programs with [POUNCE](https://github.com/jkitchin/pounce)
from Rust. Re-exports the `TNLP` problem trait (`pounce-nlp`), the
`IpoptApplication` driver (`pounce-algorithm`), and the supporting scalar
types (`pounce-common`) in one place, plus a `prelude`:

```rust
use pounce_rs::prelude::*;
```

This is the Rust counterpart to the one-import `import pounce` Python API. It
contains re-exports only; see the crate docs for a complete HS071 example.