I am writing a linear program in LINGO to balance a drum using a minimum number of weights. My question is how do I limit a variable to a set of values? For example, if I wanted a variable called Weight to be limited to the values (0, 1, 2, 4, 5, or 10) how could I achieve this? I am very new to linear progamming.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The usual way to achieve this is by introducing several binary (0,1) indicator variables into the formulation. Let's say that
Now tie the indicator variables with the Original variable.
Now use X in the rest of your formulation. |
|||
|
|