get_probe_name method

Z3_string get_probe_name(
  1. Z3_context c,
  2. int i
)

\brief Return the name of the \c i probe.

\pre i < Z3_get_num_probes(c)

\sa Z3_get_num_probes

def_API('Z3_get_probe_name', STRING, (_in(CONTEXT), _in(UINT)))

Implementation

Z3_string get_probe_name(
  Z3_context c,
  int i,
) {
  return _get_probe_name(
    c,
    i,
  );
}