diff options
author | Marvin Borner | 2023-05-21 18:09:04 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-21 18:51:58 +0200 |
commit | 7ebabbb0022bce1cd6c05db583acb20d8659a356 (patch) | |
tree | d95ce3a5f6897ad19bc4ea6ccdfb603035a5908d /inc/tree.h | |
parent | 8499010b91a2c7496d6af74cce35a6b4e0378633 (diff) |
Added additional optimizer
This will be useful for variadic index lengths
Diffstat (limited to 'inc/tree.h')
-rw-r--r-- | inc/tree.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |