mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
na
This commit is contained in:
parent
b1d167de5b
commit
03b5380a20
|
@ -48,6 +48,7 @@ public:
|
|||
Otherwise, (VAR 0) is stored in the first position, (VAR 1) in the second, and so on.
|
||||
*/
|
||||
expr_ref operator()(expr * n, unsigned num_args, expr * const * args);
|
||||
inline expr_ref operator()(expr* n, expr* arg) { return (*this)(n, 1, &arg); }
|
||||
inline expr_ref operator()(expr * n, expr_ref_vector const& args) { return (*this)(n, args.size(), args.data()); }
|
||||
inline expr_ref operator()(expr * n, var_ref_vector const& args) { return (*this)(n, args.size(), (expr*const*)args.data()); }
|
||||
inline expr_ref operator()(expr * n, app_ref_vector const& args) { return (*this)(n, args.size(), (expr*const*)args.data()); }
|
||||
|
|
Loading…
Reference in a new issue