mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
parent
dd3e77107e
commit
cc2cd5b557
2 changed files with 13 additions and 7 deletions
|
@ -121,7 +121,7 @@ namespace sat {
|
|||
}
|
||||
return;
|
||||
}
|
||||
for (unsigned i = 0; i < n.size(); ++i) {
|
||||
for (unsigned i = n.size(); i-- > 0; ) {
|
||||
m_luts[i] = m_tables[i]->shift_table(a);
|
||||
}
|
||||
uint64_t r = 0;
|
||||
|
@ -138,6 +138,7 @@ namespace sat {
|
|||
r |= ((n.lut() >> w) & 0x1) << j;
|
||||
}
|
||||
a.set_table(r);
|
||||
std::cout << a << "\n";
|
||||
insert_cut(v, a, cs);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue