| 12 | use crate::graph::IGraph; |
| 13 | |
| 14 | pub struct TransitiveClosure { |
| 15 | tc: Vec<DirectedDFS>, // tc[v] = reachable from v |
| 16 | } |
| 17 | |
| 18 | impl TransitiveClosure { |
| 19 | /// Computes the transitive closure of the digraph |
nothing calls this directly
no outgoing calls
no test coverage detected