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