diff options
author | Marvin Borner | 2023-05-31 13:21:24 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-31 13:21:24 +0200 |
commit | 931df5e774eebb098c5d7be93937d2b2f12b86ac (patch) | |
tree | ec60efb28549b4f83a42bbb41a2c702c0565e3b5 /inc/map.h | |
parent | d347a2fa6483059e6397d2b70e82aa657f1144d2 (diff) |
Added parent hashmaps
Diffstat (limited to 'inc/map.h')
-rw-r--r-- | inc/map.h | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -6,14 +6,16 @@ #include <lib/hash.h> #include <lib/pqueue.h> +#include <lib/hashmap.h> -struct term *map_get(hash_t hash); -void map_set(struct term *term, hash_t hash); -void map_delete(struct term *term); +struct hashmap *map_all_terms(void); +struct term *map_get(struct hashmap *map, hash_t hash); +void map_set(struct hashmap *map, struct term *term, hash_t hash); +void map_delete(struct hashmap *map, struct term *term); void map_initialize(void); -void map_destroy(void); -void map_dump(void); // TODO: remove -struct pqueue *map_to_pqueue(pqueue_cmp_pri_f cmppri, pqueue_get_pri_f getpri, - pqueue_set_pos_f set_pos); +void map_destroy(struct hashmap *map); +void map_dump(struct hashmap *map); // TODO: remove +struct pqueue *map_to_pqueue(struct hashmap *map, pqueue_cmp_pri_f cmppri, + pqueue_get_pri_f getpri, pqueue_set_pos_f set_pos); #endif |