3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-12 17:11:15 +00:00

Change OP_SET_UNION to OP_FINITE_SET_UNION

This commit is contained in:
Nikolaj Bjorner 2025-10-14 17:48:19 +02:00 committed by GitHub
parent 415787a631
commit 356e631750
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -830,7 +830,7 @@ public:
bool operator()(func_decl* f, unsigned num, expr* const* args, expr_ref& r) override {
switch (f->get_decl_kind()) {
case OP_SET_UNION:
case OP_FINITE_SET_UNION:
// x union y -> fresh
// x := fresh, y := empty
if (num == 2 && uncnstr(args[0]) && uncnstr(args[1])) {