Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
NetZone: rename the remaining occurrence of 'father' to 'parent'.
[simgrid.git] / include / simgrid / kernel / routing / EmptyZone.hpp
1 /* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SURF_ROUTING_NONE_HPP_
7 #define SURF_ROUTING_NONE_HPP_
8
9 #include <simgrid/kernel/routing/NetZoneImpl.hpp>
10 #include <xbt/asserts.h>
11
12 namespace simgrid {
13 namespace kernel {
14 namespace routing {
15
16 /** @ingroup ROUTING_API
17  *  @brief NetZone with no routing, useful with the constant network model
18  *
19  *  Such netzones never contain any link, and the latency is always left unchanged:
20  *  the constant time network model computes this latency externally.
21  */
22
23 class XBT_PRIVATE EmptyZone : public NetZoneImpl {
24 public:
25   explicit EmptyZone(const std::string& name) : NetZoneImpl(name) {}
26
27   void get_local_route(const NetPoint* src, const NetPoint* dst, Route* into, double* latency) override
28   {
29     xbt_die("There can't be route in an Empty zone");
30   }
31
32   void get_graph(const s_xbt_graph_t* graph, std::map<std::string, xbt_node_t, std::less<>>* /*nodes*/,
33                  std::map<std::string, xbt_edge_t, std::less<>>* /*edges*/) override;
34 };
35 } // namespace routing
36 } // namespace kernel
37 } // namespace simgrid
38
39 #endif /* SURF_ROUTING_NONE_HPP_ */