Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix warning introduced by previous commit
authorStéphane Castelli <stephane.castelli@loria.fr>
Wed, 7 May 2014 14:17:50 +0000 (16:17 +0200)
committerStéphane Castelli <stephane.castelli@loria.fr>
Wed, 7 May 2014 14:17:50 +0000 (16:17 +0200)
src/surf/surf_routing_cluster_fat_tree.cpp

index 99232af..1c541d5 100644 (file)
@@ -30,6 +30,7 @@ bool AsClusterFatTree::isInSubTree(FatTreeNode *root, FatTreeNode *node) {
   }
   return true;
 }
   }
   return true;
 }
+
 void AsClusterFatTree::getRouteAndLatency(RoutingEdgePtr src,
                                           RoutingEdgePtr dst,
                                           sg_platf_route_cbarg_t into,
 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;
 
   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;
 
 
   currentNode = source;