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

Private GIT Repository
Reindent.
[loba.git] / process.cpp
index 45d06211d7c830d475d4fa01d54c0315cc5c1f70..04c08c0a57bcb4771475c4f1849997c0b9c3ec22 100644 (file)
@@ -1,4 +1,5 @@
 #include <algorithm>
+#include <cmath>
 #include <functional>
 #include <iterator>
 #include <numeric>
@@ -36,6 +37,13 @@ process::process(int argc, char* argv[])
     if (argc < 2 || !(std::istringstream(argv[1]) >> real_load))
         throw std::invalid_argument("bad or missing initial load parameter");
 
+    double iload = trunc(real_load);
+    if (opt::integer_transfer && real_load != iload) {
+        XBT_WARN("Initial load %g is not an integer.  Truncate it.",
+                 real_load);
+        real_load = iload;
+    }
+
     neigh.assign(argv + 2, argv + argc);
 
     pneigh.reserve(neigh.size());
@@ -305,6 +313,8 @@ void process::ctrl_send(neighbor& nb)
 
 double process::compute_load_to_send(double desired)
 {
+    if (opt::integer_transfer)
+        desired = std::floor(desired);
     return desired >= opt::min_transfer_amount ? desired : 0.0;
 }
 
@@ -312,9 +322,14 @@ void process::data_send(neighbor& nb)
 {
     double load_to_send;
     if (opt::bookkeeping) {
-        load_to_send = compute_load_to_send(std::min(real_load, nb.get_debt()));
-        if (load_to_send > 0.0)
-            nb.set_debt(nb.get_debt() - load_to_send);
+        double excess_load = real_load - expected_load;
+        if (excess_load > 0.0) {
+            load_to_send = compute_load_to_send(std::min(excess_load,
+                                                         nb.get_debt()));
+            if (load_to_send > 0.0)
+                nb.set_debt(nb.get_debt() - load_to_send);
+        } else
+            load_to_send = 0.0;
     } else {
         load_to_send = compute_load_to_send(nb.get_to_send());
         if (load_to_send > 0.0)