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

debug cheap_eqs

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-06-06 21:00:09 -07:00
parent 9c078c6d59
commit 110ab5e6ef
10 changed files with 81 additions and 64 deletions

View file

@ -330,7 +330,9 @@ private:
}
void analyze_eq() {
m_bp.try_create_eq(m_row_index);
if (m_bp.lp().settings().cheap_eqs()) {
m_bp.try_create_eq(m_row_index);
}
}
};