The linprog-modeler, akin to the PuLP interface, is a robust linear programming (LP) and mixed integer linear programming (MILP) modeler designed for the scipy.optimize.linprog
module and written in pure Python.
To employ this modeler in AtCoder contests, one must:
- Carefully copy the entirety of the lpmodeler/model.py script and incorporate it into your submission file.
- Develop your algorithmic solution within the submission.
For additional information and a concrete example, please consult the Submission Example.