()
| 16 | |
| 17 | #[test] |
| 18 | fn parse() { |
| 19 | let i = TINY_EWD; |
| 20 | let graph = create_graph(i); |
| 21 | assert_eq!(graph.V(), 8); |
| 22 | assert_eq!(graph.E(), 15); |
| 23 | /* |
| 24 | 8 15 |
| 25 | 0: 0->2 0.26 0->4 0.38 |
| 26 | 1: 1->3 0.29 |
| 27 | 2: 2->7 0.34 |
| 28 | 3: 3->6 0.52 |
| 29 | 4: 4->7 0.37 4->5 0.35 |
| 30 | 5: 5->1 0.32 5->7 0.28 5->4 0.35 |
| 31 | 6: 6->4 0.93 6->0 0.58 6->2 0.40 |
| 32 | 7: 7->3 0.39 7->5 0.28 |
| 33 | */ |
| 34 | // println!("{}", graph.to_string()); |
| 35 | } |
| 36 | |
| 37 | #[test] |
| 38 | fn dfs() { |
nothing calls this directly
no test coverage detected