From cf04fdb061d2a70a7a4d22b14c2cd3c0944e5138 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 13 Oct 2011 08:41:00 +0200 Subject: [PATCH] Also print average and deviation for times of convergence. --- main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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("`----"); } -- 2.39.5