From: Francois Fleuret Date: Mon, 7 Jan 2013 09:42:22 +0000 (+0100) Subject: Updated a comment. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=commitdiff_plain;h=656afdeaf084a2b7d173f3710678d0c9bb0cc90a Updated a comment. --- diff --git a/mtp_graph.cc b/mtp_graph.cc index a7b942d..2abe52b 100644 --- a/mtp_graph.cc +++ b/mtp_graph.cc @@ -459,7 +459,9 @@ void MTPGraph::compute_dp_ordering() { while(already_processed < front) { // Here, nodes before already_processed can be ignored, nodes // before front were set to 0 predecessors during the previous - // iteration. We will add the + // iteration. During this new iteration, we have to visit the + // successors of these ones only, since they are the only ones + // potentially having now predecessors anymore. new_front = front; while(already_processed < front) { v = *(already_processed++);