()
| 133 | } |
| 134 | |
| 135 | fn main() { |
| 136 | let data = [ |
| 137 | [1,2],[2,1],[1,3],[3,1],[2,4],[4,2],[2,5], |
| 138 | [5,2],[3,6],[6,3],[3,7],[7,3],[4,5],[5,4], |
| 139 | [6,7],[7,6],[5,8],[8,5],[6,8],[8,6] |
| 140 | ]; |
| 141 | let gp = build_graph(data); |
| 142 | bfs(gp); |
| 143 | } |
nothing calls this directly
no test coverage detected