Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use std::pair instead of s_surf_parsing_link_up_down_t for Cluster private links
[simgrid.git] / src / kernel / routing / AsCluster.hpp
index 082333e..14d07c8 100644 (file)
@@ -16,17 +16,17 @@ namespace routing {
 
 class XBT_PRIVATE AsCluster: public AsImpl {
 public:
-  explicit AsCluster(const char*name);
-  ~AsCluster() override;
+  explicit AsCluster(As* father, const char* name);
 
-  void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
+  void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
 
   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
   virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
 
   /* We use a map instead of a std::vector here because that's a sparse vector. Some values may not exist */
-  std::unordered_map<unsigned int, s_surf_parsing_link_up_down_t> privateLinks_;
+  /* The pair is {linkUp, linkDown} */
+  std::unordered_map<unsigned int, std::pair<Link*, Link*>> privateLinks_;
 
   Link* backbone_ = nullptr;
   void *loopback_ = nullptr;