X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b1f526e4157e5a965b4773291c81fc71de27de25..7abffd12021a46a0ac1bd2b4ff48ca4b3cc8c71c:/src/surf/surf_routing_cluster.c diff --git a/src/surf/surf_routing_cluster.c b/src/surf/surf_routing_cluster.c index 140f0fc65e..09b74f2893 100644 --- a/src/surf/surf_routing_cluster.c +++ b/src/surf/surf_routing_cluster.c @@ -13,11 +13,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster, surf, "Routing part of surf" * Note that a router is created, easing the interconnexion with the rest of the world. */ -typedef struct { - s_as_t generic_routing; - void *backbone; -} s_as_cluster_t, *as_cluster_t; - /* Business methods */ static void cluster_get_route_and_latency(AS_t as, sg_routing_edge_t src, sg_routing_edge_t dst, @@ -81,7 +76,3 @@ AS_t model_cluster_create(void) return (AS_t) result; } - -void surf_routing_cluster_add_backbone(AS_t as, void* bb) { - ((as_cluster_t)as)->backbone = bb; -}