I want to implement cutting plane method in python using an built in improve lementation of simplex method and then applying cutting plane method on top of it (using scipy.linprog or pulp to implement Simplex method to get the feasible solution)
The issue is that simplex solution that displays all equations and tableau is needed so that I can then solve for extra constraints for cutting plane method. However, Linprog only gives me solution for optimal values of x and slack variables and it doesn't give me the whole set of equations (tableau) on which I can select an equation with non-integer and then apply the cut. Is there a way wherein I can use an inbuilt simplex method in Python and then implement cutting plane on it on my own?
(I don't want to implement integer constraints in pulp to just get integer soltion, I want to implement cutting plane on top of simplex table on my own).
many thanks for your help!