fpa_get_numeral_sign_bv method

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

\brief Retrieves the sign of a floating-point literal as a bit-vector expression.

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

Remarks: NaN is an invalid argument.

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

Implementation

Z3_ast fpa_get_numeral_sign_bv(
  Z3_context c,
  Z3_ast t,
) {
  return _fpa_get_numeral_sign_bv(
    c,
    t,
  );
}