tactic_get_help method
\brief Return a string containing a description of parameters accepted by the given tactic.
def_API('Z3_tactic_get_help', STRING, (_in(CONTEXT), _in(TACTIC)))
Implementation
Z3_string tactic_get_help(
Z3_context c,
Z3_tactic t,
) {
return _tactic_get_help(
c,
t,
);
}