3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

left over bugs #5532

disabling complete const rewriting (temporarily) as it can loop
This commit is contained in:
Nikolaj Bjorner 2021-09-07 07:00:41 +02:00
parent be4df46f6f
commit 93415740b6
2 changed files with 6 additions and 1 deletions

View file

@ -599,7 +599,8 @@ namespace euf {
if (is_app(e))
for (expr* arg : *to_app(e))
args.push_back(e_internalize(arg));
mk_enode(e, args.size(), args.data());
if (!m_egraph.find(e))
mk_enode(e, args.size(), args.data());
}
attach_lit(lit, e);
}