Originally posted by: SystemAdmin
You are solving an LP, so the MIP solution limit parameter does not help.
What exactly do you want to do? I guess you want to find a first optimal vertex of the LP, and then enumerate all other alternative optimal vertices as well.
This cannot be done directly with CPLEX, but you can probe the optimal face of your polyhedron with random objective function vectors. First, optimize the problem as usual. Then look at the reduced costs and dual solution values. Fix all variables with non-zero reduced costs to their current value, and convert all inequalities with non-zero dual solution value into equations. Now, you have changed the problem such that is forced to stay on the optimal face of the polyhedron. Finally, you can just change the objective function in a random fashion and reoptimize to (hopefully) get to a different optimal vertex. But please note that this only samples the set of optimal vertices and is not a systematic or exhaustive approach.
Tobias
#CPLEXOptimizers#DecisionOptimization