mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 18:50:26 +00:00
cave in to supporting proofs (partially) in simplifiers, updated doc
This commit is contained in:
parent
aaabbfb594
commit
80033e8744
36 changed files with 157 additions and 108 deletions
|
@ -48,12 +48,13 @@ public:
|
|||
push_todo.reset();
|
||||
push_todo_prs.reset();
|
||||
apply_nnf(d.fml(), push_todo, push_todo_prs, r, pr);
|
||||
m_fmls.update(i, dependent_expr(m, r, d.dep()));
|
||||
m_fmls.update(i, dependent_expr(m, r, mp(d.pr(), pr), d.dep()));
|
||||
for (expr* f : push_todo) {
|
||||
if (!m.inc())
|
||||
break;
|
||||
m_rewriter(f, r, pr);
|
||||
m_fmls.add(dependent_expr(m, r, d.dep()));
|
||||
if (f != r)
|
||||
m_fmls.add(dependent_expr(m, r, pr, d.dep()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue