Originally posted by: T_O
First of all: I don't work for IBM, but I have been using CPLEX for a while now.
Second: You have to remember that all modern LP solvers do not use the simplex tableau method but save some kind of LU-factorization of the basis matrix (revised simplex method). So CPLEX does not maintain the tableau in memory. In the C API one can calculate (!) the tableau using the advanced routines.
Maybe, you can tell us the reason why you need the tableau. Maybe, we find another solution to your Problem.
For testing purposes, you can export a sav file from concert and read it into the C API. But there will almost always be a better solution.
Best regards,
Thomas
#CPLEXOptimizers#DecisionOptimization