3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-04-30 19:30:40 -07:00
parent cb5c2d3a98
commit 97574134e0

View file

@ -398,7 +398,7 @@ namespace smt {
}
literal dyn_ack_manager::mk_eq(expr * n1, expr * n2) {
app * eq = m_context.mk_eq_atom(n1, n2);
app_ref eq(m_context.mk_eq_atom(n1, n2), m);
m_context.internalize(eq, true);
literal l = m_context.get_literal(eq);
TRACE("dyn_ack", tout << "eq:\n" << mk_pp(eq, m) << "\nliteral: ";