tactic_apply_ex method

Z3_apply_result tactic_apply_ex(
  1. Z3_context c,
  2. Z3_tactic t,
  3. Z3_goal g,
  4. Z3_params p,
)

\brief Apply tactic \c t to the goal \c g using the parameter set \c p.

\sa Z3_tactic_apply

def_API('Z3_tactic_apply_ex', APPLY_RESULT, (_in(CONTEXT), _in(TACTIC), _in(GOAL), _in(PARAMS)))

Implementation

Z3_apply_result tactic_apply_ex(
  Z3_context c,
  Z3_tactic t,
  Z3_goal g,
  Z3_params p,
) {
  return _tactic_apply_ex(
    c,
    t,
    g,
    p,
  );
}