X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/60d684a0c3b1671fbc60bc47f37eca020627dc02..976ee462f4626798ebf76ca46d13f53e10e0e28d:/src/xbt/heap_private.h diff --git a/src/xbt/heap_private.h b/src/xbt/heap_private.h index bcd3ce9028..a426393df3 100644 --- a/src/xbt/heap_private.h +++ b/src/xbt/heap_private.h @@ -21,6 +21,7 @@ typedef struct xbt_heap { int count; xbt_heapItem_t items; void_f_pvoid_t free; + void (*update_callback) (void *, int); } s_xbt_heap_t; #define PARENT(i) i/2 @@ -30,6 +31,8 @@ typedef struct xbt_heap { #define KEY(H,i) ((H->items)[i]).key #define CONTENT(H,i) ((H->items)[i]).content +#define MIN_KEY_VALUE -10000 + static void xbt_heap_maxHeapify(xbt_heap_t H); static void xbt_heap_increaseKey(xbt_heap_t H, int i);