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