(
graph: &PyGraphView,
)
| 136 | #[pyfunction] |
| 137 | #[pyo3(signature = (graph))] |
| 138 | pub fn weakly_connected_components( |
| 139 | graph: &PyGraphView, |
| 140 | ) -> OutputTypedNodeState<'static, DynamicGraph> { |
| 141 | components::weakly_connected_components(&graph.graph).to_output_nodestate() |
| 142 | } |
| 143 | |
| 144 | /// Strongly connected components |
| 145 | /// |