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

Method mkInt

smt/expr.cpp:208–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208expr expr::mkInt(int64_t n, Z3_sort sort) {
209 return Z3_mk_int64(ctx(), n, sort);
210}
211
212expr expr::mkInt(int64_t n, unsigned bits) {
213 return bits ? mkInt(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