aboutsummaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-29 23:06:37 +0200
committerMarvin Borner2023-05-29 23:06:37 +0200
commitd347a2fa6483059e6397d2b70e82aa657f1144d2 (patch)
tree70742871fb40bfe6fef3a50a2c307b3ba2682f4e /src/map.c
parentbc9c636a4768ded2726f54fa15b296eef992ae97 (diff)
checkpoint
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/map.c b/src/map.c
index 327af8d..c0a2f97 100644
--- a/src/map.c
+++ b/src/map.c
@@ -33,11 +33,30 @@ void map_initialize(void)
all_terms = hashmap_new(sizeof(struct term *), 0, hashmap_free_term);
}
+void map_delete(struct term *term)
+{
+ hashmap_delete(all_terms, term->hash);
+}
+
void map_destroy(void)
{
hashmap_free(all_terms);
}
+void map_dump(void)
+{
+ fprintf(stderr, "\n---\nMap dump:\n");
+ size_t iter = 0;
+ void *iter_val;
+ while (hashmap_iter(all_terms, &iter, &iter_val)) {
+ struct term *term = *(struct term **)iter_val;
+ fprintf(stderr, "%d ", term->type);
+ term_print(term);
+ fprintf(stderr, " %ld\n", term->refs);
+ }
+ fprintf(stderr, "---\n\n");
+}
+
struct pqueue *map_to_pqueue(pqueue_cmp_pri_f cmppri, pqueue_get_pri_f getpri,
pqueue_set_pos_f setpos)
{