1/* 2 Appellation: scg <module> 3 Contrib: FL03 <jo3mccain@icloud.com> 4*/ 5//! # Static Computational Graph 6//! 7//! 8pub use self::{edge::*, graph::*, node::*}; 9 10pub(crate) mod edge; 11pub(crate) mod graph; 12pub(crate) mod node; 13 14#[cfg(test)] 15mod tests {}