|
Fx |
Top Previous Next |
|
Variables can be fixed at a value. In turn GAMS sets the lower and upper bound to that value. The attribute is addressed using .Fx as follows
Variable fixed level is variablename.fx (setdependency)
These are commonly used in calculations pre solution to specify or revise the value. Example: Move.fx("boston","seattle")=1.; solve transport using lp minimizing cost; display move.lo,move.fx; Notes:
|