+ // only sort hosts for automatically created deployment
+ if (opt::auto_depl::enabled)
+ std::sort(host_list, host_list + nhosts,
+ bind(std::less<int>(), bind(strcmp,
+ bind(MSG_host_get_name, _1),
+ bind(MSG_host_get_name, _2)), 0));
+ hosts.assign(host_list, host_list + nhosts);
+ xbt_free(host_list);
+
+ e_xbt_log_priority_t logp = xbt_log_priority_verbose;
+ if (!LOG_ISENABLED(logp))
+ return;
+ XBT_LOG(logp, "Got %zu hosts.", hosts.size());