X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/befaff140ab7a986e45c3e4d73ab5ed17eab3e8d..2955afe732becd712d718abaf6806aef3c0998a6:/deployment.cpp diff --git a/deployment.cpp b/deployment.cpp index f34c3a9..287ca4f 100644 --- a/deployment.cpp +++ b/deployment.cpp @@ -1,12 +1,11 @@ #include #include #include -#include #include #include #include #include -#include +#include #include #include @@ -51,19 +50,21 @@ void deployment_generator::set_link(int host1, int host2) void deployment_generator::distribute_load() { - using std::placeholders::_1; - if (!opt::auto_depl::random_distribution) { set_load(0, opt::auto_depl::load); return; } - srand48(opt::auto_depl::random_seed); std::vector loads(hosts.size()); - std::generate(loads.begin(), loads.end(), drand48); + if (opt::auto_depl::random_seed != 1) { + srand48(opt::auto_depl::random_seed); + std::generate(loads.begin(), loads.end(), drand48); + } else { + std::fill(loads.begin(), loads.end(), 1.0); + } double factor = opt::auto_depl::load / std::accumulate(loads.begin(), loads.end(), 0.0); std::transform(loads.begin(), loads.end(), loads.begin(), - std::bind(std::multiplies(), _1, factor)); + [&factor](double a) { return factor * a; }); if (opt::integer_transfer) { double iload; double residue = 0.0;