You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2026. It is now read-only.
refactor: deduplicate DijkstraEntry between GraphUtils and ShortestPathFinder
ShortestPathFinder had its own private DijkstraEntry class that was
identical to the one in GraphUtils. Made GraphUtils.DijkstraEntry
package-visible and updated ShortestPathFinder to reuse it.
This eliminates a duplicated inner class (~15 lines) and ensures any
future improvements to the PQ entry type only need to happen in one
place.
0 commit comments