X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1f5649e6da1087111b7201e30e59f6e80104984c..18adbd43b8c21a9a2ccfd89a68171cdefa27b206:/src/surf/AsCluster.hpp diff --git a/src/surf/AsCluster.hpp b/src/surf/AsCluster.hpp index ee2a718224..9271732df4 100644 --- a/src/surf/AsCluster.hpp +++ b/src/surf/AsCluster.hpp @@ -22,14 +22,14 @@ public: virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position); virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {} - xbt_dynar_t upDownLinks_ = xbt_dynar_new(sizeof(s_surf_parsing_link_up_down_t),NULL); + xbt_dynar_t privateLinks_ = xbt_dynar_new(sizeof(s_surf_parsing_link_up_down_t),NULL); Link* backbone_ = nullptr; void *loopback_ = nullptr; NetCard *router_ = nullptr; - int has_limiter_ = 0; - int has_loopback_ = 0; - int nb_links_per_node_ = 1; + int has_limiter_ = 0; /* O or 1. must be an int since it's used to shift the considered index */ + int has_loopback_ = 0; /* O or 1. must be an int since it's used to shift the considered index */ + int nb_links_per_node_ = 1; /* may be 1 (if only a private link), 2 or 3 (if limiter and loopback) */ };