diff options
author | Marvin Borner | 2023-06-07 13:29:21 +0200 |
---|---|---|
committer | Marvin Borner | 2023-06-07 13:29:21 +0200 |
commit | ec2be68120e48c75b0acd2bdfb5cc8d931c70cfd (patch) | |
tree | 7e69f60faedf2ad1ffcbdf4e61d318a8ce8bbc7c /src/map.c | |
parent | 4b5200630ad55d2fd84ab71ad766fea81b1eaafe (diff) |
Removed parenting
I think reducing should work without parenting.. I'm not sure though.
I'm confused.
Diffstat (limited to 'src/map.c')
-rw-r--r-- | src/map.c | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -7,6 +7,7 @@ #include <map.h> #include <parse.h> #include <schedule.h> +#include <term.h> static struct hashmap *all_terms; @@ -60,16 +61,7 @@ void map_dump(struct hashmap *map) struct term *term = *(struct term **)iter_val; fprintf(stderr, "%d\t%ld\t", term->type, term->refs); term_print(term); - fprintf(stderr, "\t{"); - - size_t jiter = 0; - void *jiter_val; - while (hashmap_iter(term->parents, &jiter, &jiter_val)) { - struct term *parent = *(struct term **)jiter_val; - term_print(parent); - fprintf(stderr, ", "); - } - fprintf(stderr, "}\n"); + fprintf(stderr, "\n"); } fprintf(stderr, "---\n\n"); } |