<p dir="ltr">Dear all,</p>
<p dir="ltr">I have a question about how to format quadratic constraints in SCIP.</p>
<p dir="ltr">Say we have [x y] as variables, and we want the constraint 0 <= xy <= 5.</p>
<p dir="ltr">Is it better to aim for a symmetric matrix</p>
<p dir="ltr">0 <= [x y] [0.0  0.5] [x] <=5<br>
               [0.5  0.0] [y]</p>
<p dir="ltr">or for an upper triangular</p>
<p dir="ltr">0 <= [x y] [0.0  1.0] [x] <=5<br>
               [0.0  0.0] [y]</p>
<p dir="ltr">or it doesn't matter? Theoretically they both produce the same constraint, but maybe there are some numerical issues or  implementation details in SCIP by which one should be preferred.</p>
<p dir="ltr">Many thanks,</p>
<p dir="ltr">Ramon.</p>