get_numeral_string method
\brief Return numeral value, as a decimal string of a numeric constant term
\pre Z3_get_ast_kind(c, a) == Z3_NUMERAL_AST
def_API('Z3_get_numeral_string', STRING, (_in(CONTEXT), _in(AST)))
Implementation
Z3_string get_numeral_string(
Z3_context c,
Z3_ast a,
) {
return _get_numeral_string(
c,
a,
);
}