aboutsummaryrefslogtreecommitdiff
path: root/inc/tree.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-21 18:09:04 +0200
committerMarvin Borner2023-05-21 18:51:58 +0200
commit7ebabbb0022bce1cd6c05db583acb20d8659a356 (patch)
treed95ce3a5f6897ad19bc4ea6ccdfb603035a5908d /inc/tree.h
parent8499010b91a2c7496d6af74cce35a6b4e0378633 (diff)
Added additional optimizer
This will be useful for variadic index lengths
Diffstat (limited to 'inc/tree.h')
-rw-r--r--inc/tree.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/inc/tree.h b/inc/tree.h
index 8addf7e..41ad27a 100644
--- a/inc/tree.h
+++ b/inc/tree.h
@@ -31,7 +31,8 @@ struct tree {
int index;
} var;
struct {
- size_t index;
+ size_t hash;
+ int table_index;
} ref;
} u;
};
@@ -42,7 +43,8 @@ struct list {
struct list *next;
};
-struct list *tree_merge_duplicates(struct term *term);
+struct list *list_add(struct list *list, void *data);
+struct tree *tree_merge_duplicates(struct term *term, void **all_trees);
void tree_destroy(struct list *table);
#endif