]> AND Public Git Repository - simgrid.git/blobdiff - examples/cpp/plugin-prodcons/s4u-plugin-prodcons.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move an example to the right section, and document it
[simgrid.git] / examples / cpp / plugin-prodcons / s4u-plugin-prodcons.cpp
index 0ad772e5323b62a2edf132f8c036b84da6a13f56..4483303c251846eea6cc1d62cf25d6c5c5232028 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-2023. 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. */
@@ -58,15 +58,15 @@ int main(int argc, char* argv[])
   // Platform creation
   auto* cluster = sg4::create_star_zone("cluster");
   for (int i = 0; i < 8; i++) {
-    std::string hostname = std::string("node-") + std::to_string(i) + ".simgrid.org";
+    std::string hostname = "node-" + std::to_string(i) + ".simgrid.org";
 
     const auto* host = cluster->create_host(hostname, "1Gf");
 
-    std::string linkname = std::string("cluster") + "_link_" + std::to_string(i);
+    std::string linkname = "cluster_link_" + std::to_string(i);
     const auto* link     = cluster->create_split_duplex_link(linkname, "1Gbps");
 
-    cluster->add_route(host->get_netpoint(), nullptr, nullptr, nullptr,
-                       std::vector<sg4::LinkInRoute>{{link, sg4::LinkInRoute::Direction::UP}}, true);
+    cluster->add_route(host->get_netpoint(), nullptr, nullptr, nullptr, {{link, sg4::LinkInRoute::Direction::UP}},
+                       true);
   }
 
   auto* router = cluster->create_router("cluster_router");
@@ -78,11 +78,11 @@ int main(int argc, char* argv[])
   XBT_INFO("Transfers are done in %s mode", pc->get_transfer_mode().c_str());
 
   for (int i = 0; i < 3; i++) {
-    std::string hostname = std::string("node-") + std::to_string(i) + ".simgrid.org";
-    sg4::Actor::create("ingester-" + std::to_string(i), sg4::Host::by_name(hostname), &ingester, i, pc);
+    std::string hostname = "node-" + std::to_string(i) + ".simgrid.org";
+    sg4::Actor::create("ingester-" + std::to_string(i), e.host_by_name(hostname), &ingester, i, pc);
 
-    hostname = std::string("node-") + std::to_string(i + 3) + ".simgrid.org";
-    sg4::Actor::create("retriever-" + std::to_string(i), sg4::Host::by_name(hostname), &retriever, pc);
+    hostname = "node-" + std::to_string(i + 3) + ".simgrid.org";
+    sg4::Actor::create("retriever-" + std::to_string(i), e.host_by_name(hostname), &retriever, pc);
   }
 
   e.run();