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

Private GIT Repository
One more bug :(
[loba.git] / neighbor.h
index 0605206628614d950dd02f4bb1361b11d38ca826..fdf096c9cf49b5badbcfe74cc6aa9e3ce84140f9 100644 (file)
@@ -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;  }
@@ -40,6 +44,8 @@ private:
     double debt;                // the load we had to send to it, but
                                 // that we have not currently sent
                                 // (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
 };