]> AND Private Git Repository - loba.git/blobdiff - neighbor.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Cosmetics: reindent and remove unused variables.
[loba.git] / neighbor.h
index 58f6c1cfac6a937ea09691b4d73cd5971b0bdf92..ba50f2e45871f3702e22533f1808d17aa92bd868 100644 (file)
@@ -2,6 +2,7 @@
 #define NEIGHBOR_H
 
 #include <utility>
 #define NEIGHBOR_H
 
 #include <utility>
+#include <xbt/log.h>
 #include "hostdata.h"
 
 class neighbor {
 #include "hostdata.h"
 
 class neighbor {
@@ -27,6 +28,12 @@ public:
     void set_to_send(double amount)     { to_send = amount; }
     void add_to_send(double amount)     { to_send += amount; }
 
     void set_to_send(double amount)     { to_send = amount; }
     void add_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
 
 private:
     const hostdata* host;       // pointer to this neighbor's hostdata