X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/bf6f3239b1c6f8b6704bfd0474b721e803dce588..3a610d4d2775be71fa1297f7f335376b2945984e:/loba_fairstrategy.cpp diff --git a/loba_fairstrategy.cpp b/loba_fairstrategy.cpp index f4dbb28..5530f5a 100644 --- a/loba_fairstrategy.cpp +++ b/loba_fairstrategy.cpp @@ -1,38 +1,26 @@ -#include #include XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(loba); #include "loba_fairstrategy.h" -/* simple version: - * load balance with a least-loaded neighbor, - * without breaking the ping-pong condition - */ - -class compare { -public: - bool operator()(const neighbor*a, const neighbor*b) { - return a->get_load() > b->get_load(); - } -}; - void loba_fairstrategy::load_balance() { - std::sort(pneigh.begin(), pneigh.end(), compare()); + const double delta = 0.001; + + pneigh_sort_by_load(std::greater()); - // print_loads_p(); - //print_loads_p(false, xbt_log_priority_debug); + print_loads_p(false, xbt_log_priority_debug); bool found = true; while (found) { found = false; for (unsigned i = 0 ; i < pneigh.size() ; ++i) { - if (pneigh[i]->get_load() <= get_load() - .002) { + if (pneigh[i]->get_load() <= get_load() - 2 * delta) { found = true; - send(pneigh[i], .001); - DEBUG1("sent to %s", pneigh[i]->get_name()); + send(pneigh[i], delta); + XBT_DEBUG("sent to %s", pneigh[i]->get_name()); } } }