1 unstable release
new 0.1.0 | Apr 4, 2025 |
---|
#7 in #networkanalysis
Used in 19 crates
(2 directly)
17KB
166 lines
icentral-articulation-point
icentral-articulation-point
is a sophisticated Rust crate that provides an efficient implementation for identifying articulation points within a graph. Articulation points, also known as cut vertices, are crucial in understanding the vulnerability of networked systems as their removal increases the number of connected components in a graph.
Features
- Efficient Articulation Point Detection: Leverages depth-first search strategies for determining articulation points.
- Robust Context Management: Utilizes an internal context to manage traversal state, predicated on
ColorMap
,DistanceMap
, andPredecessorMap
for stateful execution. - Practical Error Handling: Implements comprehensive error management utilizing
BetweennessCentralityError
for resilience in complex computations.
Traits and Methods
FindArticulationPoints
This trait defines the core methods for articulation point detection:
fn find_articulation_points(&self, out_vec: &mut Vec<NodeId>)
: Initiates the discovery of articulation points and stores them in the provided vector.fn articulation_point_dfs_visitor(...)
: A recursive helper performing depth-first search to locate articulation points.fn articulation_point_dfs_visitor_step_tree_edge(...)
: Manages tree-edge transitions during DFS traversal.
Structures
ArticulationPointFinderContext<'a>
: Manages traversal metadata and state, indispensable for articulation point computation.
Usage
Add this crate to your Cargo.toml
:
[dependencies]
icentral-articulation-point = "0.1.0"
Implement FindArticulationPoints
for your graph type, ensuring that it accommodates graph-related traits such as NumNodes
and GetNeighborsForNode
.
Licenses
This crate is distributed under the terms of the MIT license.
This README was generated by an AI model and may not be 100% accurate, although it should provide a solid foundation.
This crate is in the process of being translated from c++ to rust. Currently, it still needs exhaustive testing. It is likely there currently exist many glitches which need to be fixed before proper usage. This crate is based on the original icentral program developed by Fuad Jamor. Please see the following repository for details: https://github.com/fjamour/icentral.
For progress updates, see the workspacer rust project.
Dependencies
~16–25MB
~388K SLoC