From: couturie Date: Sun, 30 Jan 2011 13:37:03 +0000 (+0100) Subject: Merge branch 'master' of ssh://info.iut-bm.univ-fcomte.fr/loba X-Git-Tag: v0.1~188 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/4e922bca67d7cf4bc30a878cd7cd46d39fbe1573 Merge branch 'master' of ssh://info.iut-bm.univ-fcomte.fr/loba Conflicts: loba_fairstrategy.cpp --- 4e922bca67d7cf4bc30a878cd7cd46d39fbe1573 diff --cc loba_fairstrategy.cpp index 8790892,4ad0bff..7e02a21 --- a/loba_fairstrategy.cpp +++ b/loba_fairstrategy.cpp @@@ -21,24 -21,17 +21,18 @@@ void loba_fairstrategy::load_balance( { std::sort(pneigh.begin(), pneigh.end(), compare()); - //print_loads_p(); - print_loads_p(false, xbt_log_priority_debug); ++ // print_loads_p(); ++ //print_loads_p(false, xbt_log_priority_debug); - double sum_sent=0; - bool found=true; - - while(found) { - found=false; + bool found = true; + + 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) { - found=true; - pneigh[i]->add_load(1); - pneigh[i]->add_to_send(1); - //INFO1("sent to %s",pneigh[i]->get_name()); - my_load--; - sum_sent++; + if (pneigh[i]->get_load() <= get_load() - 2) { + found = true; + send(pneigh[i], 1); + DEBUG1("sent to %s", pneigh[i]->get_name()); } } }