X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/4096be9a95ef90a463f9721817750ad84f141b0a..31105199e1ac10ed46643c7b861784e8d5e61208:/neighbor.h

diff --git a/neighbor.h b/neighbor.h
index 62b9b66..fdf096c 100644
--- a/neighbor.h
+++ b/neighbor.h
@@ -18,16 +18,18 @@ public:
     // Getter and setter for load
     double get_load() const             { return load;    }
     void set_load(double amount)        { load = amount;  }
-    void add_load(double amount)        { load += amount; }
 
     // Getter and setter for debt
     double get_debt() const             { return debt;   }
     void set_debt(double amount)        { debt = amount; }
 
+    // Getter and setter for credit
+    double get_credit() const           { return credit;   }
+    void set_credit(double amount)      { credit = amount; }
+
     // 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.
@@ -41,7 +43,9 @@ private:
     double load;                // the load information we know for it
     double debt;                // the load we had to send to it, but
                                 // that we have not currently sent
-                                // (in bookkeeping mode)
+                                // (bookkeeping mode)
+    double credit;              // the load we have to receive from it
+                                // (bookkeeping mode)
 
     double to_send;             // the load we have to send to it
 };