X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7b260a6cdc16e5fe788e15f4f4fb2412c9605263..d5cbd0a045f9b4c686d265723f542dd92f47593b:/src/kernel/routing/NetZoneImpl.hpp diff --git a/src/kernel/routing/NetZoneImpl.hpp b/src/kernel/routing/NetZoneImpl.hpp index 75636ad375..95f5ae38c7 100644 --- a/src/kernel/routing/NetZoneImpl.hpp +++ b/src/kernel/routing/NetZoneImpl.hpp @@ -53,13 +53,13 @@ XBT_PUBLIC_CLASS NetZoneImpl : public s4u::NetZone friend simgrid::kernel::EngineImpl; // it destroys netRoot_ protected: - explicit NetZoneImpl(NetZone * father, const char* name); + explicit NetZoneImpl(NetZone * father, std::string name); virtual ~NetZoneImpl(); public: /** @brief Make an host within that NetZone */ simgrid::s4u::Host* createHost(const char* name, std::vector* speedPerPstate, int coreAmount, - std::unordered_map* props); + std::map* props); /** @brief Creates a new route in this NetZone */ void addBypassRoute(sg_platf_route_cbarg_t e_route) override; @@ -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 */