3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-18 22:57:30 -08:00
parent dd3e77107e
commit cc2cd5b557
2 changed files with 13 additions and 7 deletions

View file

@ -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);
}