apply_result_get_num_subgoals method

int apply_result_get_num_subgoals(
  1. Z3_context c,
  2. Z3_apply_result r
)

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