get_numerator method
\brief Return the numerator (as a numeral AST) of a numeral AST of sort Real.
\pre Z3_get_ast_kind(c, a) == Z3_NUMERAL_AST
def_API('Z3_get_numerator', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast get_numerator(
Z3_context c,
Z3_ast a,
) {
return _get_numerator(
c,
a,
);
}