mk_is_int method
\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,
);
}