X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b87fc0829538ec066fd077e6c30ee6270b8abd78..ecd5f7562caf1d443bf22788fa5f4fac408776ec:/src/kernel/routing/NetZoneImpl.hpp diff --git a/src/kernel/routing/NetZoneImpl.hpp b/src/kernel/routing/NetZoneImpl.hpp index 98296b511b..c2d77382aa 100644 --- a/src/kernel/routing/NetZoneImpl.hpp +++ b/src/kernel/routing/NetZoneImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -76,7 +76,7 @@ protected: /** @brief retrieves the list of all routes of size 1 (of type src x dst x Link) */ /* returns whether we found a bypass path */ bool getBypassRoute(routing::NetPoint * src, routing::NetPoint * dst, - /* OUT */ std::vector * links, double* latency); + /* OUT */ std::vector& links, double* latency); public: /* @brief get the route between two nodes in the full platform @@ -87,9 +87,10 @@ public: * @param latency Accumulator in which the latencies should be added (caller must set it to 0) */ static void getGlobalRoute(routing::NetPoint * src, routing::NetPoint * dst, - /* OUT */ std::vector * links, double* latency); + /* OUT */ std::vector& links, double* latency); - virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) = 0; + virtual void getGraph(xbt_graph_t graph, std::map * nodes, + std::map * edges) = 0; enum class RoutingMode { unset = 0, /**< Undefined type */ base, /**< Base case: use simple link lists for routing */