]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Cosmetic fix in comments.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 19 Sep 2011 06:34:43 +0000 (08:34 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 19 Sep 2011 12:58:17 +0000 (14:58 +0200)
neighbor.h
process.cpp

index b51dab1e19f0ee5bceb796f63467f84d43356149..0605206628614d950dd02f4bb1361b11d38ca826 100644 (file)
@@ -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
 };
index 1883464d5d3364427e1946388ffae150be211218..423fc0e0e3d5917931c198bd8ca97c82747f20f4 100644 (file)
@@ -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);