1 /* Copyright (c) 2014. The SimGrid Team.
2 * All rights reserved. */
4 /* This program is free software; you can redistribute it and/or modify it
5 * under the terms of the license (GNU LGPL) which comes with this package. */
7 #include "surf_routing_cluster.hpp"
9 #ifndef SURF_ROUTING_CLUSTER_FAT_TREE_HPP_
10 #define SURF_ROUTING_CLUSTER_FAT_TREE_HPP_
17 class AsClusterFatTree : public AsCluster {
20 virtual void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, double *latency);
21 virtual void create_links();
22 void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster);
25 //description of a PGFT (TODO : better doc)
27 std::vector<int> lowerLevelNodesNumber;
28 std::vector<int> upperLevelNodesNumber;
29 std::vector<int> lowerLevelPortsNumber;
31 std::vector<FatTreeNode> nodes;