fpa_is_numeral_normal method
\brief Checks whether a given floating-point numeral is normal.
\param c logical context \param t a floating-point numeral
def_API('Z3_fpa_is_numeral_normal', BOOL, (_in(CONTEXT), _in(AST)))
Implementation
bool fpa_is_numeral_normal(
Z3_context c,
Z3_ast t,
) {
return _fpa_is_numeral_normal(
c,
t,
);
}