X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a79a8e1cab86ccc687cfbc97b01b735acb996f16..fa9f8bd4dce9b5c37e9c66ac09c9acc2e47e5bc3:/src/kernel/routing/VivaldiZone.cpp diff --git a/src/kernel/routing/VivaldiZone.cpp b/src/kernel/routing/VivaldiZone.cpp index a04f1e9970..e665695598 100644 --- a/src/kernel/routing/VivaldiZone.cpp +++ b/src/kernel/routing/VivaldiZone.cpp @@ -50,7 +50,7 @@ static std::vector* getCoordsFromNetcard(NetCard* nc) { simgrid::kernel::routing::vivaldi::Coords* coords = nc->extension(); xbt_assert(coords, "Please specify the Vivaldi coordinates of %s %s (%p)", - (nc->isAS() ? "AS" : (nc->isHost() ? "Host" : "Router")), nc->cname(), nc); + (nc->isNetZone() ? "AS" : (nc->isHost() ? "Host" : "Router")), nc->cname(), nc); return &coords->coords; } VivaldiZone::VivaldiZone(NetZone* father, const char* name) : ClusterZone(father, name) @@ -59,7 +59,7 @@ VivaldiZone::VivaldiZone(NetZone* father, const char* name) : ClusterZone(father void VivaldiZone::setPeerLink(NetCard* netcard, double bw_in, double bw_out, double latency, const char* coord) { - xbt_assert(netcard->containingAS() == this, "Cannot add a peer link to a netcard that is not in this AS"); + xbt_assert(netcard->netzone() == this, "Cannot add a peer link to a netcard that is not in this AS"); new simgrid::kernel::routing::vivaldi::Coords(netcard, coord); @@ -77,7 +77,7 @@ void VivaldiZone::getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg { XBT_DEBUG("vivaldi getLocalRoute from '%s'[%d] '%s'[%d]", src->cname(), src->id(), dst->cname(), dst->id()); - if (src->isAS()) { + if (src->isNetZone()) { char* srcName = bprintf("router_%s", src->cname()); char* dstName = bprintf("router_%s", dst->cname()); route->gw_src = (sg_netcard_t)xbt_lib_get_or_null(as_router_lib, srcName, ROUTING_ASR_LEVEL);