mirror of
https://github.com/Z3Prover/z3
synced 2026-07-01 12:58:54 +00:00
adding proof hint output
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
eb10ab1633
commit
6485808b49
6 changed files with 191 additions and 137 deletions
|
|
@ -158,8 +158,10 @@ namespace smt {
|
|||
for (literal l : ante)
|
||||
m_lits.push_back(ctx.literal2expr(~l));
|
||||
m_lits.push_back(ctx.literal2expr(lit));
|
||||
proof_ref pr(m.mk_app(symbol("smt"), 0, nullptr, m.mk_proof_sort()), m);
|
||||
update(clause_proof::status::th_lemma, m_lits, pr);
|
||||
auto st = clause_proof::status::th_lemma;
|
||||
auto pr = justification2proof(st, &const_cast<justification &>(jst));
|
||||
// proof_ref pr(m.mk_app(symbol("smt"), 0, nullptr, m.mk_proof_sort()), m);
|
||||
update(st, m_lits, pr);
|
||||
}
|
||||
|
||||
void clause_proof::del(clause& c) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue