X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f4125505064e3ff346b31ab9e48f894672e5a7a7..10e5dbdfc7cf72a000a90a2f1a27c7dc30364761:/neighbor.cpp diff --git a/neighbor.cpp b/neighbor.cpp index 8715396..be80664 100644 --- a/neighbor.cpp +++ b/neighbor.cpp @@ -1,16 +1,31 @@ +#include +#include + +XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc); // needed to compile neighbor.h + +#include "misc.h" + #include "neighbor.h" neighbor::neighbor(const char* hostname) - : name(hostname) - , ctrl_mbox(hostname) - , data_mbox(hostname) + : host(static_cast + (MSG_host_get_data(MSG_get_host_by_name(hostname)))) , load(std::numeric_limits::infinity()) , debt(0.0) + , to_send(0.0) { - ctrl_mbox += "_ctrl"; - data_mbox += "_data"; } neighbor::~neighbor() { } + +void neighbor::print(bool verbose, + e_xbt_log_priority_t logp, xbt_log_category_t cat) const +{ + if (verbose) + XBT_XCLOG(cat, logp, "%s: load = %g ; debt = %g ; to_send = %g", + get_name(), get_load(), get_debt(), get_to_send()); + else + XBT_XCLOG(cat, logp, "%s: load = %g", get_name(), get_load()); +}