]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Print {min,max} times of convergence on a single line.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 4 Oct 2011 09:02:40 +0000 (11:02 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 4 Oct 2011 09:02:40 +0000 (11:02 +0200)
main.cpp

index b50340ab3dbe97534b30d3ac2d8b014c9b020bef..a682dfd9842a278ee2431cefaf25961ce7563ca8 100644 (file)
--- 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("`----");
 
     }