mirror of
https://github.com/Z3Prover/z3
synced 2026-06-20 23:50:25 +00:00
set up model reconstruction trail
This commit is contained in:
parent
84af521514
commit
28668c6efc
8 changed files with 130 additions and 44 deletions
|
|
@ -25,6 +25,11 @@ void expr_replacer::operator()(expr * t, expr_ref & result, proof_ref & result_p
|
|||
operator()(t, result, result_pr, result_dep);
|
||||
}
|
||||
|
||||
void expr_replacer::operator()(expr* t, expr_ref& result, expr_dependency_ref& result_dep) {
|
||||
proof_ref result_pr(m());
|
||||
operator()(t, result, result_pr, result_dep);
|
||||
}
|
||||
|
||||
void expr_replacer::operator()(expr * t, expr_ref & result) {
|
||||
proof_ref pr(m());
|
||||
operator()(t, result, pr);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue