Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
added code and tesh files for ns3 wifi example
[simgrid.git] / examples / s4u / platform-properties / s4u-platform-properties.cpp
index 1720303ef4dbb8f5727b2623235a7a5e89ac5982..d3d173ad2a6a8eb37c0e808a5cc04f2a979da6af 100644 (file)
@@ -90,7 +90,7 @@ static void bob(std::vector<std::string> /*args*/)
   XBT_INFO("   Zone property: date -> %s", root->get_property("date"));
   XBT_INFO("   Zone property: author -> %s", root->get_property("author"));
 
-  /* Get the property list of current bob process */
+  /* Get the property list of current bob actor */
   const std::unordered_map<std::string, std::string>* props = simgrid::s4u::Actor::self()->get_properties();
   const char* noexist = "UnknownProcessProp";
   XBT_ATTRIB_UNUSED const char* value;
@@ -119,8 +119,8 @@ int main(int argc, char* argv[])
 
   XBT_INFO("There are %zu hosts in the environment", totalHosts);
   std::vector<simgrid::s4u::Host*> hosts = e.get_all_hosts();
-  for (unsigned int i = 0; i < hosts.size(); i++)
-    XBT_INFO("Host '%s' runs at %.0f flops/s", hosts[i]->get_cname(), hosts[i]->get_speed());
+  for (simgrid::s4u::Host const* host : hosts)
+    XBT_INFO("Host '%s' runs at %.0f flops/s", host->get_cname(), host->get_speed());
 
   e.load_deployment(argv[2]);
   e.run();