3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

cheap_eqs tree

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-06-15 16:08:53 -07:00
parent 274323b818
commit f7f9c15676
3 changed files with 28 additions and 20 deletions

View file

@ -61,7 +61,6 @@ public :
B & bp) {
bound_analyzer_on_row a(row, bj, rs, row_or_term_index, bp);
a.analyze();
a.analyze_eq();
}
private:
@ -327,22 +326,7 @@ private:
default:
break;
}
}
void analyze_eq() {
switch (m_bp.lp().settings().cheap_eqs()) {
case 0:
return;
case 1:
m_bp.cheap_eq_tree(m_row_index);
break;
case 2:
m_bp.cheap_eq_table(m_row_index);
break;
default:
return;
}
}
}
};
}