mk_fpa_is_infinite method
\brief Predicate indicating whether \c t is a floating-point number representing +oo or -oo.
\param c logical context \param t term of FloatingPoint sort
\c t must have FloatingPoint sort.
def_API('Z3_mk_fpa_is_infinite', AST, (_in(CONTEXT),_in(AST)))
Implementation
Z3_ast mk_fpa_is_infinite(
Z3_context c,
Z3_ast t,
) {
return _mk_fpa_is_infinite(
c,
t,
);
}