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