X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/69aaa26fa5228c31e55086fa166479732a9cd1b7..bdfa117ce4f85c77d50219cb2e115d88d3f35f8e:/teshsuite/s4u/seal-platform/seal-platform.cpp diff --git a/teshsuite/s4u/seal-platform/seal-platform.cpp b/teshsuite/s4u/seal-platform/seal-platform.cpp index 512362d64f..f664448a89 100644 --- a/teshsuite/s4u/seal-platform/seal-platform.cpp +++ b/teshsuite/s4u/seal-platform/seal-platform.cpp @@ -69,8 +69,8 @@ static sg4::NetZone* create_zone(const sg4::NetZone* root, const std::string& id std::string hostname = id + "-cpu-" + std::to_string(i); auto* host = zone->create_host(hostname, 1e9); host->create_disk("disk-" + hostname, 1e9, 1e6); - auto* link = zone->create_link("link-" + hostname, 1e9); - zone->add_route(host->get_netpoint(), router, nullptr, nullptr, std::vector{link}); + const auto* link = zone->create_link("link-" + hostname, 1e9); + zone->add_route(host->get_netpoint(), router, nullptr, nullptr, {sg4::LinkInRoute(link)}); } return zone; } @@ -85,9 +85,9 @@ int main(int argc, char* argv[]) auto* root = sg4::create_full_zone("root"); auto* zoneA = create_zone(root, "A"); auto* zoneB = create_zone(root, "B"); - auto* link = root->create_link("root-link", 1e10); + const auto* link = root->create_link("root-link", 1e10); root->add_route(zoneA->get_netpoint(), zoneB->get_netpoint(), e.netpoint_by_name("routerA"), - e.netpoint_by_name("routerB"), std::vector{link}); + e.netpoint_by_name("routerB"), {sg4::LinkInRoute(link)}); std::vector host_list = e.get_all_hosts(); /* create the sender actor running on first host */