mk_is_int method

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

\brief Check if a real number is an integer.

\sa Z3_mk_int2real \sa Z3_mk_real2int

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

Implementation

Z3_ast mk_is_int(
  Z3_context c,
  Z3_ast t1,
) {
  return _mk_is_int(
    c,
    t1,
  );
}