()
| 129 | |
| 130 | #[test] |
| 131 | fn scc() { |
| 132 | let graph = create_digraph(TINY_DG); |
| 133 | let scc = KosarajuSCC::new(graph.as_ref()); |
| 134 | assert_eq!(5, scc.count()); |
| 135 | } |
| 136 | |
| 137 | #[test] |
| 138 | fn transitive_closure() { |
nothing calls this directly
no test coverage detected