catlog::one::path

Type Alias SkelPath

Source
pub type SkelPath = Path<usize, usize>;
Expand description

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

Aliased Type§

enum SkelPath {
    Id(usize),
    Seq(NonEmpty<usize>),
}

Variants§

§

Id(usize)

The identity, or empty, path at a vertex.

§

Seq(NonEmpty<usize>)

A nontrivial path, comprising a non-empty vector of consecutive edges.