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

Private GIT Repository
Cosmetic fix in comments.
[loba.git] / neighbor.h
index 62b9b66bf90488b95a5c53f509cbbdfcff281401..0605206628614d950dd02f4bb1361b11d38ca826 100644 (file)
@@ -18,7 +18,6 @@ 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;   }
 
     // Getter and setter for debt
     double get_debt() const             { return debt;   }
@@ -27,7 +26,6 @@ public:
     // 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 +39,7 @@ 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 to_send;             // the load we have to send to it
 };
 
     double to_send;             // the load we have to send to it
 };