#include <algorithm>
#include <cmath>
-#include <functional>
#include <iterator>
#include <numeric>
#include <stdexcept>
all_comp_iter = comp_iter = lb_iter = 0;
- lb_thread = new_msg_thread("loba",
- std::bind(&process::load_balance_loop, this));
+ lb_thread = new_msg_thread("loba", [this]() { this->load_balance_loop(); });
e_xbt_log_priority_t logp = xbt_log_priority_verbose;
if (!LOG_ISENABLED(logp))
oss << ESSE(neigh.size()) << ": ";
std::transform(neigh.begin(), neigh.end() - 1,
std::ostream_iterator<const char*>(oss, ", "),
- std::mem_fn(&neighbor::get_name));
+ [](const neighbor& neigh) { return neigh.get_name(); });
oss << neigh.back().get_name();
}
XBT_LOG(logp, "Got %s.", oss.str().c_str());
void process::load_balance_loop()
{
- using std::placeholders::_1;
-
double next_iter_after_date = MSG_get_clock() + opt::min_lb_iter_duration;
while (still_running()) {
if (lb_iter == opt::comp_iter_delay) {
// send
comm.ctrl_flush(false);
- std::for_each(neigh.begin(), neigh.end(),
- std::bind(&process::ctrl_send, this, _1));
+ for (neighbor& n : neigh)
+ ctrl_send(n);
prev_load_broadcast = expected_load;
mutex.release();
XBT_VERB("Going to finalize for %s...", __func__);
XBT_DEBUG("send CTRL_CLOSE to %zu neighbor%s",
neigh.size(), ESSE(neigh.size()));
- std::for_each(neigh.begin(), neigh.end(),
- std::bind(&process::ctrl_close, this, _1));
+ for (neighbor& n : neigh)
+ ctrl_close(n);
while (ctrl_close_pending) {
comm.ctrl_flush(false);
XBT_DEBUG("waiting for %d CTRL_CLOSE", ctrl_close_pending);
void process::compute_loop()
{
- using std::placeholders::_1;
-
double next_iter_after_date = MSG_get_clock() + opt::min_comp_iter_duration;
double idle_since_date = 0.0;
while (still_running()) {
mutex.acquire();
real_load += received_load;
received_load = 0.0;
- std::for_each(neigh.begin(), neigh.end(),
- std::bind(&process::data_send, this, _1));
+ for (neighbor& n : neigh)
+ data_send(n);
mutex.release();
++all_comp_iter;
finalizing = true;
XBT_DEBUG("send DATA_CLOSE to %zu neighbor%s",
neigh.size(), ESSE(neigh.size()));
- std::for_each(neigh.begin(), neigh.end(),
- std::bind(&process::data_close, this, _1));
+ for (neighbor& n : neigh)
+ data_close(n);
while (data_close_pending) {
comm.data_flush(false);
XBT_DEBUG("waiting for %d DATA_CLOSE", data_close_pending);
double process::get_sum_of_to_send() const
{
- using std::placeholders::_1;
- using std::placeholders::_2;
-
return std::accumulate(neigh.begin(), neigh.end(), 0.0,
- std::bind(std::plus<double>(), _1,
- std::bind(&neighbor::get_to_send, _2)));
+ [](double x, const neighbor& neigh) {
+ return x + neigh.get_to_send();
+ });
}
void process::load_balance()
delete msg;
}
-#define print_loads_generic(vec, verbose, logp, cat) \
- if (_XBT_LOG_ISENABLEDV((*cat), logp)) { \
- using std::placeholders::_1; \
- XBT_XCLOG(cat, logp, "My load: %g (real); %g (expected). " \
- "Neighbor loads:", real_load, expected_load); \
- std::for_each(vec.begin(), vec.end(), \
- std::bind(&neighbor::print, _1, verbose, logp, cat)); \
- } else ((void)0)
-
void process::print_loads(bool verbose,
e_xbt_log_priority_t logp,
xbt_log_category_t cat) const
{
- print_loads_generic(neigh, verbose, logp, cat);
+ if (!_XBT_LOG_ISENABLEDV((*cat), logp))
+ return;
+ XBT_XCLOG(cat, logp, "My load: %g (real); %g (expected). Neighbor loads:",
+ real_load, expected_load);
+ for (const neighbor& n : neigh)
+ n.print(verbose, logp, cat);
}
void process::print_loads_p(bool verbose,
e_xbt_log_priority_t logp,
xbt_log_category_t cat) const
{
- print_loads_generic(pneigh, verbose, logp, cat);
+ if (!_XBT_LOG_ISENABLEDV((*cat), logp))
+ return;
+ XBT_XCLOG(cat, logp, "My load: %g (real); %g (expected). Neighbor loads:",
+ real_load, expected_load);
+ for (const neighbor* n : pneigh)
+ n->print(verbose, logp, cat);
}
#undef print_loads_generic