pub type SkelPath = Path<usize, usize>;
A path in a graph with skeletal vertex and edge sets.
enum SkelPath { Id(usize), Seq(NonEmpty<usize>), }
The identity, or empty, path at a vertex.
A nontrivial path, comprising a non-empty vector of consecutive edges.