fixedpoint_get_param_descrs method

Z3_param_descrs fixedpoint_get_param_descrs(
  1. Z3_context c,
  2. Z3_fixedpoint f
)

\brief Return the parameter description set for the given fixedpoint object.

\sa Z3_fixedpoint_get_help \sa Z3_fixedpoint_set_params

def_API('Z3_fixedpoint_get_param_descrs', PARAM_DESCRS, (_in(CONTEXT), _in(FIXEDPOINT)))

Implementation

Z3_param_descrs fixedpoint_get_param_descrs(
  Z3_context c,
  Z3_fixedpoint f,
) {
  return _fixedpoint_get_param_descrs(
    c,
    f,
  );
}