From 0a1491d907dab0e3c59fd5b5c1ade3a7028f8d99 Mon Sep 17 00:00:00 2001 From: Matthew Barr Date: Mon, 15 Aug 2016 11:55:08 +1000 Subject: [PATCH] Remove problematic debug output --- src/nfagraph/ng_rose.cpp | 3 --- src/nfagraph/ng_violet.cpp | 4 ---- 2 files changed, 7 deletions(-) diff --git a/src/nfagraph/ng_rose.cpp b/src/nfagraph/ng_rose.cpp index 24570a01..137ac5cc 100644 --- a/src/nfagraph/ng_rose.cpp +++ b/src/nfagraph/ng_rose.cpp @@ -1784,9 +1784,6 @@ bool doNetflowCut(RoseInGraph &ig, const vector &to_cut, set lits = getLiteralSet(h, e); compressAndScore(lits); cut_lits[e] = lits; - - DEBUG_PRINTF("cut lit '%s'\n", - dumpString(*cut_lits[e].begin()).c_str()); } /* if literals are underlength bail or if it involves a forbidden edge*/ diff --git a/src/nfagraph/ng_violet.cpp b/src/nfagraph/ng_violet.cpp index 26fb0ef5..94e0a998 100644 --- a/src/nfagraph/ng_violet.cpp +++ b/src/nfagraph/ng_violet.cpp @@ -1290,10 +1290,6 @@ bool doNetflowCut(NGHolder &h, sanitizeAndCompressAndScore(lits); cut_lits[e] = lits; - - DEBUG_PRINTF("cut lit '%s' %u->%u\n", - dumpString(*cut_lits[e].begin()).c_str(), - h[source(e, h)].index, h[target(e, h)].index); } /* if literals are underlength bail or if it involves a forbidden edge*/