mk_mod method
\brief Create an AST node representing \ccode{arg1 mod arg2}.
The arguments must have int type.
def_API('Z3_mk_mod', AST, (_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_mod(
Z3_context c,
Z3_ast arg1,
Z3_ast arg2,
) {
return _mk_mod(
c,
arg1,
arg2,
);
}