tactic_get_param_descrs method
\brief Return the parameter description set for the given tactic object.
def_API('Z3_tactic_get_param_descrs', PARAM_DESCRS, (_in(CONTEXT), _in(TACTIC)))
Implementation
Z3_param_descrs tactic_get_param_descrs(
Z3_context c,
Z3_tactic t,
) {
return _tactic_get_param_descrs(
c,
t,
);
}