Metadata-Version: 2.4
Name: unopy
Version: 0.4.11
Summary: With Uno, finally take full control of your SQP/barrier solver for nonlinearly constrained optimization
Author-Email: Charlie Vanaret <vanaret@zib.de>, Alexis Montoison <amontoison@anl.gov>
Maintainer-Email: Charlie Vanaret <vanaret@zib.de>, Alexis Montoison <amontoison@anl.gov>
License-Expression: MIT
Project-URL: Repository, https://github.com/cvanaret/Uno
Project-URL: Issues, https://github.com/cvanaret/Uno/issues
Requires-Dist: numpy
Description-Content-Type: text/markdown

## unopy

`unopy` is the Python interface for [Uno](https://github.com/cvanaret/Uno), a modern and modular solver for nonlinearly constrained optimization.
Uno unifies Lagrange-Newton (**SQP** and **interior-point**) methods by breaking them down into a set of common building blocks such as constraint reformulation, step computation, and globalization.

## Installation

`unopy` is a registered Python package that can be installed via pip:

```bash
pip install unopy
```

unopy allows you to solve an optimization model described by callback functions.
An example of the Hock-Schittkowski model [hs015](https://vanderbei.princeton.edu/ampl/nlmodels/hs/hs015.mod) is available in the file [example_hs015.py](https://github.com/cvanaret/Uno/blob/main/interfaces/Python/example/example_hs015.py).

## Getting started

To get started with Uno, check out the [official documentation](https://unosolver.readthedocs.io/en/latest/interfaces/python/).