aboutsummaryrefslogtreecommitdiff
path: root/inc/term.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-27 10:07:24 +0200
committerMarvin Borner2023-05-27 10:07:24 +0200
commitabf68e0ad6c9f6d6cd14693894c609faca925e22 (patch)
tree0ac1a7f74f1543d8343ed346c577dbf1cda93bfe /inc/term.h
parent337ec809393b709b36ca7b64d77489ae4bc1af1c (diff)
Moved term logic
Diffstat (limited to 'inc/term.h')
-rw-r--r--inc/term.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/inc/term.h b/inc/term.h
new file mode 100644
index 0000000..b64b106
--- /dev/null
+++ b/inc/term.h
@@ -0,0 +1,33 @@
+// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
+// SPDX-License-Identifier: MIT
+
+#ifndef CALM_TERM_H
+#define CALM_TERM_H
+
+#include <lib/hash.h>
+
+typedef enum { INV, ABS, APP, VAR } term_type_t;
+
+struct term {
+ term_type_t type;
+ hash_t hash;
+ size_t refs;
+ size_t depth;
+ union {
+ struct {
+ struct term *term;
+ } abs;
+ struct {
+ struct term *lhs;
+ struct term *rhs;
+ } app;
+ struct {
+ int index;
+ } var;
+ } u;
+};
+
+struct term *term_new(term_type_t type, hash_t hash, size_t depth);
+void term_refer(struct term *term, size_t depth);
+
+#endif