X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/80a1fe1a200a4309c36598571b1f4ccb76a8788f..625f9acc93a4f369d1b6c1ad98d66e04c3632da5:/deployment.cpp?ds=sidebyside diff --git a/deployment.cpp b/deployment.cpp index 8f52806..264224c 100644 --- a/deployment.cpp +++ b/deployment.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -63,6 +64,27 @@ void deployment_generator::distribute_load() std::accumulate(loads.begin(), loads.end(), 0.0); std::transform(loads.begin(), loads.end(), loads.begin(), std::bind(std::multiplies(), _1, factor)); + if (opt::integer_transfer) { + double iload; + double residue = 0.0; + unsigned i; + for (i = 0 ; i < hosts.size() - 1; ++i) { + if (residue < 0.0) + iload = floor(loads[i]); + else if (residue > 0.0) + iload = ceil(loads[i]); + else // residue == 0.0 + iload = round(loads[i]); + residue += (loads[i] - iload); + loads[i] = iload; + } + // abs(round(...)) to avoid rounding errors, or a value of -0 + iload = abs(round(loads[i] + residue)); // i == hosts.size() - 1 + loads[i] = iload; + // final sanity check + xbt_assert(opt::auto_depl::load == + std::accumulate(loads.begin(), loads.end(), 0.0)); + } for (unsigned i = 0 ; i < hosts.size() ; ++i) set_load(i, loads[i]); }