X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3f9587e71330e7471ef675d2652cee260a0e3a96..8c13bb27e65a53b8d533858a8c764ce5f7a3f067:/src/kernel/routing/FatTreeZone.hpp diff --git a/src/kernel/routing/FatTreeZone.hpp b/src/kernel/routing/FatTreeZone.hpp index 8d8538752f..805032913a 100644 --- a/src/kernel/routing/FatTreeZone.hpp +++ b/src/kernel/routing/FatTreeZone.hpp @@ -46,11 +46,11 @@ public: /** Virtual link standing for the node global capacity. */ - Link* limiterLink; + surf::LinkImpl* limiterLink; /** If present, communications from this node to this node will pass through it * instead of passing by an upper level switch. */ - Link* loopback; + surf::LinkImpl* loopback; FatTreeNode(sg_platf_cluster_cbarg_t cluster, int id, int level, int position); }; @@ -63,9 +63,9 @@ class FatTreeLink { public: FatTreeLink(sg_platf_cluster_cbarg_t cluster, FatTreeNode* source, FatTreeNode* destination); /** Link going up in the tree */ - Link* upLink; + surf::LinkImpl* upLink; /** Link going down in the tree */ - Link* downLink; + surf::LinkImpl* downLink; /** Upper end of the link */ FatTreeNode* upNode; /** Lower end of the link */