We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 626618c commit 7373703Copy full SHA for 7373703
1 file changed
test/runtests.jl
@@ -1161,7 +1161,11 @@ function test_time_limit_interrupt()
1161
F, S = MOI.ScalarAffineFunction{Float64}, MOI.EqualTo{Float64}
1162
# We've set N such that it cannot find the full IIS in the time
1163
# allowed.
1164
- @test MOI.get(iis, MOI.NumberOfConstraints{F,S}()) > 8
+ if N < 16
1165
+ @test MOI.get(iis, MOI.NumberOfConstraints{F,S}()) > 8
1166
+ else
1167
+ @test MOI.get(iis, MOI.NumberOfConstraints{F,S}()) >= 8
1168
+ end
1169
end
1170
1171
return
0 commit comments