Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in AsCluster and friends
[simgrid.git] / src / surf / AsRoutedGraph.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 SURF_ROUTING_GENERIC_HPP_
7 #define SURF_ROUTING_GENERIC_HPP_
8
9 #include "src/surf/AsImpl.hpp"
10
11 namespace simgrid {
12 namespace surf {
13
14 class XBT_PRIVATE AsRoutedGraph : public AsImpl {
15 public:
16   explicit AsRoutedGraph(const char*name);
17   ~AsRoutedGraph() override;
18
19   xbt_dynar_t getOneLinkRoutes() override;
20
21   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
22   virtual sg_platf_route_cbarg_t newExtendedRoute(RoutingMode hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
23 protected:
24   void getRouteCheckParams(NetCard *src, NetCard *dst);
25   void addRouteCheckParams(sg_platf_route_cbarg_t route);
26 };
27
28 }
29 }
30
31 #endif /* SURF_ROUTING_GENERIC_HPP_ */