Type Alias SkelGraphMapping

Source
pub type SkelGraphMapping = ColumnarGraphMapping<VecColumn<usize>, VecColumn<usize>>;
Expand description

A graph mapping between skeletal finite graphs, backed by vectors.

Aliased Type§

struct SkelGraphMapping { /* private fields */ }

Implementations§

Source§

impl SkelGraphMapping

Source

pub fn from_vec(vertex_map: Vec<usize>, edge_map: Vec<usize>) -> Self

Constructs a graph mapping from a pair of vectors.