X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/7541e1aae11493fc2da5479f385154e78714397f..d772022386ea3878a949578f097b23571e241b75:/loba_fairstrategy.cpp diff --git a/loba_fairstrategy.cpp b/loba_fairstrategy.cpp index 7495655..c372f74 100644 --- a/loba_fairstrategy.cpp +++ b/loba_fairstrategy.cpp @@ -21,7 +21,7 @@ double loba_fairstrategy::load_balance(double my_load) { std::sort(pneigh.begin(), pneigh.end(), compare()); - print_loads_p(); + print_loads_p(false, xbt_log_priority_debug); double sum_sent = 0; bool found = true; @@ -29,14 +29,11 @@ double loba_fairstrategy::load_balance(double my_load) while (found) { found = false; for (unsigned i = 0 ; i < pneigh.size() ; ++i) { - double l = pneigh[i]->get_load(); - if (l >= my_load) - continue; - if (l < my_load + 2) { + if (pneigh[i]->get_load() <= my_load - 2) { found = true; pneigh[i]->add_load(1); pneigh[i]->add_to_send(1); - INFO1("sent to %s", pneigh[i]->get_name()); + DEBUG1("sent to %s", pneigh[i]->get_name()); my_load--; sum_sent++; }