mk_unsigned_int method
\brief Create a numeral of a int, bit-vector, or finite-domain sort.
This function can be used to create numerals that fit in a machine unsigned integer. It is slightly faster than #Z3_mk_numeral since it is not necessary to parse a string.
\sa Z3_mk_numeral
def_API('Z3_mk_unsigned_int', AST, (_in(CONTEXT), _in(UINT), _in(SORT)))
Implementation
Z3_ast mk_unsigned_int(
Z3_context c,
int v,
Z3_sort ty,
) {
return _mk_unsigned_int(
c,
v,
ty,
);
}