X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f0446c8f827c76c8f59790b1ab87e66f3eb8c319..59754cd381aabf278305badcfefbe45cd934ef6c:/teshsuite/xbt/heap_bench/heap_bench.c diff --git a/teshsuite/xbt/heap_bench/heap_bench.c b/teshsuite/xbt/heap_bench/heap_bench.c index 9c9827c560..ce3d7fc0e9 100644 --- a/teshsuite/xbt/heap_bench/heap_bench.c +++ b/teshsuite/xbt/heap_bench/heap_bench.c @@ -6,7 +6,6 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include #include #include @@ -15,19 +14,10 @@ #define MAX_TEST 1000000 -int compare_double(const void *a, const void *b); - -void test_heap_validity(int size); -void test_heap_mean_operation(int size); -void test_reset_heap(xbt_heap_t * heap, int size); - - -int compare_double(const void *a, const void *b) +static int compare_double(const void *a, const void *b) { - double pa, pb; - - pa = *((double *) a); - pb = *((double *) b); + double pa = *((double *) a); + double pb = *((double *) b); if (pa > pb) return 1; @@ -36,11 +26,10 @@ int compare_double(const void *a, const void *b) return -1; } -void test_heap_validity(int size) +static void test_heap_validity(int size) { xbt_heap_t heap = xbt_heap_new(size, NULL); double *tab = xbt_new0(double, size); - int i; for (i = 0; i < size; i++) { @@ -63,47 +52,41 @@ void test_heap_validity(int size) printf("Validity test complete!\n"); } -void test_heap_mean_operation(int size) +static void test_heap_mean_operation(int size) { xbt_heap_t heap = xbt_heap_new(size, NULL); - double val; - double date = 0; - int i, j; - date = xbt_os_time() * 1000000; - for (i = 0; i < size; i++) + double date = xbt_os_time() * 1000000; + for (int i = 0; i < size; i++) xbt_heap_push(heap, NULL, (10.0 * rand() / (RAND_MAX + 1.0))); date = xbt_os_time() * 1000000 - date; printf("Creation time %d size heap : %g\n", size, date); date = xbt_os_time() * 1000000; - for (j = 0; j < MAX_TEST; j++) { + for (int j = 0; j < MAX_TEST; j++) { if (!(j % size) && j) test_reset_heap(&heap, size); - val = xbt_heap_maxkey(heap); + double val = xbt_heap_maxkey(heap); xbt_heap_pop(heap); xbt_heap_push(heap, NULL, 3.0 * val); } date = xbt_os_time() * 1000000 - date; - printf("Mean access time for a %d size heap : %g\n", size, - date * 1.0 / (MAX_TEST + 0.0)); + printf("Mean access time for a %d size heap : %g\n", size, date * 1.0 / (MAX_TEST + 0.0)); xbt_heap_free(heap); } -void test_reset_heap(xbt_heap_t * heap, int size) +static void test_reset_heap(xbt_heap_t * heap, int size) { - int i; xbt_heap_free(*heap); *heap = xbt_heap_new(size, NULL); - for (i = 0; i < size; i++) { + for (int i = 0; i < size; i++) { xbt_heap_push(*heap, NULL, (10.0 * rand() / (RAND_MAX + 1.0))); } - } int main(int argc, char **argv)