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

remove redundant is_seq() check

This commit is contained in:
Murphy Berzish 2017-04-27 21:24:40 -04:00
parent 7811a91bad
commit 12dd6d786b

View file

@ -275,7 +275,7 @@ public:
bool is_string_term(expr const * n) const {
sort * s = get_sort(n);
return (u.is_seq(s) && u.is_string(s));
return u.is_string(s);
}
bool is_non_string_sequence(expr const * n) const {