- INFO1("| load balancing algorithm.....: %s", opt::loba_algo.c_str());
- INFO1("| bookkeeping..................: %s", on_off(opt::bookkeeping));
- INFO1("| computation cost factors.....: [%s]", opt::comp_cost.to_string().c_str());
- INFO1("| communication cost factors...: [%s]", opt::comm_cost.to_string().c_str());
- INFO1("| maximum number of iterations.: %s",
- val_or_string(opt::maxiter, "infinity"));
- INFO1("| exit on close................: %s", on_off(opt::exit_on_close));
+ DESCR("load balancing algorithm", "%s", loba_algo.c_str());
+ DESCR("bookkeeping", "%s", h.on_off(bookkeeping));
+ DESCR("computation cost factors", "[%s]", comp_cost.to_string().c_str());
+ DESCR("communication cost factors", "[%s]", comm_cost.to_string().c_str());
+ DESCR("minimum duration between iterations", "%g", min_iter_duration);
+ DESCR("maximum number of comp. iterations", "%s",
+ h.val_or_string(comp_maxiter, "infinity"));
+ DESCR("maximum number of lb. iterations", "%s",
+ h.val_or_string(lb_maxiter, "infinity"));
+ DESCR("time limit", "%s", h.val_or_string(time_limit, "infinity"));
+ DESCR("exit on close", "%s", h.on_off(exit_on_close));