remove debug output

This commit is contained in:
Dennis Luxen
2014-03-21 18:27:39 +01:00
parent 87f036e538
commit 9cc49f6ff3
3 changed files with 4 additions and 23 deletions
-10
View File
@@ -101,12 +101,6 @@ public:
_nodes.swap(nodes);
_edges.swap(edges);
for(unsigned i = 0; i < _numNodes; ++i)
{
SimpleLogger().Write(logDEBUG) << "edges of " << i << ": [" << BeginEdges(i) << "," << EndEdges(i) << ")";
}
#ifndef NDEBUG
Percent p(GetNumberOfNodes());
for(unsigned u = 0; u < GetNumberOfNodes(); ++u) {
@@ -135,10 +129,6 @@ public:
}
p.printIncrement();
}
for(unsigned i = 0; i < _numNodes; ++i)
{
SimpleLogger().Write(logDEBUG) << "edges of " << i << ": [" << BeginEdges(i) << "," << EndEdges(i) << ")";
}
#endif
}