mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
additional bit-vector propagators (#4695)
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
549753845e
commit
8691ef1d4d
17 changed files with 423 additions and 121 deletions
|
@ -110,7 +110,7 @@ namespace bv {
|
|||
}
|
||||
|
||||
if (glue < max_glue)
|
||||
v.m_glue = 2*glue <= sz ? 0 : glue;
|
||||
v.m_glue = (sz > 6 && 2*glue <= sz) ? 0 : glue;
|
||||
}
|
||||
|
||||
void ackerman::remove(vv* p) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue