stats_dec_ref method

void stats_dec_ref(
  1. Z3_context c,
  2. Z3_stats s
)

\brief Decrement the reference counter of the given statistics object.

def_API('Z3_stats_dec_ref', VOID, (_in(CONTEXT), _in(STATS)))

Implementation

void stats_dec_ref(
  Z3_context c,
  Z3_stats s,
) {
  return _stats_dec_ref(
    c,
    s,
  );
}