mk_fpa_is_zero method

Z3_ast mk_fpa_is_zero(
  1. Z3_context c,
  2. Z3_ast t
)

\brief Predicate indicating whether \c t is a floating-point number with zero value, i.e., +zero or -zero.

\param c logical context \param t term of FloatingPoint sort

\c t must have FloatingPoint sort.

def_API('Z3_mk_fpa_is_zero', AST, (_in(CONTEXT),_in(AST)))

Implementation

Z3_ast mk_fpa_is_zero(
  Z3_context c,
  Z3_ast t,
) {
  return _mk_fpa_is_zero(
    c,
    t,
  );
}