Skip to content

Commit

Permalink
fix #4327
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Jul 26, 2020
1 parent 4be6927 commit e8ef9a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/smt/smt_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ namespace {

void collect_param_descrs(param_descrs & r) override {
m_context.collect_param_descrs(r);
insert_timeout(r);
insert_rlimit(r);
insert_max_memory(r);
insert_ctrl_c(r);
}

void collect_statistics(statistics & st) const override {
Expand Down
4 changes: 3 additions & 1 deletion src/smt/theory_lra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1738,6 +1738,7 @@ class theory_lra::imp {
TRACE("arith", /*display(tout);*/
ctx().display(tout);
);

switch (check_lia()) {
case l_true:
break;
Expand All @@ -1748,7 +1749,7 @@ class theory_lra::imp {
st = FC_CONTINUE;
break;
}

switch (check_nla()) {
case l_true:
break;
Expand All @@ -1759,6 +1760,7 @@ class theory_lra::imp {
st = FC_GIVEUP;
break;
}

if (delayed_assume_eqs()) {
++m_stats.m_assume_eqs;
return FC_CONTINUE;
Expand Down

0 comments on commit e8ef9a8

Please sign in to comment.