Open hideakiv opened 1 year ago
Example: https://github.com/Argonne-National-Laboratory/DSP/blob/master/examples/cpp/farmer.cpp#L69
When the upper bound is set to 1e+20, the finite lower bound (e.g. 200, 240) is ignored.
1e+20
200
240
Solver: Gurobi 9.1.2
When the bound is set to 1e+20, Gurobi would output optimal status with a solution in the magnitude of 1e+20. This can be resolved by setting it to 1e+21.
1e+21
Example: https://github.com/Argonne-National-Laboratory/DSP/blob/master/examples/cpp/farmer.cpp#L69
When the upper bound is set to
1e+20
, the finite lower bound (e.g.200
,240
) is ignored.Solver: Gurobi 9.1.2