X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/4e922bca67d7cf4bc30a878cd7cd46d39fbe1573..1d498e972be5597e0f902a1bb8e6ec8d87d51002:/neighbor.h?ds=inline 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 };