X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a984f41a503299f5d2e660422520a7d0e0e5391d..8f8f76af2d03714eaab97e3678acfdfc0e422cc9:/teshsuite/platforms/flatifier.cpp diff --git a/teshsuite/platforms/flatifier.cpp b/teshsuite/platforms/flatifier.cpp index 10bc1ae440..a61e7c5547 100644 --- a/teshsuite/platforms/flatifier.cpp +++ b/teshsuite/platforms/flatifier.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2008-2022. 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. */ @@ -9,7 +9,7 @@ #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" #include "simgrid/s4u/Link.hpp" -#include "src/surf/network_interface.hpp" +#include "src/kernel/resource/StandardLinkImpl.hpp" #include #include @@ -40,16 +40,15 @@ static void create_environment(xbt_os_timer_t parse_time, const std::string& pla { xbt_os_cputimer_start(parse_time); sg4::Engine::get_instance()->load_platform(platformFile); + sg4::Engine::get_instance()->seal_platform(); xbt_os_cputimer_stop(parse_time); } static void dump_hosts() { std::vector hosts = sg4::Engine::get_instance()->get_all_hosts(); - std::sort(hosts.begin(), hosts.end(), - [](const sg4::Host* a, const sg4::Host* b) { return a->get_name() < b->get_name(); }); - for (auto h : hosts) { + for (auto const* h : hosts) { std::printf(" get_cname(), h->get_speed()); const std::unordered_map* props = h->get_properties(); if (h->get_core_count() > 1) { @@ -57,8 +56,8 @@ static void dump_hosts() } // Sort the properties before displaying them, so that the tests are perfectly reproducible std::vector keys; - for (auto const& kv : *props) - keys.push_back(kv.first); + for (auto const& [key, _] : *props) + keys.push_back(key); if (not keys.empty()) { std::printf(">\n"); std::sort(keys.begin(), keys.end()); @@ -78,7 +77,7 @@ static void dump_links() std::sort(links.begin(), links.end(), [](const sg4::Link* a, const sg4::Link* b) { return a->get_name() < b->get_name(); }); - for (auto link : links) { + for (auto const* link : links) { std::printf(" get_cname(), link->get_bandwidth(), @@ -107,18 +106,16 @@ static void dump_routers() static void dump_routes() { std::vector hosts = sg4::Engine::get_instance()->get_all_hosts(); - std::sort(hosts.begin(), hosts.end(), - [](const sg4::Host* a, const sg4::Host* b) { return a->get_name() < b->get_name(); }); std::vector netpoints = sg4::Engine::get_instance()->get_all_netpoints(); std::sort(netpoints.begin(), netpoints.end(), [](const simgrid::kernel::routing::NetPoint* a, const simgrid::kernel::routing::NetPoint* b) { return a->get_name() < b->get_name(); }); - for (auto src_host : hosts) { // Routes from host + for (auto const* src_host : hosts) { // Routes from host const simgrid::kernel::routing::NetPoint* src = src_host->get_netpoint(); - for (auto dst_host : hosts) { // Routes to host - std::vector route; + for (auto const* dst_host : hosts) { // Routes to host + std::vector route; const simgrid::kernel::routing::NetPoint* dst = dst_host->get_netpoint(); simgrid::kernel::routing::NetZoneImpl::get_global_route(src, dst, route, nullptr); if (route.empty()) @@ -133,7 +130,7 @@ static void dump_routes() if (not dst->is_router()) continue; std::printf(" \n ", src_host->get_cname(), dst->get_cname()); - std::vector route; + std::vector route; simgrid::kernel::routing::NetZoneImpl::get_global_route(src, dst, route, nullptr); for (auto const& link : route) std::printf("", link->get_cname()); @@ -147,7 +144,7 @@ static void dump_routes() for (auto const& value2 : netpoints) { // to router if (not value2->is_router()) continue; - std::vector route; + std::vector route; simgrid::kernel::routing::NetZoneImpl::get_global_route(value1, value2, route, nullptr); if (route.empty()) continue; @@ -156,9 +153,9 @@ static void dump_routes() std::printf("", link->get_cname()); std::printf("\n \n"); } - for (auto dst_host : hosts) { // Routes to host + for (auto const* dst_host : hosts) { // Routes to host std::printf(" \n ", value1->get_cname(), dst_host->get_cname()); - std::vector route; + std::vector route; const simgrid::kernel::routing::NetPoint* netcardDst = dst_host->get_netpoint(); simgrid::kernel::routing::NetZoneImpl::get_global_route(value1, netcardDst, route, nullptr); for (auto const& link : route)