X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/cf04fdb061d2a70a7a4d22b14c2cd3c0944e5138..f8daec44188cc69bbd5b05a1eebfb813a07ae495:/process.cpp diff --git a/process.cpp b/process.cpp index e772176..1414033 100644 --- a/process.cpp +++ b/process.cpp @@ -203,21 +203,23 @@ void process::compute_loop() double next_iter_after_date = MSG_get_clock() + opt::min_comp_iter_duration; while (still_running()) { - // receive (do not block if there is something to compute) - data_receive(real_load > 0.0 ? 0.0 : opt::min_comp_iter_duration); - // send - comm.data_flush(false); - mutex.acquire(); - real_load += received_load; - received_load = 0.0; - std::for_each(neigh.begin(), neigh.end(), - std::bind(&process::data_send, this, _1)); - mutex.release(); + do { + // receive (do not block if there is something to compute) + data_receive(real_load > 0.0 ? 0.0 : opt::min_comp_iter_duration); + + // send + comm.data_flush(false); + mutex.acquire(); + real_load += received_load; + received_load = 0.0; + std::for_each(neigh.begin(), neigh.end(), + std::bind(&process::data_send, this, _1)); + mutex.release(); + + ++all_comp_iter; - ++all_comp_iter; - if (real_load == 0.0) - continue; + } while (real_load == 0.0); convergence_check();