MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / pqueue_init

Function pqueue_init

libCacheSim/dataStructure/pqueue.c:47–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45#define parent(i) ((i) >> 1)
46
47pqueue_t *
48pqueue_init(size_t n) {
49 return pqueue_init_full(n, cmp_pri, get_pri, set_pri, get_pos, set_pos);
50}
51
52pqueue_t *
53pqueue_init_full(size_t n,

Callers 3

Size_initFunction · 0.85
Belady_initFunction · 0.85
_PG_add_to_graphFunction · 0.85

Calls 1

pqueue_init_fullFunction · 0.85

Tested by

no test coverage detected