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