3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-10 03:07:07 +00:00

fix #3713: too much caching in dom-simplify for OR expressions

This commit is contained in:
Nuno Lopes 2020-04-06 12:11:26 +01:00
parent 346d852bbd
commit 3313590b95

View file

@ -331,6 +331,8 @@ expr_ref dom_simplify_tactic::simplify_and_or(bool is_and, app * e) {
if (!assert_expr(r, !is_and)) { \
pop(scope_level() - old_lvl); \
r = is_and ? m.mk_false() : m.mk_true(); \
if (!is_and) \
reset_cache(); \
return r; \
}
_SIMP_ARG(arg);