mirror of
https://github.com/Z3Prover/z3
synced 2025-06-21 13:23:39 +00:00
parent
31c3ac016a
commit
6f2b5696d5
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ public:
|
||||||
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);
|
||||||
m_rw(curr, new_curr, new_pr);
|
m_rw(curr, new_curr, new_pr);
|
||||||
if (produce_proofs) {
|
if (produce_proofs) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue