Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove surf_routing.hpp
[simgrid.git] / src / kernel / routing / RoutedZone.hpp
1 /* Copyright (c) 2013-2016. 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 SIMGRID_ROUTING_GENERIC_HPP_
7 #define SIMGRID_ROUTING_GENERIC_HPP_
8
9 #include "src/kernel/routing/NetZoneImpl.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 class XBT_PRIVATE RoutedZone : public NetZoneImpl {
16 public:
17   explicit RoutedZone(NetZone* father, const char* name);
18
19   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
20   virtual sg_platf_route_cbarg_t newExtendedRoute(RoutingMode hierarchy, sg_platf_route_cbarg_t routearg,
21                                                   int change_order);
22
23 protected:
24   void getRouteCheckParams(NetCard* src, NetCard* dst);
25   void addRouteCheckParams(sg_platf_route_cbarg_t route);
26 };
27 }
28 }
29 } // namespace
30
31 SG_BEGIN_DECL()
32 XBT_PRIVATE xbt_node_t new_xbt_graph_node(xbt_graph_t graph, const char* name, xbt_dict_t nodes);
33 XBT_PRIVATE xbt_edge_t new_xbt_graph_edge(xbt_graph_t graph, xbt_node_t s, xbt_node_t d, xbt_dict_t edges);
34 SG_END_DECL()
35
36 #endif /* SIMGRID_ROUTING_GENERIC_HPP_ */