'How to export simplex tabular using PULP
I want to solve a linear programming problem with python. Currently, I am using PULP. If I choose 'primalsimplex' method, is there any way for me to print the final simplex tabular?
Solution 1:[1]
No. First of all, PuLP is not a solver. It is a modeling tool, that is a front-end for a solver. Having said that, all practical LP solvers don't work with tableaux. They all use versions of the revised Simplex method. They have no tableaux and thus will never export them. Actually, they don't even allow exporting the basis inverse, because practical SImplex methods don't work directly with a basis inverse.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
