From 0229ab2811a209e49e73d79c76850e1c0fbda41c Mon Sep 17 00:00:00 2001 From: Lev Nachmanson Date: Mon, 2 Mar 2020 11:41:53 -0800 Subject: [PATCH] remove debug code Signed-off-by: Lev Nachmanson --- src/smt/theory_lra.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/smt/theory_lra.cpp b/src/smt/theory_lra.cpp index 4508511b1..74df2c20d 100644 --- a/src/smt/theory_lra.cpp +++ b/src/smt/theory_lra.cpp @@ -2199,13 +2199,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(l.expl().size()); false_case_of_check_nla(); - i++; } break; }