Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sonar don't like comments ending with ';'
[simgrid.git] / src / kernel / routing / EmptyZone.hpp
index ad8c7a3..2ec0d85 100644 (file)
@@ -12,14 +12,25 @@ namespace simgrid {
 namespace kernel {
 namespace routing {
 
-/** No specific routing. Mainly useful with the constant network model */
+/** @ingroup ROUTING_API
+ *  @brief NetZone with no routing, useful with the constant network model
+ *
+ *  Such netzones never contain any link, and the latency is always left unchanged:
+ *  the constant time network model computes this latency externally.
+ */
+
 class XBT_PRIVATE EmptyZone : public NetZoneImpl {
 public:
-  explicit EmptyZone(NetZone* father, const char* name);
+  explicit EmptyZone(NetZone* father, std::string name);
   ~EmptyZone() 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;
+  void getLocalRoute(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override
+  {
+    /* There can't be route in an Empty zone */
+  }
+
+  void getGraph(xbt_graph_t graph, std::map<std::string, xbt_node_t>* /*nodes*/,
+                std::map<std::string, xbt_edge_t>* /*edges*/) override;
 };
 }
 }