stats_get_uint_value method

int stats_get_uint_value(
  1. Z3_context c,
  2. Z3_stats s,
  3. int idx
)

\brief Return the unsigned value of the given statistical data.

\pre idx < Z3_stats_size(c, s) && Z3_stats_is_uint(c, s)

def_API('Z3_stats_get_uint_value', UINT, (_in(CONTEXT), _in(STATS), _in(UINT)))

Implementation

int stats_get_uint_value(
  Z3_context c,
  Z3_stats s,
  int idx,
) {
  return _stats_get_uint_value(
    c,
    s,
    idx,
  );
}