snark-tool 0.4.0

snark-tool library contains structures and algorithm for (mainly) cubic graph analysis
Documentation
1
2
3
4
5
6
7
pub trait Vertex {
    fn index(&self) -> usize;
}

pub trait VertexConstructor {
    fn new(index: usize) -> Self;
}