Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dicts to maps in Dijkstra
[simgrid.git] / src / kernel / routing / DijkstraZone.hpp
index 83786e3..e627d5d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2013-2017. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -8,19 +8,22 @@
 
 #include "src/kernel/routing/RoutedZone.hpp"
 
-typedef struct graph_node_data {
+struct s_graph_node_data_t {
   int id;
   int graph_id; /* used for caching internal graph id's */
-} s_graph_node_data_t, *graph_node_data_t;
+};
+typedef s_graph_node_data_t* graph_node_data_t;
 
-typedef struct graph_node_map_element {
+struct s_graph_node_map_element_t {
   xbt_node_t node;
-} s_graph_node_map_element_t, *graph_node_map_element_t;
+};
+typedef s_graph_node_map_element_t* graph_node_map_element_t;
 
-typedef struct route_cache_element {
+struct s_route_cache_element_t {
   int* pred_arr;
   int size;
-} s_route_cache_element_t, *route_cache_element_t;
+};
+typedef s_route_cache_element_t* route_cache_element_t;
 
 namespace simgrid {
 namespace kernel {
@@ -36,12 +39,11 @@ namespace routing {
  *  The path between components is computed each time you request it,
  *  using the Dijkstra algorithm. A cache can be used to reduce the computation.
  *
- *  This result in rather small platform file, very fast initialization, and intermediate memory requirements
- *  (somewhere between the one of @DijkstraZone and the one of @FullZone).
+ *  This result in rather small platform file, very fast initialization, and very low memory requirements, but somehow long path resolution times.
  */
 class XBT_PRIVATE DijkstraZone : public RoutedZone {
 public:
-  DijkstraZone(NetZone* father, const char* name, bool cached);
+  DijkstraZone(NetZone* father, std::string name, bool cached);
   void seal() override;
 
   ~DijkstraZone() override;
@@ -59,12 +61,12 @@ public:
    * After this function returns, any node in the graph
    * will have a loopback attached to it.
    */
-  void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t route, double* lat) override;
+  void getLocalRoute(NetPoint* src, NetPoint* dst, sg_platf_route_cbarg_t route, double* lat) override;
   void addRoute(sg_platf_route_cbarg_t route) override;
 
   xbt_graph_t routeGraph_  = nullptr; /* xbt_graph */
-  xbt_dict_t graphNodeMap_ = nullptr; /* map */
-  xbt_dict_t routeCache_   = nullptr; /* use in cache mode */
+  std::map<int, graph_node_map_element_t> graphNodeMap_; /* map */
+  std::map<int, route_cache_element_t> routeCache_;      /* use in cache mode */
 };
 }
 }