Originally posted by: SystemAdmin
CPLEX can handle quadratic constraints only if they take (or can be converted to) the form "convex function <= constant". You have a constraint that looks like (R+R')*T <= B where R, T and B are variables (Route, Throughput, Bandwidth IIRC). The product R*T is quadratic but
not convex, so CPLEX rejects the constraint. Unless you can reformulate your model to eliminate that constraint, I think you'll need to shift to a nonlinear (and in fact nonconvex) program solver.
/Paul
Mathematicians are like Frenchmen: whenever you say something to them, they translate it into their own language, and at once it is something entirely different. (Goethe)
#CPLEXOptimizers#DecisionOptimization