X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/19e1048a7009c4144b0f361ad85fb9dff44761ea..14287649f6d60cc32e242db393d153987cbc71f8:/examples/cpp/plugin-prodcons/s4u-plugin-prodcons.cpp diff --git a/examples/cpp/plugin-prodcons/s4u-plugin-prodcons.cpp b/examples/cpp/plugin-prodcons/s4u-plugin-prodcons.cpp index d9eb7d888b..4483303c25 100644 --- a/examples/cpp/plugin-prodcons/s4u-plugin-prodcons.cpp +++ b/examples/cpp/plugin-prodcons/s4u-plugin-prodcons.cpp @@ -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); - auto* link = cluster->create_split_duplex_link(linkname, "1Gbps"); + 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{{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();