+ double next_iter_after_date = 0.0;
+ XBT_INFO("Initial load: %g", real_load);
+ XBT_VERB("Starting...");
+ while (true) {
+ if (get_load() > 0.0) {
+ double now = MSG_get_clock();
+ if (now < next_iter_after_date)
+ MSG_process_sleep(next_iter_after_date - now);
+ next_iter_after_date = MSG_get_clock() + opt::min_iter_duration;
+
+ ++lb_iter;
+
+ if (opt::log_rate && lb_iter % opt::log_rate == 0) {
+ if (opt::bookkeeping)
+ XBT_INFO("(%u:%u) current load: %g ; expected: %g",
+ lb_iter, comp_iter, real_load, expected_load);
+ else
+ XBT_INFO("(%u) current load: %g",
+ lb_iter, real_load);
+ }
+
+ load_balance();
+
+ print_loads(true, xbt_log_priority_debug);
+ }
+
+ // send load information, and load (data) if any
+ send_all();
+ if (real_load > 0.0) {
+ ++comp_iter;
+ compute();
+ }
+
+ if (opt::lb_maxiter && lb_iter >= opt::lb_maxiter) {
+ XBT_VERB("Reached lb_maxiter: %d/%d", lb_iter, opt::lb_maxiter);
+ break;
+ }
+ if (opt::comp_maxiter && comp_iter >= opt::comp_maxiter) {
+ XBT_VERB("Reached comp_maxiter: %d/%d", comp_iter, opt::comp_maxiter);
+ break;
+ }
+ if (opt::time_limit && MSG_get_clock() >= opt::time_limit) {
+ XBT_VERB("Reached time limit: %g/%g", MSG_get_clock(), opt::time_limit);
+ break;
+ }
+
+ // block on receiving unless there is something to compute or
+ // to send
+ double timeout;
+ if (real_load != 0 || get_load() != prev_load_broadcast)
+ timeout = 0.0;
+ else if (opt::min_iter_duration)
+ timeout = opt::min_iter_duration;
+ else
+ timeout = 1.0;
+ receive(timeout);
+
+ // one of our neighbor is finalizing
+ if (opt::exit_on_close && close_received) {
+ XBT_VERB("Close received");
+ break;
+ }
+
+ // have no load and cannot receive anything
+ if (real_load == 0.0 && !may_receive()) {
+ XBT_VERB("I'm a poor lonesome process, and I have no load...");
+ break;
+ }
+
+ // fixme: this check should be implemented with a distributed
+ // algorithm, and not a shared global variable!
+ // fixme: should this chunk be moved before call to receive() ?
+ if (100.0 * total_load_running / total_load_init <=
+ opt::load_ratio_threshold) {
+ XBT_VERB("No more load to balance in system.");
+ break;
+ } else {
+ XBT_DEBUG("still %g load to balance, continuing...", total_load_running);
+ }
+ }
+ XBT_VERB("Going to finalize...");
+ finalize();