3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-10 03:07:07 +00:00
This commit is contained in:
Lev Nachmanson 2024-01-17 14:02:38 -10:00
commit 6e9a938533

View file

@ -3499,7 +3499,8 @@ public:
flet<bool> _svalid(s_validating, true);
context nctx(m, ctx().get_fparams(), ctx().get_params());
add_background(nctx);
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);
nctx.assert_expr(neq);
cancel_eh<reslimit> eh(m.limit());
scoped_timer timer(1000, &eh);
lbool r = nctx.check();