get_tactic_name method

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

\brief Return the name of the idx tactic.

\pre i < Z3_get_num_tactics(c)

\sa Z3_get_num_tactics

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

Implementation

Z3_string get_tactic_name(
  Z3_context c,
  int i,
) {
  return _get_tactic_name(
    c,
    i,
  );
}