goal_num_exprs method

int goal_num_exprs(
  1. Z3_context c,
  2. Z3_goal g
)

\brief Return the number of formulas, subformulas and terms in the given goal.

def_API('Z3_goal_num_exprs', UINT, (_in(CONTEXT), _in(GOAL)))

Implementation

int goal_num_exprs(
  Z3_context c,
  Z3_goal g,
) {
  return _goal_num_exprs(
    c,
    g,
  );
}