aboutsummaryrefslogtreecommitdiff
path: root/src/solvers/h48/map.h
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-07-29 12:12:43 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2025-07-29 12:12:43 +0200
commitea0387796a349c91032fbcb10f50c6ad8607b0f6 (patch)
treeaed484690d24c0c28c7695d4b5389f2e3c341b96 /src/solvers/h48/map.h
parent52c21640508c3fc668107778ae027ff4428ebd89 (diff)
downloadnissy-core-ea0387796a349c91032fbcb10f50c6ad8607b0f6.tar.gz
nissy-core-ea0387796a349c91032fbcb10f50c6ad8607b0f6.zip
All coordinates unsigned
Diffstat (limited to 'src/solvers/h48/map.h')
-rw-r--r--src/solvers/h48/map.h2
1 files changed, 1 insertions, 1 deletions
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)
12 map->capacity = capacity; 12 map->capacity = capacity;
13 map->randomizer = randomizer; 13 map->randomizer = randomizer;
14 14
15 map->table = malloc(map->capacity * sizeof(int64_t)); 15 map->table = malloc(map->capacity * sizeof(uint64_t));
16 h48map_clear(map); 16 h48map_clear(map);
17} 17}
18 18

Generated with cgit - Back to sebastiano.tronto.net