]> 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 9607c072f49c8dbd5de11adab45e3eaca3746e81..ba50f2e45871f3702e22533f1808d17aa92bd868 100644 (file)
@@ -2,6 +2,7 @@
 #define NEIGHBOR_H
 
 #include <utility>
+#include <xbt/log.h>
 #include "hostdata.h"
 
 class neighbor {
@@ -25,6 +26,13 @@ public:
     // Getter and setter for to_send
     double get_to_send() const          { return to_send;   }
     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