mirror of
https://github.com/Z3Prover/z3
synced 2025-08-17 08:42:15 +00:00
fix #5035
This commit is contained in:
parent
27db97c269
commit
180015a529
1 changed files with 1 additions and 1 deletions
|
@ -270,7 +270,7 @@ class lia2pb_tactic : public tactic {
|
||||||
expr_ref new_curr(m);
|
expr_ref new_curr(m);
|
||||||
proof_ref new_pr(m);
|
proof_ref new_pr(m);
|
||||||
unsigned size = g->size();
|
unsigned size = g->size();
|
||||||
for (unsigned idx = 0; idx < size; idx++) {
|
for (unsigned idx = 0; !g->inconsistent() && idx < size; idx++) {
|
||||||
expr * curr = g->form(idx);
|
expr * curr = g->form(idx);
|
||||||
expr_dependency * dep = nullptr;
|
expr_dependency * dep = nullptr;
|
||||||
m_rw(curr, new_curr, new_pr);
|
m_rw(curr, new_curr, new_pr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue