From 0bea2ea9634e0282a48e521a5a255d874ec34ea7 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 19 Sep 2011 08:34:43 +0200 Subject: [PATCH] Cosmetic fix in comments. --- neighbor.h | 2 +- process.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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); -- 2.39.5