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

fix bogus decompose_ite

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-03-24 14:43:56 -07:00
parent a5c0ecafda
commit bc5818e12d
2 changed files with 4 additions and 5 deletions

View file

@ -3564,7 +3564,6 @@ expr_ref seq_rewriter::simplify_path(expr* elem, expr* path) {
expr_ref seq_rewriter::mk_der_antimirov_union(expr* r1, expr* r2) {
verbose_stream() << "union " << r1->get_id() << " " << r2->get_id() << "\n";
return mk_der_op(_OP_RE_ANTIMIROV_UNION, r1, r2);
}