aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-31 13:21:24 +0200
committerMarvin Borner2023-05-31 13:21:24 +0200
commit931df5e774eebb098c5d7be93937d2b2f12b86ac (patch)
treeec60efb28549b4f83a42bbb41a2c702c0565e3b5 /src/main.c
parentd347a2fa6483059e6397d2b70e82aa657f1144d2 (diff)
Added parent hashmaps
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index 47e88a9..af1b164 100644
--- a/src/main.c
+++ b/src/main.c
@@ -60,17 +60,17 @@ int main(int argc, char *argv[])
term_print(handle.term);
fprintf(stderr, "\n");
- struct term *new = reduce(handle.term);
+ reduce(handle.term->u.abs.term);
fprintf(stderr, "after\n");
- term_print(new);
+ term_print(handle.term);
fprintf(stderr, "\n");
- map_dump();
+ map_dump(map_all_terms());
/* schedule_init(); */
/* schedule(); */
/* schedule_destroy(); */
- map_destroy();
+ map_destroy(map_all_terms());
return 0;
}