diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-09-05 10:04:34 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-09-05 10:04:34 +0200 |
| commit | b17411249b17133f35833c202e6c2e4bf43b3298 (patch) | |
| tree | 3417a006ee5207b4ff9a2bfcc4bc971853d24577 /src/solvers/h48/map.h | |
| parent | fd5ddb3db9f50411ca579d84f225f265ca35b56a (diff) | |
| download | nissy-core-b17411249b17133f35833c202e6c2e4bf43b3298.tar.gz nissy-core-b17411249b17133f35833c202e6c2e4bf43b3298.zip | |
More renaming
Diffstat (limited to 'src/solvers/h48/map.h')
| -rw-r--r-- | src/solvers/h48/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/solvers/h48/map.h b/src/solvers/h48/map.h index 34416fc..baffe39 100644 --- a/src/solvers/h48/map.h +++ b/src/solvers/h48/map.h | |||
| @@ -67,7 +67,7 @@ h48map_insertmin(h48map_t *map, uint64_t key, uint64_t val) | |||
| 67 | 67 | ||
| 68 | i = h48map_lookup(map, key); | 68 | i = h48map_lookup(map, key); |
| 69 | oldval = map->table[i] >> MAP_KEYSHIFT; | 69 | oldval = map->table[i] >> MAP_KEYSHIFT; |
| 70 | min = _min(val, oldval); | 70 | min = MIN(val, oldval); |
| 71 | 71 | ||
| 72 | map->n += map->table[i] == MAP_UNSET; | 72 | map->n += map->table[i] == MAP_UNSET; |
| 73 | map->table[i] = (key & MAP_KEYMASK) | (min << MAP_KEYSHIFT); | 73 | map->table[i] = (key & MAP_KEYMASK) | (min << MAP_KEYSHIFT); |
