aboutsummaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
authorMarvin Borner2023-06-07 13:29:21 +0200
committerMarvin Borner2023-06-07 13:29:21 +0200
commitec2be68120e48c75b0acd2bdfb5cc8d931c70cfd (patch)
tree7e69f60faedf2ad1ffcbdf4e61d318a8ce8bbc7c /src/map.c
parent4b5200630ad55d2fd84ab71ad766fea81b1eaafe (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.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/map.c b/src/map.c
index c36354d..e37217d 100644
--- a/src/map.c
+++ b/src/map.c
@@ -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");
}