snark-tool 0.4.0

snark-tool library contains structures and algorithm for (mainly) cubic graph analysis
Documentation
//! Module graph contains graph structures.
//!
//! # Basic usage:
//!
//! ```
//! use snark_tool::graph::graph::{Graph, GraphConstructor};
//! use snark_tool::graph::undirected::simple_graph::graph::SimpleGraph;
//!
//! fn main() {
//!     let mut graph = SimpleGraph::new();
//!     graph.add_edge(0, 5);
//!     graph.add_edge(2, 4);
//!
//!     for edge in graph.edges() {
//!         println!("{:?}", edge);
//!     }
//! }
//! ```

pub mod directed;
pub mod edge;
pub mod graph;
pub mod undirected;
pub mod vertex;