aboutsummaryrefslogtreecommitdiff
path: root/inc/term.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-06 20:19:23 +0200
committerMarvin Borner2023-05-06 20:19:23 +0200
commitb31220aadc24ff137a4fe4bc39780ae63c58e11b (patch)
tree89e431ad99e85f581dbea56d61abac6794386f2a /inc/term.h
parentd19f7f5bb99ca1073edb3ce1b13e782a3f598b4a (diff)
Start fresh
Diffstat (limited to 'inc/term.h')
-rw-r--r--inc/term.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/inc/term.h b/inc/term.h
deleted file mode 100644
index 4f6f5ce..0000000
--- a/inc/term.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
-
-#ifndef TERM_H
-#define TERM_H
-
-typedef enum { INV, ABS, APP, VAR, CLOSURE, CACHE } term_type;
-
-struct term {
- term_type type;
- union {
- struct {
- int name;
- struct term *term;
- } abs;
- struct {
- struct term *lhs;
- struct term *rhs;
- } app;
- struct {
- int name;
- enum { BARENDREGT_VARIABLE, BRUIJN_INDEX } type;
- } var;
- void *other;
- } u;
-};
-
-void to_barendregt(struct term *term);
-void to_bruijn(struct term *term);
-struct term *new_term(term_type type);
-struct term *duplicate_term(struct term *term);
-int alpha_equivalency(struct term *a, struct term *b);
-void free_term(struct term *term);
-void print_term(struct term *term);
-void print_blc(struct term *term);
-void print_scheme(struct term *term);
-
-#endif