We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f75153 commit fef1596Copy full SHA for fef1596
src/smt/theory_lra.cpp
@@ -3499,7 +3499,8 @@ class theory_lra::imp {
3499
flet<bool> _svalid(s_validating, true);
3500
context nctx(m, ctx().get_fparams(), ctx().get_params());
3501
add_background(nctx);
3502
- nctx.assert_expr(m.mk_not(m.mk_eq(x->get_expr(), y->get_expr())));
+ expr_ref neq(m.mk_not(m.mk_eq(x->get_expr(), y->get_expr())), m);
3503
+ nctx.assert_expr(neq);
3504
cancel_eh<reslimit> eh(m.limit());
3505
scoped_timer timer(1000, &eh);
3506
lbool r = nctx.check();
0 commit comments