X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/c86e5ff42db3495538c8b48cb7ea0943a13702b7..HEAD:/neighbor.cpp diff --git a/neighbor.cpp b/neighbor.cpp index 266f516..c3ea8c8 100644 --- a/neighbor.cpp +++ b/neighbor.cpp @@ -1,5 +1,5 @@ #include -#include +#include XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc); // needed to compile neighbor.h @@ -8,9 +8,11 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc); // needed to compile neighbor.h #include "neighbor.h" neighbor::neighbor(const char* hostname) - : host(static_cast(MSG_host_get_data(MSG_get_host_by_name(hostname)))) + : host(static_cast + (MSG_host_get_data(MSG_get_host_by_name(hostname)))) , load(std::numeric_limits::infinity()) , debt(0.0) + , credit(0.0) , to_send(0.0) { } @@ -23,8 +25,10 @@ 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()); + XBT_XCLOG(cat, logp, + "%s: load = %g ; debt = %g ; credit = %g ; to_send = %g", + get_name(), get_load(), get_debt(), get_credit(), + get_to_send()); else XBT_XCLOG(cat, logp, "%s: load = %g", get_name(), get_load()); }