mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
This commit is contained in:
parent
a48d3fdbb1
commit
0dd5a5e576
3 changed files with 2 additions and 3 deletions
|
@ -149,6 +149,7 @@ public:
|
|||
bool is_store(expr* n) const { return is_app_of(n, m_fid, OP_STORE); }
|
||||
bool is_const(expr* n) const { return is_app_of(n, m_fid, OP_CONST_ARRAY); }
|
||||
bool is_ext(expr* n) const { return is_app_of(n, m_fid, OP_ARRAY_EXT); }
|
||||
bool is_ext(func_decl const* f) const { return is_decl_of(f, m_fid, OP_ARRAY_EXT); }
|
||||
bool is_map(expr* n) const { return is_app_of(n, m_fid, OP_ARRAY_MAP); }
|
||||
bool is_union(expr* n) const { return is_app_of(n, m_fid, OP_SET_UNION); }
|
||||
bool is_intersect(expr* n) const { return is_app_of(n, m_fid, OP_SET_INTERSECT); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue