goal_size method
\brief Return the number of formulas in the given goal.
def_API('Z3_goal_size', UINT, (_in(CONTEXT), _in(GOAL)))
Implementation
int goal_size(
Z3_context c,
Z3_goal g,
) {
return _goal_size(
c,
g,
);
}
\brief Return the number of formulas in the given goal.
def_API('Z3_goal_size', UINT, (_in(CONTEXT), _in(GOAL)))
int goal_size(
Z3_context c,
Z3_goal g,
) {
return _goal_size(
c,
g,
);
}