mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 01:13:18 +00:00
logging support for theory axioms
This commit is contained in:
parent
279413412d
commit
28c03ed1de
26 changed files with 508 additions and 127 deletions
|
@ -981,7 +981,7 @@ app * bv_util::mk_bv(unsigned n, expr* const* es) {
|
|||
uint8_t hexDigit = 0;
|
||||
unsigned curLength = (4 - n % 4) % 4;
|
||||
for (unsigned i = 0; i < n; ++i) {
|
||||
hexDigit << 1;
|
||||
hexDigit <<= 1;
|
||||
++curLength;
|
||||
if (m_manager.is_true(es[i])) {
|
||||
hexDigit |= 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue