mirror of
https://github.com/Z3Prover/z3
synced 2025-10-19 22:00:31 +00:00
remove incremental mode from EUF, include statistics about restart vs propagation calls to sls
This commit is contained in:
parent
c7ea4964f2
commit
84447b7031
6 changed files with 17 additions and 123 deletions
|
@ -102,9 +102,9 @@ namespace sls {
|
|||
if (-m_range < n && n < m_range)
|
||||
return true;
|
||||
bool result = false;
|
||||
if (m_lo && !m_hi)
|
||||
if (m_lo)
|
||||
result = n < m_lo->value + m_range;
|
||||
else if (!m_lo && m_hi)
|
||||
if (!result && m_hi)
|
||||
result = n > m_hi->value - m_range;
|
||||
#if 0
|
||||
if (!result)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue