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

Private GIT Repository
Update description of fairstrategy algorithm.
[loba.git] / deployment.cpp
index 5659db655f4ba75780f74fc21d2d3dbbff9df50d..70bd8b3f15bf4c670703b04509d25f6e307eef8b 100644 (file)
@@ -59,7 +59,7 @@ void deployment_generator::deploy()
             XBT_DEBUG("%s/neighbor -> \"%s\"", hostname, neighbor_name);
             xbt_dynar_push_as(args, const char*, neighbor_name);
         }
-        MSG_set_function(hostname, "loba", args);
+        MSG_set_function(hostname, "compute", args);
         xbt_dynar_reset(args);
     }
     xbt_dynar_free(&args);
@@ -138,9 +138,8 @@ void deployment_torus::generate()
     // here width == ceil(sqrt(size))
 
     unsigned first_on_last_line = (size() - 1) - (size() - 1) % width;
-    XBT_DEBUG("torus size = %u ; width = %u ; height = %u ; foll = %u",
-              (unsigned )size(), width,
-              (unsigned )(size() / width + !!(size() % width)),
+    XBT_DEBUG("torus size = %zu ; width = %u ; height = %zu ; foll = %u",
+              size(), width, size() / width + !!(size() % width),
               first_on_last_line);
     for (unsigned i = 0; i < size(); i++) {
         unsigned next_line;