-
-
Notifications
You must be signed in to change notification settings - Fork 411
Closed
Description
In this example:
using JuMP, SCS
m = Model(with_optimizer(SCS.Optimizer))
@variable(m, -Inf <= x <= Inf)
@objective(m, Max, x)
@constraint(m, x <= 10)
optimize!(m)The bridges should not pass x - Inf in Nonpositives() and x + Inf in Nonnegatives() to the solver.
x-ref: jump-dev/SCS.jl#205
x-ref: jump-dev/SCS.jl#170
blegat