MCPcopy Create free account
hub / github.com/AliveToolkit/alive2 / mkUInt

Method mkUInt

smt/expr.cpp:195–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193}
194
195expr expr::mkUInt(uint64_t n, Z3_sort sort) {
196 return Z3_mk_unsigned_int64(ctx(), n, sort);
197}
198
199expr expr::mkUInt(uint64_t n, unsigned bits) {
200 return bits ? mkUInt(n, mkBVSort(bits)) : expr();

Callers

nothing calls this directly

Calls 3

mkBVSortFunction · 0.85
sortMethod · 0.80
exprClass · 0.70

Tested by

no test coverage detected