From 8faad26c3ccfcf467756bb9f1df53a0912570970 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Wed, 11 Aug 2021 09:46:35 -0700 Subject: [PATCH] #5454 --- src/sat/smt/arith_solver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sat/smt/arith_solver.cpp b/src/sat/smt/arith_solver.cpp index b33e12038..6ceea42f2 100644 --- a/src/sat/smt/arith_solver.cpp +++ b/src/sat/smt/arith_solver.cpp @@ -964,7 +964,7 @@ namespace arith { IF_VERBOSE(12, verbose_stream() << "final-check " << lp().get_status() << "\n"); SASSERT(lp().ax_is_correct()); - if (lp().get_status() != lp::lp_status::OPTIMAL) { + if (lp().get_status() != lp::lp_status::OPTIMAL || lp().has_changed_columns()) { switch (make_feasible()) { case l_false: get_infeasibility_explanation_and_set_conflict();