Type Alias SkelShortPath

Source
pub type SkelShortPath = ShortPath<usize, usize>;
Expand description

A short path in a graph with skeletal vertex and edge sets.

Aliased Type§

enum SkelShortPath {
    Zero(usize),
    One(usize),
}

Variants§

§

Zero(usize)

Path of length zero.

§

One(usize)

Path of length one.