param_descrs_to_string method

Z3_string param_descrs_to_string(
  1. Z3_context c,
  2. Z3_param_descrs p
)

\brief Convert a parameter description set into a string. This function is mainly used for printing the contents of a parameter description set.

def_API('Z3_param_descrs_to_string', STRING, (_in(CONTEXT), _in(PARAM_DESCRS)))

Implementation

Z3_string param_descrs_to_string(
  Z3_context c,
  Z3_param_descrs p,
) {
  return _param_descrs_to_string(
    c,
    p,
  );
}