3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-19 07:06:28 +00:00

disable hoisting ite over union

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-06-17 16:26:38 -06:00
parent 29489c3bd8
commit f2e6d05c56

View file

@ -677,7 +677,7 @@ namespace seq {
auto xor_op = [&](expr *x, expr *y) { return mk_xor(x, y); };
switch (k) {
case OP_RE_UNION:
result = hoist_ite(a, b, union_op);
//result = hoist_ite(a, b, union_op);
if (!result)
result = mk_union_core(a, b);
break;