fpa_is_numeral_inf method

bool fpa_is_numeral_inf(
  1. Z3_context c,
  2. Z3_ast t
)

\brief Checks whether a given floating-point numeral is a +oo or -oo.

\param c logical context \param t a floating-point numeral

def_API('Z3_fpa_is_numeral_inf', BOOL, (_in(CONTEXT), _in(AST)))

Implementation

bool fpa_is_numeral_inf(
  Z3_context c,
  Z3_ast t,
) {
  return _fpa_is_numeral_inf(
    c,
    t,
  );
}