rcf_num_to_decimal_string method
\brief Convert the RCF numeral into a string in decimal notation.
def_API('Z3_rcf_num_to_decimal_string', STRING, (_in(CONTEXT), _in(RCF_NUM), _in(UINT)))
Implementation
Z3_string rcf_num_to_decimal_string(
Z3_context c,
Z3_rcf_num a,
int prec,
) {
return _rcf_num_to_decimal_string(
c,
a,
prec,
);
}