3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 21:38:44 +00:00

remove debug code

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-03-02 11:41:53 -08:00
parent 8dcec5c4ad
commit 4917475f9e

View file

@ -2131,13 +2131,11 @@ public:
switch (r) {
case l_false: {
m_stats.m_nla_lemmas += lv.size();
int i = 0;
for(const nla::lemma & l : lv) {
m_lemma = l; //todo avoid the copy
m_explanation = l.expl();
m_stats.m_nla_explanations += static_cast<unsigned>(l.expl().size());
false_case_of_check_nla();
i++;
}
break;
}