probe_dec_ref method
\brief Decrement the reference counter of the given probe.
def_API('Z3_probe_dec_ref', VOID, (_in(CONTEXT), _in(PROBE)))
Implementation
void probe_dec_ref(
Z3_context c,
Z3_probe p,
) {
return _probe_dec_ref(
c,
p,
);
}