Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix metric offset overflow for large MLD partitions (#6124)
Each MLD cell has source and destination nodes. MLD is keeping a |source| x |destination| sized table for various metrics (distances, durations, etc) from each source to all destinations in a cell. It stores all of the values for a metric in one large array, with an offset for each cell to find its values. The offset is currently limited to 32 bit values, which overflows on very large graphs (e.g. Planet OSM). We fix this by changing the offsets to be uint64_t types.
- Loading branch information