(int a[], int b[])
| 57 | // [u,w] (node, weight to node) |
| 58 | PriorityQueue<int[]> queue = new PriorityQueue<>(new Comparator<int[]>(){ |
| 59 | public int compare(int a[], int b[]){ |
| 60 | return a[1] - b[1]; |
| 61 | } |
| 62 | }); |
| 63 | |
| 64 | Arrays.fill(minDistance, INF); |
nothing calls this directly
no outgoing calls
no test coverage detected