mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
290b4dfabc
commit
a4d81b2847
3 changed files with 11 additions and 8 deletions
|
@ -140,7 +140,6 @@ namespace sat {
|
|||
r |= ((n.lut() >> w) & 0x1) << j;
|
||||
}
|
||||
a.set_table(r);
|
||||
std::cout << a << "\n";
|
||||
insert_cut(v, a, cs);
|
||||
}
|
||||
|
||||
|
@ -149,6 +148,9 @@ namespace sat {
|
|||
literal l1 = child(n, 0);
|
||||
literal l2 = child(n, 1);
|
||||
literal l3 = child(n, 2);
|
||||
VERIFY(&cs != &m_cuts[l1.var()]);
|
||||
VERIFY(&cs != &m_cuts[l2.var()]);
|
||||
VERIFY(&cs != &m_cuts[l3.var()]);
|
||||
for (auto const& a : m_cuts[l1.var()]) {
|
||||
for (auto const& b : m_cuts[l2.var()]) {
|
||||
cut ab;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue