Enum matrixgraph::Graph [] [src]

pub enum Graph {
    SimpleGraph,
    Digraph,
}

An enum of structs representing graphs

Variants

A simple graph represented by the upper right triangle of an adjacency matrix of fixed size

A digraph represented by a dense adjacency matrix of fixed size