goal_dec_ref method
\brief Decrement the reference counter of the given goal.
def_API('Z3_goal_dec_ref', VOID, (_in(CONTEXT), _in(GOAL)))
Implementation
void goal_dec_ref(
Z3_context c,
Z3_goal g,
) {
return _goal_dec_ref(
c,
g,
);
}