+ double next_iter_after_date = 0.0;
+ INFO1("Initial load: %g", load);
+ VERB0("Starting...");
+ comp_iter = lb_iter = 0;
+ while (true) {
+ if (opt::min_iter_duration) {
+ double now = MSG_get_clock();
+ if (now < next_iter_after_date){
+ double delay = next_iter_after_date - now;
+ DEBUG1("sleeping for %g s", delay);
+ MSG_process_sleep(delay);
+ }
+ next_iter_after_date = MSG_get_clock() + opt::min_iter_duration;
+ }
+
+ double ld = lb_load();
+ if (ld > 0.0) {
+ ++lb_iter;
+
+ if (opt::log_rate && lb_iter % opt::log_rate == 0) {
+ if (opt::bookkeeping)
+ INFO4("(%u:%u) current load: %g ; expected: %g",
+ lb_iter, comp_iter, load, expected_load);
+ else
+ INFO2("(%u) current load: %g",
+ lb_iter, load);
+ }
+
+ ld -= load_balance(ld);
+
+ print_loads(true, xbt_log_priority_debug);
+ }
+ lb_load() = ld;
+
+ // send load information, and load (data) if any
+ send();
+ if (load > 0.0) {
+ ++comp_iter;
+ compute();
+ }
+
+ if (opt::lb_maxiter && lb_iter >= opt::lb_maxiter) {
+ VERB2("Reached lb_maxiter: %d/%d", lb_iter, opt::lb_maxiter);
+ break;
+ }
+ if (opt::comp_maxiter && comp_iter >= opt::comp_maxiter) {
+ VERB2("Reached comp_maxiter: %d/%d", comp_iter, opt::comp_maxiter);
+ break;
+ }
+ if (opt::time_limit && MSG_get_clock() >= opt::time_limit) {
+ VERB2("Reached time limit: %g/%g", MSG_get_clock(), opt::time_limit);
+ break;
+ }
+
+ // block on receiving unless there is something to compute or
+ // to send
+ bool wait = (load == 0 && lb_load() == prev_load_broadcast);
+ receive(wait);
+
+ // one of our neighbor is finalizing
+ if (opt::exit_on_close && close_received) {
+ VERB0("Close received");
+ break;
+ }
+
+ // have no load and cannot receive anything
+ if (load == 0.0 && !may_receive()) {
+ VERB0("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) {
+ VERB0("No more load to balance in system.");
+ break;
+ } else {
+ DEBUG1("still %g load to balance, continuing...", total_load_running);
+ }
+ }
+ VERB0("Going to finalize...");
+ finalize();