X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/d4fbe175e440c3e9de9b5468b85bf56daab62bff..eed18917aff57d3045fdf6cfecbf6fb99d1e9c7b:/neighbor.h 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 };