goal_depth method

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

\brief Return the depth of the given goal. It tracks how many transformations were applied to it.

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

Implementation

int goal_depth(
  Z3_context c,
  Z3_goal g,
) {
  return _goal_depth(
    c,
    g,
  );
}