X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7d195832dafde68afd749dd614e9a14d697bdb92..HEAD:/include/simgrid/kernel/routing/ClusterZone.hpp diff --git a/include/simgrid/kernel/routing/ClusterZone.hpp b/include/simgrid/kernel/routing/ClusterZone.hpp index 1dd04ac7f4..8fc45120af 100644 --- a/include/simgrid/kernel/routing/ClusterZone.hpp +++ b/include/simgrid/kernel/routing/ClusterZone.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2023. 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. */ @@ -11,9 +11,7 @@ #include -namespace simgrid { -namespace kernel { -namespace routing { +namespace simgrid::kernel::routing { /** * @brief Placeholder for old ClusterZone class @@ -88,9 +86,9 @@ protected: class XBT_PRIVATE ClusterBase : public ClusterZone { /* We use a map instead of a std::vector here because that's a sparse vector. Some values may not exist */ /* The pair is {link_up, link_down} */ - std::unordered_map> private_links_; - std::unordered_map gateways_; //!< list of gateways for leafs (if they're netzones) - resource::LinkImpl* backbone_ = nullptr; + std::unordered_map> private_links_; + std::unordered_map gateways_; //!< list of gateways for leafs (if they're netzones) + resource::StandardLinkImpl* backbone_ = nullptr; NetPoint* router_ = nullptr; bool has_limiter_ = false; bool has_loopback_ = false; @@ -104,8 +102,14 @@ class XBT_PRIVATE ClusterBase : public ClusterZone { protected: using ClusterZone::ClusterZone; void set_num_links_per_node(unsigned long num) { num_links_per_node_ = num; } - resource::LinkImpl* get_uplink_from(unsigned long position) const { return private_links_.at(position).first; } - resource::LinkImpl* get_downlink_to(unsigned long position) const { return private_links_.at(position).second; } + resource::StandardLinkImpl* get_uplink_from(unsigned long position) const + { + return private_links_.at(position).first; + } + resource::StandardLinkImpl* get_downlink_to(unsigned long position) const + { + return private_links_.at(position).second; + } double get_link_latency() const { return link_lat_; } double get_link_bandwidth() const { return link_bw_; } @@ -115,26 +119,20 @@ protected: bool has_loopback() const { return has_loopback_; } void set_limiter(); bool has_limiter() const { return has_limiter_; } - void set_backbone(resource::LinkImpl* bb) { backbone_ = bb; } + void set_backbone(resource::StandardLinkImpl* bb) { backbone_ = bb; } bool has_backbone() const { return backbone_ != nullptr; } void set_router(NetPoint* router) { router_ = router; } /** @brief Sets gateway for the leaf */ void set_gateway(unsigned long position, NetPoint* gateway); /** @brief Gets gateway for the leaf or nullptr */ NetPoint* get_gateway(unsigned long position); - void add_private_link_at(unsigned long position, std::pair link); + void add_private_link_at(unsigned long position, + std::pair link); bool private_link_exists_at(unsigned long position) const { return private_links_.find(position) != private_links_.end(); } - void get_graph(const s_xbt_graph_t* graph, std::map>* nodes, - std::map>* edges) override - { - /* the old and generic implementation of get_graph doesn't make sense for complex clusters */ - THROW_UNIMPLEMENTED; - }; - unsigned long node_pos(unsigned long id) const { return id * num_links_per_node_; } unsigned long node_pos_with_loopback(unsigned long id) const { return node_pos(id) + (has_loopback_ ? 1 : 0); } @@ -150,8 +148,6 @@ public: return node_pos_with_loopback(id) + (has_limiter_ ? 1 : 0); } }; -} // namespace routing -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::routing #endif /* SIMGRID_ROUTING_CLUSTER_HPP_ */