Skip to content

Commit 9757413

Browse files
fix #4163
1 parent cb5c2d3 commit 9757413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/smt/dyn_ack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ namespace smt {
398398
}
399399

400400
literal dyn_ack_manager::mk_eq(expr * n1, expr * n2) {
401-
app * eq = m_context.mk_eq_atom(n1, n2);
401+
app_ref eq(m_context.mk_eq_atom(n1, n2), m);
402402
m_context.internalize(eq, true);
403403
literal l = m_context.get_literal(eq);
404404
TRACE("dyn_ack", tout << "eq:\n" << mk_pp(eq, m) << "\nliteral: ";

0 commit comments

Comments
 (0)