X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/97a4b4dbf628a627e3c2d5689be89265f56074df..325b2b36e89d5fa3c3d3ae636b040d6c6d16cdb2:/neighbor.cpp?ds=sidebyside

diff --git a/neighbor.cpp b/neighbor.cpp
index c45fc8f..c3ea8c8 100644
--- a/neighbor.cpp
+++ b/neighbor.cpp
@@ -1,5 +1,5 @@
 #include <limits>
-#include <msg/msg.h>
+#include <simgrid/msg.h>
 
 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((hostdata* )MSG_host_get_data(MSG_get_host_by_name(hostname)))
+    : host(static_cast<hostdata*>
+           (MSG_host_get_data(MSG_get_host_by_name(hostname))))
     , load(std::numeric_limits<double>::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)
-        XCLOG4(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
-        XCLOG2(cat, logp, "%s: load = %g", get_name(), get_load());
+        XBT_XCLOG(cat, logp, "%s: load = %g", get_name(), get_load());
 }