Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix smpi_execute_benched.
[simgrid.git] / src / xbt / heap_private.h
1 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef XBT_HEAP_PRIVATE_H
7 #define XBT_HEAP_PRIVATE_H
8
9 #include <float.h>
10 #include <xbt/dynar.h>
11 #include <xbt/heap.h>
12
13 typedef struct xbt_heap_item {
14   void *content;
15   double key;
16 } s_xbt_heap_item_t;
17 typedef s_xbt_heap_item_t* xbt_heap_item_t;
18
19 typedef struct xbt_heap {
20   int size;
21   int count;
22   s_xbt_heap_item_t* items; /* array of structs */
23   void_f_pvoid_t free;
24   void (*update_callback) (void *, int);
25 } s_xbt_heap_t;
26
27 #define PARENT(i)  (i >> 1)
28 #define LEFT(i)    (i << 1)
29 #define RIGHT(i)   ((i << 1) + 1)
30
31 #define KEY(H,i)     ((H->items)[i]).key
32 #define CONTENT(H,i) ((H->items)[i]).content
33
34 #define MIN_KEY_VALUE -DBL_MAX
35
36 #endif