diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/reducer.h | 8 | ||||
-rw-r--r-- | inc/term.h | 7 |
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 @@ -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; }; |