Hey,
When looking through Coin-Or, I found they were referring to a constraint type called "free constraint". For instance here.
Does any one know what a free constraint is?
Thanks
|
|
Hey, When looking through Coin-Or, I found they were referring to a constraint type called "free constraint". For instance here. Does any one know what a free constraint is? Thanks |
|||
|
|
|
|
Basically, it's a linear expression whose value as a function of the variable values should be tracked, but is not bounded. Another way to think about it is that a constraint in a general form is b_u <= ax <= b_u, where the constraint is equality if b_l = b_u, less-or-equal if b_u is finite and b_l is (negative) infinite, and greater-or-equal if b_l is finite and b_u is infinite. Then a free constraint is one where both b_l and b_u are infinite. (BTW, "constraint programming" isn't a very good tag for this question.) |
||||||||
|