简体   繁体   中英

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?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM