mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
bv fixes and tuning (#4703)
* heap size information * bv tuning * fix #4701 Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com> * throw on set-has-size #4700 Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ba5c9c3883
commit
b7ec4489a6
21 changed files with 339 additions and 169 deletions
|
@ -74,8 +74,13 @@ namespace euf {
|
|||
new_tmp();
|
||||
}
|
||||
other->m_count++;
|
||||
if (other->m_count > m_high_watermark)
|
||||
s.s().set_should_simplify();
|
||||
if (other->m_count > m_high_watermark) {
|
||||
if (other->is_cc)
|
||||
add_cc(other->a, other->b);
|
||||
else
|
||||
add_eq(other->a, other->b, other->c);
|
||||
other->m_count = 0;
|
||||
}
|
||||
inference::push_to_front(m_queue, other);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue