aboutsummaryrefslogtreecommitdiff
path: root/inc/map.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-31 13:21:24 +0200
committerMarvin Borner2023-05-31 13:21:24 +0200
commit931df5e774eebb098c5d7be93937d2b2f12b86ac (patch)
treeec60efb28549b4f83a42bbb41a2c702c0565e3b5 /inc/map.h
parentd347a2fa6483059e6397d2b70e82aa657f1144d2 (diff)
Added parent hashmaps
Diffstat (limited to 'inc/map.h')
-rw-r--r--inc/map.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/inc/map.h b/inc/map.h
index 53b0c98..b389bfa 100644
--- a/inc/map.h
+++ b/inc/map.h
@@ -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