Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
when using doubles, %lg should be used for scanf and %g for printf (which is
[simgrid.git] / testsuite / xbt / heap_bench.c
index 5f3e1c4..ea737a9 100644 (file)
@@ -70,7 +70,7 @@ void test_heap_mean_operation(int size)
   for (i = 0; i < size; i++)
     xbt_heap_push(heap, NULL, (10.0 * rand() / (RAND_MAX + 1.0)));
   date = gras_os_time() * 1000000 - date;
-  printf("Creation time  %d size heap : %g\n", size, date);
+  printf("Creation time  %d size heap : %lg\n", size, date);
 
   date = gras_os_time() * 1000000;
   for (j = 0; j < MAX_TEST; j++) {
@@ -79,7 +79,7 @@ void test_heap_mean_operation(int size)
     xbt_heap_push(heap, NULL, 3.0 * val);
   }
   date = gras_os_time() * 1000000 - date;
-  printf("Mean access time for a %d size heap : %g\n", size,
+  printf("Mean access time for a %d size heap : %lg\n", size,
         date * 1.0 / (MAX_TEST + 0.0));
 
   xbt_heap_free(heap);