Metadata-Version: 2.4
Name: pyqplib
Version: 0.1.6
Summary: Package to read and evaluate QPLIB instance files
License-File: LICENSE
Author: Christoph Hansknecht
Author-email: christoph.hansknecht@tu-clausthal.de
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: numpy (>=2.0)
Requires-Dist: scipy (>=1.14)
Description-Content-Type: text/markdown

[![PyPI version](https://badge.fury.io/py/pyqplib.svg)](https://badge.fury.io/py/pyqplib)

# PyQPLIB

The package is designed to read [QPLIB](https://qplib.zib.de/) into Python. Usage:

    >>> import pyqplib
    >>> problem = pyqplib.read_problem("/path/to/file.qplib")
    >>> x0 = problem.x0
    >>> obj = problem.obj_val(x0)
    >>> cons = problem.cons_val(x0)

