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