apply_result_get_num_subgoals method
\brief Return the number of subgoals in the \c Z3_apply_result object returned by #Z3_tactic_apply.
\sa Z3_apply_result_get_subgoal
def_API('Z3_apply_result_get_num_subgoals', UINT, (_in(CONTEXT), _in(APPLY_RESULT)))
Implementation
int apply_result_get_num_subgoals(
Z3_context c,
Z3_apply_result r,
) {
return _apply_result_get_num_subgoals(
c,
r,
);
}