aboutsummaryrefslogtreecommitdiff
path: root/src/optimize.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-21 20:29:35 +0200
committerMarvin Borner2023-05-21 20:29:35 +0200
commit1c9a2f192dad4847fb0205fa33d4caa17f7e53a8 (patch)
treea8a3bf2b882799445d29a3352ab6cdb4a446b1c0 /src/optimize.c
parent05d9c29717f7ae31dfad9230d469af0fa7f0c761 (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.c5
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;
};