Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[codefactor] Cosmetics.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 6 May 2021 13:38:43 +0000 (15:38 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 10 May 2021 09:44:49 +0000 (11:44 +0200)
src/kernel/routing/FatTreeZone.cpp

index ed86300..1dbebb5 100644 (file)
@@ -100,7 +100,6 @@ void FatTreeZone::get_local_route(NetPoint* src, NetPoint* dst, Route* into, dou
   while (currentNode != destination) {
     for (unsigned int i = 0; i < currentNode->children.size(); i++) {
       if (i % this->num_children_per_node_[currentNode->level - 1] == destination->label[currentNode->level - 1]) {
-
         into->link_list_.push_back(currentNode->children[i]->down_link_);
 
         if (currentNode->limiter_link_)