probe_dec_ref method

void probe_dec_ref(
  1. Z3_context c,
  2. Z3_probe p
)

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