3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-06 00:50:54 +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:
copilot-swe-agent[bot] 2026-02-16 01:27:08 +00:00 committed by Nikolaj Bjorner
parent fbda3029fd
commit d958036711
5 changed files with 20 additions and 17 deletions

View file

@ -1333,9 +1333,7 @@ namespace smt {
}
else {
pr = get_proof(consequent, conflict);
proof * prs[2] = { m_lit2proof[not_l], pr};
SASSERT(prs[0] && prs[1]);
pr = m.mk_unit_resolution(2, prs);
pr = m.mk_unit_resolution({ m_lit2proof[not_l], pr });
}
expr_ref_buffer lits(m);
for (literal lit : m_lemma) {