Originally posted by: SystemAdmin
[achterberg said:]
The method you are searching for is CPXbinvarow(). Note the additional 'a' in the name.
CPXbinvrow() returns one row in the basis inverse B^-1. CPXbinvarow() returns a row in the simplex tableau B^-1 * A.
Note that CPLEX does not manage the basis inverse or the tableau internally, which means that you can equally perform the multiplication with A yourself without more overhead than what CPXbinvarow() does. But of course, if you just want to calculate the tableau row and nothing else, CPXbinvarow() is more convenient.
#CPLEXOptimizers#DecisionOptimization