mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
Moved is_int_expr into arith_recognizers
This commit is contained in:
parent
cb683389f6
commit
8b689ae27f
3 changed files with 253 additions and 250 deletions
|
@ -244,6 +244,8 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
bool is_int_expr(expr const * e) const;
|
||||
|
||||
bool is_le(expr const * n) const { return is_app_of(n, m_afid, OP_LE); }
|
||||
bool is_ge(expr const * n) const { return is_app_of(n, m_afid, OP_GE); }
|
||||
bool is_lt(expr const * n) const { return is_app_of(n, m_afid, OP_LT); }
|
||||
|
@ -533,4 +535,3 @@ inline app_ref operator>(app_ref const& x, app_ref const& y) {
|
|||
}
|
||||
|
||||
#endif /* ARITH_DECL_PLUGIN_H_ */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue