gt-graph 0.1.1

base crate for a gtaph theory
Documentation
1
2
3
4
5
6
7
pub trait Graph {
    fn dimension(&self) -> Dims;
    fn phi(&self, n: Dims, s: Node) -> Node;
}

pub type Node = u64;
pub type Dims = u64;