We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc33f81 commit ea7455eCopy full SHA for ea7455e
src/jump.jl
@@ -64,14 +64,14 @@ function JuMP.add_variable(
64
name * "_assess",
65
),
66
)
67
-
+
68
# forecast variables can't have bounds
69
if JuMP.has_lower_bound(forecast.plan)
70
@warn "Forecast variable lower bound will be removed."
71
JuMP.delete_lower_bound(forecast.plan)
72
JuMP.delete_lower_bound(forecast.assess)
73
end
74
75
if JuMP.has_upper_bound(forecast.plan)
76
@warn "Forecast variable upper bound will be removed."
77
JuMP.delete_upper_bound(forecast.plan)
0 commit comments