tactic_get_help method

Z3_string tactic_get_help(
  1. Z3_context c,
  2. Z3_tactic t
)

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