Remove problematic debug output

This commit is contained in:
Matthew Barr 2016-08-15 11:55:08 +10:00
parent 87e32c9037
commit 0a1491d907
2 changed files with 0 additions and 7 deletions

View File

@ -1784,9 +1784,6 @@ bool doNetflowCut(RoseInGraph &ig, const vector<RoseInEdge> &to_cut,
set<ue2_literal> lits = getLiteralSet(h, e); set<ue2_literal> lits = getLiteralSet(h, e);
compressAndScore(lits); compressAndScore(lits);
cut_lits[e] = 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*/ /* if literals are underlength bail or if it involves a forbidden edge*/

View File

@ -1290,10 +1290,6 @@ bool doNetflowCut(NGHolder &h,
sanitizeAndCompressAndScore(lits); sanitizeAndCompressAndScore(lits);
cut_lits[e] = 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*/ /* if literals are underlength bail or if it involves a forbidden edge*/