tactic_using_params method

Z3_tactic tactic_using_params(
  1. Z3_context c,
  2. Z3_tactic t,
  3. Z3_params p
)

\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,
  );
}