X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f10c9f64beca3d0c8c10fc04ab4b8044000631d4..1ac579fe2e17153efc268d508f760d7444089462:/src/surf/surf_routing_cluster_fat_tree.cpp diff --git a/src/surf/surf_routing_cluster_fat_tree.cpp b/src/surf/surf_routing_cluster_fat_tree.cpp index 99232af44f..1c541d5299 100644 --- a/src/surf/surf_routing_cluster_fat_tree.cpp +++ b/src/surf/surf_routing_cluster_fat_tree.cpp @@ -30,6 +30,7 @@ bool AsClusterFatTree::isInSubTree(FatTreeNode *root, FatTreeNode *node) { } return true; } + void AsClusterFatTree::getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, @@ -39,7 +40,7 @@ void AsClusterFatTree::getRouteAndLatency(RoutingEdgePtr src, source = this->nodes.find(src->getId())->second; destination = this->nodes.find(dst->getId())->second; - int d, k; // as in d-mod-k + int d = 0, k = 0; // as in d-mod-k currentNode = source;