1 unstable release
new 0.1.0 | Apr 4, 2025 |
---|
#58 in #graph-algorithms
Used in 47 crates
(28 directly)
17KB
192 lines
iCentral-Edges
icentral-edges
is a Rust crate designed for advanced manipulation and analysis of graph edges, providing extensible trait-based interfaces for edge-centric operations. This library caters to developers working with complex graph data structures, offering elegant solutions for edge management and traversal.
Features
- Edge Management: Easily track, add, and remove edges in your graph with traits like
InsertEdge
,RemoveEdge
, and more. - Graph Traversability: Efficiently query edge connections with
connects
,edges_to_node
, andedges_from_node
methods. - Data Structure Implementation: Employs
HashSet
for optimal edge storage and retrieval. - Custom Naming: Support for naming edge collections with
SetName
and related methods. - Batch Operations: Create edge collections from vectors or sets and extend existing collections.
Getting Started
To utilize icentral-edges
, include it in your Cargo.toml
:
[dependencies]
icentral-edges = "0.1.0"
Implement the provided traits on your graph structures to seamlessly integrate edge functionalities.
Usage Example
use icentral_edges::{Edges, InsertEdge, RemoveEdge};
let mut edges = Edges::empty("my_graph_edges");
// Insert an edge
let result = edges.insert_edge(&Edge::new(1, 2));
assert!(result.is_ok());
// Check for connections
assert!(edges.connects(1, 2));
// Remove an edge
let result = edges.remove_edge(&Edge::new(1, 2));
assert!(result.is_ok());
Additional Information
This README was generated by an AI model and may not be 100% accurate; however, it should be highly reliable.
For more comprehensive documentation, please refer to the source code and inline comments. Collaborate and contribute to the project by visiting the repository on GitHub. Your input is invaluable in enhancing and refining this crate.
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