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:
parent
7811a91bad
commit
12dd6d786b
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue