From 3cd6600dbcb87137c7adde8e4e310aefaea2a2e7 Mon Sep 17 00:00:00 2001
From: Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Date: Tue, 4 Oct 2011 11:02:40 +0200
Subject: [PATCH 1/1] Print {min,max} times of convergence on a single line.

---
 main.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main.cpp b/main.cpp
index b50340a..a682dfd 100644
--- a/main.cpp
+++ b/main.cpp
@@ -353,8 +353,8 @@ 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("Date of first host convergence", "%g", convergence.get_min());
-        PR_VALUE("Date of last host convergence", "%g", convergence.get_max());
+        PR_VALUE("Times of convergence (min/max)", "%g / %g",
+                 convergence.get_min(), convergence.get_max());
         XBT_INFO("`----");
 
     }
-- 
2.39.5