X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/95a02a8febe84fd1c2ed98c78c594a5e8a0116f7..9fd6cbc6c3b06f4b09e3c3339ffb3cc8a68f9bfa:/include/simgrid/kernel/routing/ClusterZone.hpp diff --git a/include/simgrid/kernel/routing/ClusterZone.hpp b/include/simgrid/kernel/routing/ClusterZone.hpp index 2e2cbfe79b..167b2c10bc 100644 --- a/include/simgrid/kernel/routing/ClusterZone.hpp +++ b/include/simgrid/kernel/routing/ClusterZone.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2018. 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. */ @@ -6,7 +6,7 @@ #ifndef SIMGRID_ROUTING_CLUSTER_HPP_ #define SIMGRID_ROUTING_CLUSTER_HPP_ -#include +#include #include @@ -67,11 +67,11 @@ namespace routing { class ClusterZone : public NetZoneImpl { public: - explicit ClusterZone(NetZone* father, std::string name); + explicit ClusterZone(NetZoneImpl* father, std::string name, resource::NetworkModel* netmodel); - void getLocalRoute(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override; - void getGraph(xbt_graph_t graph, std::map* nodes, - std::map* edges) override; + void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override; + void get_graph(xbt_graph_t graph, std::map* nodes, + std::map* edges) override; virtual void create_links_for_node(ClusterCreationArgs* cluster, int id, int rank, unsigned int position); virtual void parse_specific_arguments(ClusterCreationArgs* cluster) @@ -80,19 +80,19 @@ public: } /* We use a map instead of a std::vector here because that's a sparse vector. Some values may not exist */ - /* The pair is {linkUp, linkDown} */ - std::unordered_map> privateLinks_; + /* The pair is {link_up, link_down} */ + std::unordered_map> private_links_; - unsigned int nodePosition(int id) { return id * linkCountPerNode_; } - unsigned int nodePositionWithLoopback(int id) { return nodePosition(id) + (hasLoopback_ ? 1 : 0); } - unsigned int nodePositionWithLimiter(int id) { return nodePositionWithLoopback(id) + (hasLimiter_ ? 1 : 0); } + unsigned int node_pos(int id) { return id * num_links_per_node_; } + unsigned int node_pos_with_loopback(int id) { return node_pos(id) + (has_loopback_ ? 1 : 0); } + unsigned int node_pos_with_loopback_limiter(int id) { return node_pos_with_loopback(id) + (has_limiter_ ? 1 : 0); } - surf::LinkImpl* backbone_ = nullptr; void* loopback_ = nullptr; + kernel::resource::LinkImpl* backbone_ = nullptr; NetPoint* router_ = nullptr; - bool hasLimiter_ = false; - bool hasLoopback_ = false; - unsigned int linkCountPerNode_ = 1; /* may be 1 (if only a private link), 2 or 3 (if limiter and loopback) */ + bool has_limiter_ = false; + bool has_loopback_ = false; + unsigned int num_links_per_node_ = 1; /* may be 1 (if only a private link), 2 or 3 (if limiter and loopback) */ }; } // namespace routing } // namespace kernel