tactic_get_param_descrs method

Z3_param_descrs tactic_get_param_descrs(
  1. Z3_context c,
  2. Z3_tactic t
)

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