aboutsummaryrefslogtreecommitdiff
path: root/inc/tree.h
diff options
context:
space:
mode:
authorMarvin Borner2023-04-14 18:02:02 +0200
committerMarvin Borner2023-04-14 18:02:02 +0200
commit35702ebb4997f5f1aec25ba1c9ba257f352ea493 (patch)
treee3dd9e543a3344cba23e48dc6bf903d65bc7e2a3 /inc/tree.h
parent43996255f614ac57deb2fc0666f221853c60b343 (diff)
pqueue lib and fixes
this makes everything dramatically faster
Diffstat (limited to 'inc/tree.h')
-rw-r--r--inc/tree.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/tree.h b/inc/tree.h
index a3be29c..8addf7e 100644
--- a/inc/tree.h
+++ b/inc/tree.h
@@ -18,6 +18,7 @@ struct tree {
uint32_t hash;
int state; // zero or index to ref
int size; // blc length
+ int duplication_count; // needed count to be considered for deduplication
union {
struct {
struct tree *term;