I am trying to solve a linear programming problem of the form
minimise cT.x
A.x = b
x >= 0
for a transportation problem.
However, using CVXOPT requires defining the variables G.x <= h for the lp(G,h,A,b) solver.
I have tried creating my A and b matrices, and for the G and h matrices i use a identity matrix for G (multiplied by -1) and a vector of zeros for h, so as to impose the x>=0 constraints.
However, when i run my code, it returns a "singular KKT matrix".
Could anyone help me with what is the problem, or how i can run the CVXOPT solver without a G and h variables.