aboutsummaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorMarvin Borner2023-01-31 09:02:07 +0100
committerMarvin Borner2023-01-31 09:02:07 +0100
commitc964ff22469702d9d7f13bf1c12bcadcb1dc1afe (patch)
tree16c1fd43282810d6eb0af25abd13c829b3e6b017 /inc
parent6e8596cc1a259169b173d617a0135daa8ae1cb45 (diff)
Normalization
Diffstat (limited to 'inc')
-rw-r--r--inc/reducer.h8
-rw-r--r--inc/term.h7
2 files changed, 13 insertions, 2 deletions
diff --git a/inc/reducer.h b/inc/reducer.h
new file mode 100644
index 0000000..28fe8b1
--- /dev/null
+++ b/inc/reducer.h
@@ -0,0 +1,8 @@
+#ifndef REDUCER_H
+#define REDUCER_H
+
+#include <term.h>
+
+struct term *reduce(struct term *term);
+
+#endif
diff --git a/inc/term.h b/inc/term.h
index e750beb..9c7dbc9 100644
--- a/inc/term.h
+++ b/inc/term.h
@@ -1,20 +1,23 @@
#ifndef TERM_H
#define TERM_H
-typedef int bruijn;
typedef enum { INV, ABS, APP, VAR } term_type;
struct term {
term_type type;
union {
struct {
+ int name;
struct term *term;
} abs;
struct {
struct term *lhs;
struct term *rhs;
} app;
- bruijn var;
+ struct {
+ int name;
+ enum { BRUIJN_INDEX, BARENDREGT_VARIABLE } type;
+ } var;
} u;
};