You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using JuMP, SCIP
model = Model(SCIP.Optimizer)
@variable(model, a, Bin)
@variable(model, b, Bin)
@expression(model, c, a && b)
@variable(model, d)
@variable(model, e)
@constraint(model, c => {d == e})
print(model)
Works if i launder
c
through a variable, but then scipopt/SCIP.jl#282 is hit.The text was updated successfully, but these errors were encountered: