Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed May 9, 2024
1 parent bb88dac commit 9c259a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridges/Bridges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ julia> MOI.Bridges.runtests(
model -> MOI.add_constrained_variable(model, MOI.ZeroOne()),
model -> begin
x, _ = MOI.add_constrained_variable(model, MOI.Integer())
MOI.add_constraint(model, 1.0 * x in MOI.Interval(0.0, 1.0))
MOI.add_constraint(model, 1.0 * x, MOI.Interval(0.0, 1.0))
end,
)
```
Expand Down

0 comments on commit 9c259a6

Please sign in to comment.