Originally posted by: XavierMora
Now that I come to think of it, maybe it is this degeneracy, i.e. having a continuum of optima, what causes the problem. Could it be so?
Here is a very simple example of the kind of problems that I'm dealing with:
Minimize (x1 + x2 - x3 - x4)^2
under the constraints
- x1,x2,x3,x4 >= 0
- x1 + x3 = n1, an integer
- x2 + x4 = n2, an integer
- n1 + n2 = 2.
The optimal solutions are:
(x1, x2, x3, x4, n1, n2) = (1, 0, 1, 0, 2, 0)
(x1, x2, x3, x4, n1, n2) = (0, 1, 0, 1, 0, 2)
(x1, x2, x3, x4, n1, n2) = (a, 1-a, 1-a, a, 1, 1) for any a satisfying 0 <= a <= 1.
However, in this case there is no problem with Cplex getting stuck...
#DecisionOptimization#MathematicalProgramming-General