Searched defs:SccsConstruction (Results 1 – 1 of 1) sorted by relevance
| /third_party/rust/rust/compiler/rustc_data_structures/src/graph/scc/ |
| D | mod.rs | 161 struct SccsConstruction<'c, G: DirectedGraph + WithNumNodes + WithSuccessors, S: Idx> { struct 162 graph: &'c G, 167 node_states: IndexVec<G::Node, NodeState<G::Node, S>>, 170 node_stack: Vec<G::Node>, 176 successors_stack: Vec<S>, 182 duplicate_set: FxHashSet<S>, 184 scc_data: SccData<S>, 219 impl<'c, G, S> SccsConstruction<'c, G, S> impl
|