X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/89feb425bdeb4351ac0e27a38d9a9b3463fff433..1f5cc4e090af49a98da0e25e9ee21a8ce6ce30f8:/src/kernel/routing/VivaldiZone.cpp diff --git a/src/kernel/routing/VivaldiZone.cpp b/src/kernel/routing/VivaldiZone.cpp index e712e09318..c68526d9f7 100644 --- a/src/kernel/routing/VivaldiZone.cpp +++ b/src/kernel/routing/VivaldiZone.cpp @@ -3,12 +3,12 @@ /* 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. */ -#include "simgrid/kernel/routing/VivaldiZone.hpp" -#include "simgrid/kernel/routing/NetPoint.hpp" -#include "simgrid/s4u/Engine.hpp" -#include "simgrid/s4u/Host.hpp" +#include +#include +#include +#include + #include "src/surf/network_interface.hpp" -#include "surf/surf.hpp" #include @@ -64,21 +64,21 @@ void VivaldiZone::set_peer_link(NetPoint* netpoint, double bw_in, double bw_out) std::string link_up = "link_" + netpoint->get_name() + "_UP"; std::string link_down = "link_" + netpoint->get_name() + "_DOWN"; - const auto* linkUp = create_link(link_up, std::vector{bw_out})->seal(); - const auto* linkDown = create_link(link_down, std::vector{bw_in})->seal(); + const auto* linkUp = create_link(link_up, {bw_out})->seal(); + const auto* linkDown = create_link(link_down, {bw_in})->seal(); add_route(netpoint, nullptr, nullptr, nullptr, {s4u::LinkInRoute(linkUp)}, false); add_route(nullptr, netpoint, nullptr, nullptr, {s4u::LinkInRoute(linkDown)}, false); } void VivaldiZone::get_local_route(const NetPoint* src, const NetPoint* dst, Route* route, double* lat) { - XBT_DEBUG("vivaldi getLocalRoute from '%s'[%u] '%s'[%u]", src->get_cname(), src->id(), dst->get_cname(), dst->id()); - + XBT_DEBUG("vivaldi getLocalRoute from '%s'[%lu] '%s'[%lu]", src->get_cname(), src->id(), dst->get_cname(), dst->id()); + const auto* engine = s4u::Engine::get_instance(); if (src->is_netzone()) { std::string srcName = "router_" + src->get_name(); std::string dstName = "router_" + dst->get_name(); - route->gw_src_ = s4u::Engine::get_instance()->netpoint_by_name_or_null(srcName); - route->gw_dst_ = s4u::Engine::get_instance()->netpoint_by_name_or_null(dstName); + route->gw_src_ = engine->netpoint_by_name_or_null(srcName); + route->gw_dst_ = engine->netpoint_by_name_or_null(dstName); } StarZone::get_local_route(src, dst, route, lat);