mirror of
https://github.com/Z3Prover/z3
synced 2026-04-26 13:53:33 +00:00
Add initializer_list overloads and update all call sites
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
fbda3029fd
commit
d958036711
5 changed files with 20 additions and 17 deletions
|
|
@ -1657,8 +1657,7 @@ namespace smt {
|
|||
proof * def = mk_clause_def_axiom(num_lits, lits, m.get_fact(pr));
|
||||
TRACE(gate_clause, tout << mk_ll_pp(def, m) << "\n";
|
||||
tout << mk_ll_pp(pr, m););
|
||||
proof * prs[2] = { def, pr };
|
||||
pr = m.mk_unit_resolution(2, prs);
|
||||
pr = m.mk_unit_resolution({ def, pr });
|
||||
}
|
||||
mk_clause(num_lits, lits, mk_justification(justification_proof_wrapper(*this, pr)));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue