tactic_using_params method
\brief Return a tactic that applies \c t using the given set of parameters.
def_API('Z3_tactic_using_params', TACTIC, (_in(CONTEXT), _in(TACTIC), _in(PARAMS)))
Implementation
Z3_tactic tactic_using_params(
Z3_context c,
Z3_tactic t,
Z3_params p,
) {
return _tactic_using_params(
c,
t,
p,
);
}