lattice-core 0.1.0

Simple Lattice/Graph Library
Documentation
1
2
3
4
5
6
7
8
9
use lattice_core::Graph;

#[path = "support/mod.rs"]
mod support;

fn main() {
    let graph = Graph::simple(1, 16);
    support::print_graph(&graph);
}