X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ed2b5490d6323626eff2efb0021d1deba7e2fd60..7392b17f0fee990af059ca94a2141236aa24d0c1:/src/xbt/heap_private.h diff --git a/src/xbt/heap_private.h b/src/xbt/heap_private.h index 82c060a3d5..87de1eb58a 100644 --- a/src/xbt/heap_private.h +++ b/src/xbt/heap_private.h @@ -1,7 +1,9 @@ -/* Authors: Arnaud Legrand */ +/* $Id$ */ + +/* Copyright (c) 2004 Arnaud Legrand. All rights reserved. */ /* 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. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef _XBT_HEAP_PRIVATE_H #define _XBT_HEAP_PRIVATE_H @@ -11,7 +13,7 @@ typedef struct xbt_heapItem { void *content; - xbt_heap_float_t key; + double key; } s_xbt_heapItem_t, *xbt_heapItem_t; typedef struct xbt_heap { @@ -28,7 +30,7 @@ typedef struct xbt_heap { #define KEY(H,i) ((H->items)[i]).key #define CONTENT(H,i) ((H->items)[i]).content -void xbt_heap_maxHeapify(xbt_heap_t H); -void xbt_heap_increaseKey(xbt_heap_t H, int i); +static void xbt_heap_maxHeapify(xbt_heap_t H); +static void xbt_heap_increaseKey(xbt_heap_t H, int i); #endif /* _XBT_HEAP_PRIVATE_H */