Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 365 Bytes

File metadata and controls

11 lines (8 loc) · 365 Bytes

PyPI version

PyQPLIB

The package is designed to read QPLIB 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)