mk_fpa_to_real method

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

\brief Conversion of a floating-point term into a real-numbered term.

Produces a term that represents the conversion of the floating-point term \c t into a real number. Note that this type of conversion will often result in non-linear constraints over real terms.

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

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

Implementation

Z3_ast mk_fpa_to_real(
  Z3_context c,
  Z3_ast t,
) {
  return _mk_fpa_to_real(
    c,
    t,
  );
}