Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use meaningful names for dragonfly coords.
[simgrid.git] / examples / s4u / routing-get-clusters / s4u-routing-get-clusters.cpp
index 1710fee..33b02dd 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -31,9 +31,8 @@ int main(int argc, char* argv[])
     for (auto d : dragonfly_clusters) {
       XBT_INFO("%s' dragonfly topology:", d->get_cname());
       for (int i = 0; i < d->get_host_count(); i++) {
-        unsigned int coords[4];
-        d->rankId_to_coords(i, coords);
-        XBT_INFO("   %d: (%u, %u, %u, %u)", i, coords[0], coords[1], coords[2], coords[3]);
+        const simgrid::kernel::routing::DragonflyZone::Coords coords = d->rankId_to_coords(i);
+        XBT_INFO("   %d: (%u, %u, %u, %u)", i, coords.group, coords.chassis, coords.blade, coords.node);
       }
     }
   }