linnet/
lib.rs

1//! # Linnet
2//!
3//! Linnet is a Rust library dedicated to graph data structures and algorithms.
4//! Its primary focus is on providing tools and functionalities for working with
5//! sub-graphs and performing node-identification tasks.
6//!
7//! This library is useful for scenarios where you need to analyze or manipulate
8//! parts of a graph, or identify and manage specific nodes within a larger
9//! graph structure.
10
11pub mod drawing;
12pub mod half_edge;
13pub mod num_traits;
14pub mod parser;
15pub mod permutation;
16pub mod tree;
17pub mod union_find;