| 4 | |
| 5 | class Graph { |
| 6 | class Edge implements Comparable<Edge> { |
| 7 | int src, dest, weight; |
| 8 | |
| 9 | public int compareTo(Edge compareEdge) { |
| 10 | return this.weight - compareEdge.weight; |
| 11 | } |
| 12 | }; |
| 13 | |
| 14 | // Union |
| 15 | class subset { |
nothing calls this directly
no outgoing calls
no test coverage detected