From 62dc731b5b44a6a054fa770a898e4ea246c32c55 Mon Sep 17 00:00:00 2001 From: Lev Nachmanson Date: Tue, 17 Dec 2019 10:54:38 -1000 Subject: [PATCH] remove some debug code Signed-off-by: Lev Nachmanson --- src/math/lp/nla_grobner.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/math/lp/nla_grobner.cpp b/src/math/lp/nla_grobner.cpp index 29ee6047b..95d50ad34 100644 --- a/src/math/lp/nla_grobner.cpp +++ b/src/math/lp/nla_grobner.cpp @@ -695,10 +695,6 @@ bool grobner_core::find_b_c(const nex* ab, const nex* ac, nex_mul*& b, nex_mul*& b = fb.mk(); c = fc.mk(); TRACE("nla_grobner", tout << "b=" << *b << ", c=" <<*c << "\n";); - // debug region - nex_mul *a = divide_ignore_coeffs_perform(m_nex_creator.clone(ab), *b); - SASSERT(ab->get_degree() == a->get_degree() + b->get_degree()); - SASSERT(ac->get_degree() == a->get_degree() + c->get_degree()); SASSERT(test_find_b_c(ab, ac, b, c)); return true; }