lpsolvers
Unified interface to Linear Programming (LP) solvers available in Python.
The library provides a one-stop shop solve_lp()
function with a
solver
keyword argument to select the backend solver. It solves
linear programs in standard form:
\[\begin{split}\begin{split}\begin{array}{ll}
\mbox{minimize} &
c^T x \\
\mbox{subject to}
& G x \leq h \\
& A x = b
\end{array}\end{split}\end{split}\]