tactic_apply method
\brief Apply tactic \c t to the goal \c g.
\sa Z3_tactic_apply_ex
def_API('Z3_tactic_apply', APPLY_RESULT, (_in(CONTEXT), _in(TACTIC), _in(GOAL)))
Implementation
Z3_apply_result tactic_apply(
Z3_context c,
Z3_tactic t,
Z3_goal g,
) {
return _tactic_apply(
c,
t,
g,
);
}