Skip to content

Commit

Permalink
fix regressions #6703
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Apr 27, 2023
1 parent c48dc69 commit d5231f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/smt/theory_lra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,7 @@ class theory_lra::imp {
}
bool giveup = false;
final_check_status st = FC_DONE;
// m_final_check_idx = 0; // remove to experiment.
m_final_check_idx = 0; // remove to experiment.
unsigned old_idx = m_final_check_idx;
switch (is_sat) {
case l_true:
Expand Down Expand Up @@ -1713,12 +1713,12 @@ class theory_lra::imp {

switch (m_final_check_idx) {
case 0:
st = check_lia();
break;
case 1:
if (assume_eqs())
st = FC_CONTINUE;
break;
case 1:
st = check_lia();
break;
case 2:
st = check_nla();
break;
Expand Down

0 comments on commit d5231f8

Please sign in to comment.