mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 04:26:00 +00:00
added API to monitor clause inferences
See RELEASE_NOTES for more information examples pending.
This commit is contained in:
parent
77cbd89420
commit
07dd1065db
34 changed files with 505 additions and 122 deletions
|
@ -1626,9 +1626,11 @@ namespace smt {
|
|||
}
|
||||
mk_clause(num_lits, lits, mk_justification(justification_proof_wrapper(*this, pr)));
|
||||
}
|
||||
else {
|
||||
else if (pr && on_clause_active())
|
||||
// support logging of quantifier instantiations and other more detailed information
|
||||
mk_clause(num_lits, lits, mk_justification(justification_proof_wrapper(*this, pr)));
|
||||
else
|
||||
mk_clause(num_lits, lits, nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
void context::mk_root_clause(literal l1, literal l2, proof * pr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue