From f8daec44188cc69bbd5b05a1eebfb813a07ae495 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Fri, 14 Oct 2011 16:58:02 +0200 Subject: [PATCH] Use a do..while() loop instead of this ugly continue statement. --- process.cpp | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) 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(); -- 2.39.5