X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/0bea2ea9634e0282a48e521a5a255d874ec34ea7..8f5e351ba6584886c256d88d2112bd1efab5f1bf:/neighbor.h?ds=sidebyside diff --git a/neighbor.h b/neighbor.h index 0605206..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; } @@ -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 };