3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 05:30:51 +00:00

cheap eqs on table

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-06-09 12:15:08 -07:00
parent b3bdce7837
commit ccc8651800
2 changed files with 92 additions and 6 deletions

View file

@ -334,10 +334,10 @@ private:
case 0:
return;
case 1:
m_bp.try_create_eq(m_row_index);
m_bp.cheap_eq_tree(m_row_index);
break;
case 2:
m_bp.try_create_eq_table(m_row_index);
m_bp.cheap_eq_table(m_row_index);
break;
default:
UNREACHABLE();