`dual` is a package for dual problem.


License
Apache-2.0
Install
pip install dual==0.1.0

Documentation

dual

dual is a package for dual problem.

Installation

pip install dual

Example

from dual import dual

print(dual("""\
min c^T x
A x >= b
x >= 0
"""))
max b^T y
A^T y <= c
y >= 0