get_decl_rational_parameter method

Z3_string get_decl_rational_parameter(
  1. Z3_context c,
  2. Z3_func_decl d,
  3. int idx
)

\brief Return the rational value, as a string, associated with a rational parameter.

\pre Z3_get_decl_parameter_kind(c, d, idx) == Z3_PARAMETER_RATIONAL

def_API('Z3_get_decl_rational_parameter', STRING, (_in(CONTEXT), _in(FUNC_DECL), _in(UINT)))

Implementation

Z3_string get_decl_rational_parameter(
  Z3_context c,
  Z3_func_decl d,
  int idx,
) {
  return _get_decl_rational_parameter(
    c,
    d,
    idx,
  );
}