X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/16d0d07b6b60083606697f59b9ff3ae6692b09c3..5b9ddb42c7ce6f65f3a0a242209dc4ae1312d54c:/neighbor.h?ds=sidebyside

diff --git a/neighbor.h b/neighbor.h
index b51dab1..fdf096c 100644
--- a/neighbor.h
+++ b/neighbor.h
@@ -23,6 +23,10 @@ public:
     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;  }
@@ -39,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
 };