goal_size method

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

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