mk_fpa_is_negative method
\brief Predicate indicating whether \c t is a negative floating-point number.
\param c logical context \param t term of FloatingPoint sort
\c t must have FloatingPoint sort.
def_API('Z3_mk_fpa_is_negative', AST, (_in(CONTEXT),_in(AST)))
Implementation
Z3_ast mk_fpa_is_negative(
Z3_context c,
Z3_ast t,
) {
return _mk_fpa_is_negative(
c,
t,
);
}