Remove commented printf : Node %d's distance from root is %d\n

This commit is contained in:
Akkadius 2015-01-20 01:34:40 -06:00
parent 767781bd0a
commit 236e3e0d72

View File

@ -474,7 +474,6 @@ printf("The tree's root is %d\n", shortest_node);
n->longest_path = 0;
else
n->longest_path = root_dists[n->node_id];
//printf("Node %d's distance from root is %d\n", n->node_id, root_dists[n->node_id]);
}