3
0
Fork 0
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:
Nikolaj Bjorner 2024-11-17 16:58:18 -08:00
parent c7ea4964f2
commit 84447b7031
6 changed files with 17 additions and 123 deletions

View file

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