mirror of
https://github.com/Z3Prover/z3
synced 2025-06-03 12:51:22 +00:00
remove redundant is_seq() check
This commit is contained in:
parent
7811a91bad
commit
12dd6d786b
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ public:
|
||||||
|
|
||||||
bool is_string_term(expr const * n) const {
|
bool is_string_term(expr const * n) const {
|
||||||
sort * s = get_sort(n);
|
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 {
|
bool is_non_string_sequence(expr const * n) const {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue