rsdiff-graphs 0.0.2

Computational graphs for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*
    Appellation: cg <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
pub use self::{edge::Edge, graph::*, node::Node};

pub(crate) mod graph;

pub mod edge;
pub mod node;

pub(crate) type CGraph<T> = petgraph::graph::DiGraph<Node<T>, Edge>;