Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not use deprecated function in our examples/tests
[simgrid.git] / examples / s4u / platform-properties / s4u-platform-properties.cpp
index 2d9f388..f2a948d 100644 (file)
@@ -106,7 +106,7 @@ int main(int argc, char* argv[])
   size_t totalHosts = sg_host_count();
 
   XBT_INFO("There are %zu hosts in the environment", totalHosts);
-  std::vector<simgrid::s4u::Host*> hosts = e.getHostList();
+  std::vector<simgrid::s4u::Host*> hosts = e.getAllHosts();
   for (unsigned int i = 0; i < hosts.size(); i++)
     XBT_INFO("Host '%s' runs at %.0f flops/s", hosts[i]->getCname(), hosts[i]->getSpeed());