3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-13 12:25:37 +00:00

Update seq_regex_bisim.cpp

This commit is contained in:
Nikolaj Bjorner 2026-06-10 15:03:46 -07:00 committed by GitHub
parent 513b81253b
commit 207e6b439a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -82,9 +82,7 @@ namespace seq {
// Reject regexes mentioning free variables; the symbolic
// derivative engine introduces (:var 0) only after we call it
// ourselves, so any pre-existing variable would be a free var.
if (!is_ground(r))
return false;
return true;
return is_ground(r);
}
/*