Metadata-Version: 2.1
Name: pyqplib
Version: 0.1.1
Summary: Package to read and evaluate QPLIB instance files
Author: Christoph Hansknecht
Author-email: christoph.hansknecht@tu-clausthal.de
Requires-Python: >=3.9,<3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: numpy (>=1.20,<2.0)
Requires-Dist: scipy (>=1.10.1,<2.0.0)
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)

