From: Arnaud Giersch Date: Mon, 19 Sep 2011 06:34:43 +0000 (+0200) Subject: Cosmetic fix in comments. X-Git-Tag: v0.1~2 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/0bea2ea9634e0282a48e521a5a255d874ec34ea7?ds=sidebyside Cosmetic fix in comments. --- diff --git a/neighbor.h b/neighbor.h index b51dab1..0605206 100644 --- a/neighbor.h +++ b/neighbor.h @@ -39,7 +39,7 @@ private: double load; // the load information we know for it double debt; // the load we had to send to it, but // that we have not currently sent - // (in bookkeeping mode) + // (bookkeeping mode) double to_send; // the load we have to send to it }; diff --git a/process.cpp b/process.cpp index 1883464..423fc0e 100644 --- a/process.cpp +++ b/process.cpp @@ -321,7 +321,7 @@ double process::compute_load_to_send(double desired) void process::data_send(neighbor& nb) { double load_to_send; - if (opt::bookkeeping) { + if (opt::bookkeeping) { // bookkeeping double excess_load; if (opt::egocentric) excess_load = std::max(0.0, real_load - expected_load); @@ -331,7 +331,7 @@ void process::data_send(neighbor& nb) nb.get_debt())); if (load_to_send > 0.0) nb.set_debt(nb.get_debt() - load_to_send); - } else { + } else { // !bookkeeping load_to_send = compute_load_to_send(nb.get_to_send()); if (load_to_send > 0.0) nb.set_to_send(nb.get_to_send() - load_to_send);