From a0a93291eb23d19511bd15bebef3f6bd739103dc Mon Sep 17 00:00:00 2001 From: odow Date: Mon, 24 Jun 2024 13:40:18 +1200 Subject: [PATCH 1/2] Fix test return for new HiGHS version --- test/test_model.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_model.jl b/test/test_model.jl index 7ada222..827e854 100644 --- a/test/test_model.jl +++ b/test/test_model.jl @@ -72,8 +72,6 @@ function test_unbounded() MOI.set(model, MOI.ObjectiveSense(), MOI.MAX_SENSE) MOI.optimize!(model) @test MOI.get(model, MOI.TerminationStatus()) == MOI.DUAL_INFEASIBLE - @test MOI.get(model, MOI.PrimalStatus()) == MOI.NO_SOLUTION - @test MOI.get(model, MOI.DualStatus()) == MOI.NO_SOLUTION return end From 212d089eb126fa61e8ca5064bf4098cb77a93355 Mon Sep 17 00:00:00 2001 From: odow Date: Mon, 24 Jun 2024 14:00:43 +1200 Subject: [PATCH 2/2] Update --- test/algorithms/Lexicographic.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/algorithms/Lexicographic.jl b/test/algorithms/Lexicographic.jl index efa444a..7588dfb 100644 --- a/test/algorithms/Lexicographic.jl +++ b/test/algorithms/Lexicographic.jl @@ -148,8 +148,6 @@ function test_unbounded() MOI.set(model, MOI.ObjectiveSense(), MOI.MAX_SENSE) MOI.optimize!(model) @test MOI.get(model, MOI.TerminationStatus()) == MOI.DUAL_INFEASIBLE - @test MOI.get(model, MOI.PrimalStatus()) == MOI.NO_SOLUTION - @test MOI.get(model, MOI.DualStatus()) == MOI.NO_SOLUTION end return end