mirror of
https://github.com/Z3Prover/z3
synced 2025-08-13 14:40:55 +00:00
parent
bd3946677c
commit
4651bffafc
6 changed files with 86 additions and 83 deletions
|
@ -50,6 +50,8 @@ public:
|
|||
*/
|
||||
expr_ref operator()(expr * n, unsigned num_args, expr * const * args);
|
||||
inline expr_ref operator()(expr * n, expr_ref_vector const& args) { return (*this)(n, args.size(), args.c_ptr()); }
|
||||
inline expr_ref operator()(expr * n, var_ref_vector const& args) { return (*this)(n, args.size(), (expr*const*)args.c_ptr()); }
|
||||
inline expr_ref operator()(expr * n, app_ref_vector const& args) { return (*this)(n, args.size(), (expr*const*)args.c_ptr()); }
|
||||
inline expr_ref operator()(expr * n, ptr_vector<expr> const& args) { return (*this)(n, args.size(), args.c_ptr()); }
|
||||
void reset() { m_reducer.reset(); }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue