X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a18117755285a374ec3d5830309c924f2830e3ba..a79a8e1cab86ccc687cfbc97b01b735acb996f16:/src/kernel/routing/DijkstraZone.hpp diff --git a/src/kernel/routing/DijkstraZone.hpp b/src/kernel/routing/DijkstraZone.hpp index 51541ce9f7..99442cb543 100644 --- a/src/kernel/routing/DijkstraZone.hpp +++ b/src/kernel/routing/DijkstraZone.hpp @@ -31,12 +31,12 @@ namespace routing { ***********/ /** Dijkstra routing data: fast initialization, slow lookup, small memory requirements, shortest path routing only */ -class XBT_PRIVATE AsDijkstra : public AsRoutedGraph { +class XBT_PRIVATE DijkstraZone : public RoutedZone { public: - AsDijkstra(As* father, const char* name, bool cached); + DijkstraZone(NetZone* father, const char* name, bool cached); void seal() override; - ~AsDijkstra() override; + ~DijkstraZone() override; xbt_node_t routeGraphNewNode(int id, int graph_id); graph_node_map_element_t nodeMapSearch(int id); void newRoute(int src_id, int dst_id, sg_platf_route_cbarg_t e_route);