Originally posted by: Laser.Cho
Hi. I'm using latest Cplex studio in windows 7.
I tried a really simple code below for test. I expected 2 optimized solutions.(it has 2 solution)
===============
dvar float x;
dexpr float res=(x+2)*(x-2)*(x+4)*(x-4);
minimize
res;
===============
The result is error.
The only message I got is "CPLEX(default) cannot extract expression: (((x+2)*(x+(-2)))*(x+4))*(x+(-4)).
I cannot understand why it happened. Quadratic equation is not surported?
#CPLEXOptimizers#DecisionOptimization