X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e54471e47acaaa087f58c62c3ec142e911e30d40..82f71f716643bf7c4ba1c63793439b753fcfa954:/src/surf/AsClusterFatTree.cpp?ds=sidebyside diff --git a/src/surf/AsClusterFatTree.cpp b/src/surf/AsClusterFatTree.cpp index 3b071e1f9d..263d2d50b4 100644 --- a/src/surf/AsClusterFatTree.cpp +++ b/src/surf/AsClusterFatTree.cpp @@ -92,7 +92,7 @@ void AsClusterFatTree::getRouteAndLatency(NetCard *src, /* In case destination is the source, and there is a loopback, let's get through it instead of going up to a switch*/ - if(source->id == destination->id && this->has_loopback_) { + if(source->id == destination->id && this->hasLoopback_) { into->link_list->push_back(source->loopback); if(latency) { *latency += source->loopback->getLatency(); @@ -118,7 +118,7 @@ void AsClusterFatTree::getRouteAndLatency(NetCard *src, *latency += currentNode->parents[d]->upLink->getLatency(); } - if (this->has_limiter_) { + if (this->hasLimiter_) { into->link_list->push_back(currentNode->limiterLink); } currentNode = currentNode->parents[d]->upNode; @@ -138,7 +138,7 @@ void AsClusterFatTree::getRouteAndLatency(NetCard *src, *latency += currentNode->children[i]->downLink->getLatency(); } currentNode = currentNode->children[i]->downNode; - if (this->has_limiter_) { + if (this->hasLimiter_) { into->link_list->push_back(currentNode->limiterLink); } XBT_DEBUG("%d(%u,%u) is accessible through %d(%u,%u)", destination->id,