diff options
author | Marvin Borner | 2023-05-21 20:29:35 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-21 20:29:35 +0200 |
commit | 1c9a2f192dad4847fb0205fa33d4caa17f7e53a8 (patch) | |
tree | a8a3bf2b882799445d29a3352ab6cdb4a446b1c0 /src/optimize.c | |
parent | 05d9c29717f7ae31dfad9230d469af0fa7f0c761 (diff) |
Generalized hash function
I also tried murmur64 but I don't see any reason for actually switching
Diffstat (limited to 'src/optimize.c')
-rw-r--r-- | src/optimize.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/optimize.c b/src/optimize.c index a79299e..7929407 100644 --- a/src/optimize.c +++ b/src/optimize.c @@ -8,19 +8,20 @@ #include <assert.h> #include <stdlib.h> +#include <hash.h> #include <log.h> #include <optimize.h> #include <pqueue.h> struct tree_tracker { - uint32_t hash; + hash_t hash; struct tree *tree; int count; // reference/occurrence count size_t position; // in queue }; struct hash_to_tree { - uint32_t hash; + hash_t hash; struct tree *tree; }; |