Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
NS3.25 is out now
[simgrid.git] / src / kernel / routing / AsClusterFatTree.hpp
index 6854f63..9898e5b 100644 (file)
@@ -9,6 +9,7 @@
 #include "src/kernel/routing/AsCluster.hpp"
 
 namespace simgrid {
+namespace kernel {
 namespace routing {
 
 class XBT_PRIVATE FatTreeLink;
@@ -101,7 +102,7 @@ public:
  */
 class XBT_PRIVATE AsClusterFatTree : public AsCluster {
 public:
-  explicit AsClusterFatTree(const char*name);
+  explicit AsClusterFatTree(As* father, const char* name);
   ~AsClusterFatTree() override;
   void getRouteAndLatency(NetCard *src, NetCard *dst,
                                   sg_platf_route_cbarg_t into,
@@ -147,7 +148,6 @@ private:
   bool isInSubTree(FatTreeNode *root, FatTreeNode *node);
 };
 
-}
-}
+}}} // namespaces
 
 #endif