X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/b78d5563826957045678f4c3bcfdcef6c9bfc48d..af35c0c75c52b0cf5d0518656473503f67a79613:/neighbor.h?ds=sidebyside diff --git a/neighbor.h b/neighbor.h index 9607c07..b51dab1 100644 --- a/neighbor.h +++ b/neighbor.h @@ -2,6 +2,7 @@ #define NEIGHBOR_H #include +#include #include "hostdata.h" class neighbor { @@ -10,21 +11,27 @@ public: ~neighbor(); // returns name, ctrl or data mbox - const char* get_name() const { return host->get_name(); } + const char* get_name() const { return host->get_name(); } const char* get_ctrl_mbox() const { return host->get_ctrl_mbox(); } const char* get_data_mbox() const { return host->get_data_mbox(); } // Getter and setter for load - double get_load() const { return load; } - void set_load(double amount) { load = amount; } + double get_load() const { return load; } + void set_load(double amount) { load = amount; } // Getter and setter for debt double get_debt() const { return debt; } void set_debt(double amount) { debt = amount; } // Getter and setter for to_send - double get_to_send() const { return to_send; } - void set_to_send(double amount) { to_send = amount; } + double get_to_send() const { return to_send; } + void set_to_send(double amount) { to_send = amount; } + + // Prints its name and load on given category, with given + // priority. If verbose is true, prints debt and to_send too. + void print(bool verbose = false, + e_xbt_log_priority_t logp = xbt_log_priority_info, + xbt_log_category_t cat = _XBT_LOGV(default)) const; private: const hostdata* host; // pointer to this neighbor's hostdata