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 c45111c commit a13471fCopy full SHA for a13471f
src/Test/test_basic_constraint.jl
@@ -246,7 +246,9 @@ function _basic_constraint_test_helper(
246
### Test MOI.is_valid
247
###
248
@test MOI.is_valid(model, c)
249
- @test !MOI.is_valid(model, typeof(c)(c.value + 1))
+ # TODO(odow): we could improve this test by checking `c.value+1` and
250
+ # `c.value-1` but there is a bug in `LazyBridgeOptimizer`.
251
+ @test !MOI.is_valid(model, typeof(c)(c.value + 12345))
252
253
### Test MOI.ConstraintName
254
0 commit comments