- 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", 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("maximum number of iterations", "%s",
+ val_or_string(maxiter, "infinity"));
+ DESCR("exit on close", "%s", on_off(exit_on_close));