Originally posted by: SystemAdmin
[BigInJapan said:]
Example:
[pre]
max 2x1 + 2x2 - x3
s.t. x1 + x2 - x3 = 0
x1 <= 5<br /> x2 <= 4<br /> x3<= 7<br /> (x1, x2, x3 >= 0)
The optimal solution is any x = (q1, q2, 7) where q1 + q2 = 7.
In this case how CPLEX finds optimal x?
If I want to adjust x1 is more preferable then x2, I have to set its TF (target function) coef to 2.0001 (for example).
After that solution would be single and equals to (5, 2, 7). But this operation may react dual variables to change. Am I right?
And my question is - can CPLEX order variables other way then TF? If yes, this is no need to set up TF coef for preferable variable.
#CPLEXOptimizers#DecisionOptimization