Skip to content

Commit

Permalink
fix #5675
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Nov 19, 2021
1 parent 99d5215 commit 4928c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/theory_lra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3477,7 +3477,7 @@ class theory_lra::imp {
st = lp::lp_status::FEASIBLE;
lp().restore_x();
}
if (m_nla && st == lp::lp_status::OPTIMAL) {
if (m_nla && (st == lp::lp_status::OPTIMAL || st == lp::lp_status::UNBOUNDED)) {
st = lp::lp_status::FEASIBLE;
lp().restore_x();
}
Expand Down

0 comments on commit 4928c28

Please sign in to comment.