Originally posted by: TobiasAchterberg
The error message says that this operation can only be executed if there is a factorization of the current basis matrix resident in memory. If you have just solved your LP, this should be the case. But if you have applied problem modification methods afterwards, the factorization gets destroyed. If you still want to investigate the current basis, then you need to trigger a fresh factorization of the basis matrix. This can be done by setting the simplex iteration limit parameter to 0 and then solving the model again. It means that CPLEX will stop immediately (because it will hit the iteration limit), but still perform a fresh factorization of the current basis matrix.
#CPLEXOptimizers#DecisionOptimization