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

Private GIT Repository
Cosmetics: fix comments in grid*.xml.
[loba.git] / neighbor.h
index 62b9b66bf90488b95a5c53f509cbbdfcff281401..fdf096c9cf49b5badbcfe74cc6aa9e3ce84140f9 100644 (file)
@@ -18,16 +18,18 @@ public:
     // Getter and setter for load
     double get_load() const             { return load;    }
     void set_load(double amount)        { load = amount;  }
     // 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 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;  }
     // 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.
 
     // 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
     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
 };
 
     double to_send;             // the load we have to send to it
 };