3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-05 22:06:03 +00:00

revert the change

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-10-28 19:00:46 -07:00
parent 51f6dfeb83
commit 54257b6629
62 changed files with 120 additions and 765 deletions

View file

@ -2589,7 +2589,6 @@ public:
if (valy >= sz || valy == 0)
return true;
unsigned k = valy.get_unsigned();
//non-deterministic order no change: too complex
sat::literal signx = mk_literal(a.mk_ge(x, a.mk_int(N/2)));
sat::literal eq;
expr* xdiv2k;
@ -3372,13 +3371,7 @@ public:
tout << " ==> " << pp(x) << " = " << pp(y) << "\n";
);
std::function<expr*(void)> fn = [&]() { //non-deterministic order change start
{
auto get_expr_1 = x->get_expr();
auto get_expr_2 = y->get_expr();
return m.mk_eq(get_expr_1, get_expr_2);
}
//non-deterministic order change end };
std::function<expr*(void)> fn = [&]() { return m.mk_eq(x->get_expr(), y->get_expr()); };
scoped_trace_stream _sts(th, fn);
if (params().m_arith_validate)
@ -3878,7 +3871,6 @@ public:
flet<bool> _svalid(s_validating, true);
context nctx(m, ctx().get_fparams(), ctx().get_params());
add_background(nctx);
//non-deterministic order no change: too complex
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());