Metadata-Version: 2.1
Name: cyhighs
Version: 0.1.2
Summary: Cython bindings to the HiGHS linear and mixed integer optimization solver
Keywords: linear programming,optimization,solver,HiGHS,linprog
Author-Email: Nardi Lam <mail@nardilam.nl>
License: MIT License
         
         Copyright (c) 2026 Nardi Lam
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
         
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Cython
Classifier: Topic :: Scientific/Engineering :: Mathematics
Project-URL: Homepage, https://github.com/nardilam/cyhighs
Project-URL: Repository, https://github.com/nardilam/cyhighs
Requires-Python: >=3.11
Requires-Dist: numpy>=1.23.2
Requires-Dist: scipy>=1.9.2
Description-Content-Type: text/markdown

# cyhighs

Cython bindings to the [HiGHS](https://highs.dev) linear and mixed integer
optimization solver. The solver is compiled from source and statically linked, so
an installed wheel has no external system dependencies beyond NumPy and SciPy.

`cyhighs` provides three interfaces at increasing levels of convenience. You can
hand the solver raw arrays, pass SciPy sparse matrices, or call a drop in
replacement for `scipy.optimize.linprog`.

## Installation

```bash
pip install cyhighs
```

## Documentation

Full documentation, including a user guide and the API reference, lives at
[nardi.github.io/cyhighs](https://nardi.github.io/cyhighs/).

There you will find a description of what the package is for, how it bundles the
HiGHS solver, an installation guide, and worked examples for each of the three
solver interfaces.
