stats_get_key method

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

\brief Return the key (a string) for a particular statistical data.

\pre idx < Z3_stats_size(c, s)

def_API('Z3_stats_get_key', STRING, (_in(CONTEXT), _in(STATS), _in(UINT)))

Implementation

Z3_string stats_get_key(
  Z3_context c,
  Z3_stats s,
  int idx,
) {
  return _stats_get_key(
    c,
    s,
    idx,
  );
}