From: Arnaud Giersch Date: Thu, 13 Oct 2011 06:41:00 +0000 (+0200) Subject: Also print average and deviation for times of convergence. X-Git-Tag: exp_20120216~17 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/cf04fdb061d2a70a7a4d22b14c2cd3c0944e5138?ds=inline Also print average and deviation for times of convergence. --- diff --git a/main.cpp b/main.cpp index a682dfd..c373553 100644 --- a/main.cpp +++ b/main.cpp @@ -353,8 +353,9 @@ int main(int argc, char* argv[]) "times the total amount of data"); PR_VALUE("Number of hosts that converged", "%u / %u", convergence.get_count(), loads.get_count()); - PR_VALUE("Times of convergence (min/max)", "%g / %g", - convergence.get_min(), convergence.get_max()); + PR_VALUE("Times of convergence (min/max/avg/dev)", "%g / %g / %g / %g", + convergence.get_min(), convergence.get_max(), + convergence.get_mean(), convergence.get_stddev()); XBT_INFO("`----"); }