X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3080c6b0d097d6b3b7d5b3dda0592154ce438f64..c46c0b0d1e605253fa05ccf16251d1a753b3fec7:/src/surf/surf_routing_cluster_fat_tree.hpp diff --git a/src/surf/surf_routing_cluster_fat_tree.hpp b/src/surf/surf_routing_cluster_fat_tree.hpp index 2f924adfc9..9435ca91c0 100644 --- a/src/surf/surf_routing_cluster_fat_tree.hpp +++ b/src/surf/surf_routing_cluster_fat_tree.hpp @@ -52,11 +52,11 @@ public: /** Virtual link standing for the node global capacity. */ - NetworkLink* limiterLink; + Link* limiterLink; /** If present, communications from this node to this node will pass through it * instead of passing by an upper level switch. */ - NetworkLink* loopback; + Link* loopback; FatTreeNode(sg_platf_cluster_cbarg_t cluster, int id, int level, int position); }; @@ -74,10 +74,10 @@ public: FatTreeNode *destination); /** Link going up in the tree */ - NetworkLink *upLink; + Link *upLink; /** Link going down in the tree */ - NetworkLink *downLink; + Link *downLink; /** Upper end of the link */ FatTreeNode *upNode; @@ -111,7 +111,7 @@ class AsClusterFatTree : public AsCluster { public: AsClusterFatTree(); ~AsClusterFatTree(); - virtual void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, + virtual void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);