mk_real2int method

Z3_ast mk_real2int(
  1. Z3_context c,
  2. Z3_ast t1
)

\brief Coerce a real to an integer.

The semantics of this function follows the SMT-LIB standard for the function to_int

\sa Z3_mk_int2real \sa Z3_mk_is_int

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

Implementation

Z3_ast mk_real2int(
  Z3_context c,
  Z3_ast t1,
) {
  return _mk_real2int(
    c,
    t1,
  );
}