If I have multiple positive decision variables that I want to constrain based on some factor to be == 0, is it better to add one constraint or multiple?
Here is a greatly simplified example:
var1 == 0
var5 == 0
var7 == 0
or
var1 + var5 + var7 == 0
I inherited a model using the summation method and I was wondering why it was done that way. I know I could run some experiments but I was just wondering if anyone knows the answer.