Files
Pumpkin/crates
Andrew ddd98c88d9 perf(pathfinder): use FxHashMap in compute_path (#2417)
The rest of the pathfinder already uses rustc-hash's FxHashMap/FxHashSet, but
compute_path's closed_set, the path-reconstruction visited set, and the
Navigator's path_type_overrides were still on the default SipHash hasher.
Switch them to FxHashMap/FxHashSet for consistency and to shave hashing off the
per-repath hot path. Keys are Vector3<i32>/PathType (small, internal). No new
dependency and no behavior change.
2026-08-13 18:14:13 +02:00
..