+ 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
+ double timeout;
+ if (load != 0 || lb_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) {
+ 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;
+ }