Suppose we have the following:
proc optmodel;
var x{1..3} <= 1 integer;
I want the variables to be 0 and 1 only. How do I specify this in the above statement?
Suppose we have the following:
proc optmodel;
var x{1..3} <= 1 integer;
I want the variables to be 0 and 1 only. How do I specify this in the above statement?