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
};
void process::data_send(neighbor& nb)
{
double load_to_send;
- if (opt::bookkeeping) {
+ if (opt::bookkeeping) { // bookkeeping
double excess_load;
if (opt::egocentric)
excess_load = std::max(0.0, real_load - expected_load);
nb.get_debt()));
if (load_to_send > 0.0)
nb.set_debt(nb.get_debt() - load_to_send);
- } else {
+ } else { // !bookkeeping
load_to_send = compute_load_to_send(nb.get_to_send());
if (load_to_send > 0.0)
nb.set_to_send(nb.get_to_send() - load_to_send);