From ea0387796a349c91032fbcb10f50c6ad8607b0f6 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 29 Jul 2025 12:12:43 +0200 Subject: All coordinates unsigned --- src/solvers/h48/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/solvers/h48/map.h') diff --git a/src/solvers/h48/map.h b/src/solvers/h48/map.h index 7718794..b603ee3 100644 --- a/src/solvers/h48/map.h +++ b/src/solvers/h48/map.h @@ -12,7 +12,7 @@ h48map_create(h48map_t map[static 1], uint64_t capacity, uint64_t randomizer) map->capacity = capacity; map->randomizer = randomizer; - map->table = malloc(map->capacity * sizeof(int64_t)); + map->table = malloc(map->capacity * sizeof(uint64_t)); h48map_clear(map); } -- cgit v1.3