diff options
author | Marvin Borner | 2024-01-21 12:32:30 +0100 |
---|---|---|
committer | Marvin Borner | 2024-01-21 12:32:30 +0100 |
commit | 95e390fa271a0b911a5e0475f24f2fee55f3edec (patch) | |
tree | c7e35d975f0a7f3a0fe24110a3fa9ec7e3cfd8cd /src/tree.c | |
parent | 076d528bfaa55b71f9653c0579723ff565db5e7f (diff) |
For cool optimizer in blocade, hint hint :)
Diffstat (limited to 'src/tree.c')
-rw-r--r-- | src/tree.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -55,6 +55,7 @@ static int hash_compare(const void *_a, const void *_b) // applies the hash function to the tree's elements (similar to merkle trees) // also creates a set of lists with deduplication candidates // TODO: as above: rethink hash choice +extern size_t min_size; static struct tree *build_tree(struct term *term, void **set) { struct tree *tree = malloc(sizeof(*tree)); @@ -90,7 +91,7 @@ static struct tree *build_tree(struct term *term, void **set) fatal("invalid type %d\n", term->type); } - if (tree->size < 10) // not suitable for deduplication + if (tree->size < min_size) // not suitable for deduplication return tree; struct hash_to_list *element = malloc(sizeof(*element)); |