graph6-rs 0.2.1

A library for parsing graph6/digraph6 strings and converting them into other text based formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod conversion;
mod directed;
mod error;
mod undirected;
mod utils;
mod write;
pub use conversion::GraphConversion;
pub use directed::DiGraph;
pub use error::IOError;
pub use undirected::Graph;
pub use write::{write_graph6, WriteGraph};