|
Variable listing |
Top Previous Next |
|
When GAMS generates the model by default the data for the first three cases in existence under each named variable will be generated. A portion of the output (just that for the first two named variables) for the each for the three example models is
Column Listing SOLVE farmPROBLEM Using LP From line 10 ---- Z Z (.LO, .L, .UP = -INF, 0, +INF) 1 OBJ ---- Xcorn Xcorn (.LO, .L, .UP = 0, 0, +INF) -109 OBJ 1 land 6 labor
Column Listing SOLVE PROBLEM Using MCP From line 7 ---- P P (.LO, .L, .UP = 0, 0, +INF) 1 PDemand -1 PSupply ---- Qd Qd (.LO, .L, .UP = 0, 0, +INF) 0.3 PDemand -1 Equilibrium
Column Listing SOLVE wall Using NLP From line 28 ---- ba ba (.LO, .L, .UP = -INF, 1, +INF) (1) r1 (-1) r2 1 b1 2 b2 ---- so4 so4 (.LO, .L, .UP = -INF, 1, +INF) (1) r1 (-1) r3 -1 b1 -2 b2 Notes:
lower bound gives the lower bound assigned to this variable (often zero) starting level gives the starting point assigned to this variable (often zero) upper bound gives the lower bound assigned to this variable (often positive infinity + INF).
More details on how the variable list is formed and controlled in terms of content and length are discussed in the Standard Output chapter while more on nonlinear terms appears in the NLP and MCP Model Types chapter. |