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

Method IntSMin

smt/expr.cpp:350–357  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348}
349
350expr expr::IntSMin(unsigned bits) {
351 if (bits == 0)
352 return {};
353 expr v = mkUInt(1, 1);
354 if (bits > 1)
355 v = v.concat(mkUInt(0, bits - 1));
356 return v;
357}
358
359expr expr::IntSMax(unsigned bits) {
360 if (bits == 0)

Callers

nothing calls this directly

Calls 1

concatMethod · 0.45

Tested by

no test coverage detected