We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c75d9f2 commit 1a0be93Copy full SHA for 1a0be93
test/test_JuMP.jl
@@ -32,7 +32,7 @@ function test_JuMP()
32
optimize!(model)
33
# Test that the solver found an optimal solution
34
if f == :truck_trailer || f == :quadrotor
35
- @test termination_status(model) == MOI.LOCALLY_INFEASIBLE
+ @test (termination_status(model) == MOI.LOCALLY_INFEASIBLE) || (termination_status(model) == MOI.ITERATION_LIMIT)
36
else
37
@test termination_status(model) == MOI.LOCALLY_SOLVED
38
end
0 commit comments