pub trait ColumnarGraph {
type V: Eq + Clone;
type E: Eq + Clone;
type Vertices: Set<Elem = Self::V>;
type Edges: Set<Elem = Self::E>;
type Src: MutMapping<Dom = Self::E, Cod = Self::V>;
type Tgt: MutMapping<Dom = Self::E, Cod = Self::V>;
// Required methods
fn vertex_set(&self) -> &Self::Vertices;
fn edge_set(&self) -> &Self::Edges;
fn src_map(&self) -> &Self::Src;
fn tgt_map(&self) -> &Self::Tgt;
// Provided methods
fn get_src(&self, e: &Self::E) -> Option<&Self::V> { ... }
fn get_tgt(&self, e: &Self::E) -> Option<&Self::V> { ... }
}
Expand description
A graph backed by sets and mappings.
Such a graph is defined in copresheaf style by two sets and two
mappings. Implementing this trait provides a blanket implementation
of Graph
. This is the easiest way to define a new graph type.
This trait does not assume that the graph is mutable; for that, you must also
implement the trait MutColumnarGraph
.
Required Associated Types§
Sourcetype Src: MutMapping<Dom = Self::E, Cod = Self::V>
type Src: MutMapping<Dom = Self::E, Cod = Self::V>
The map assigning each edge its source vertex.
Sourcetype Tgt: MutMapping<Dom = Self::E, Cod = Self::V>
type Tgt: MutMapping<Dom = Self::E, Cod = Self::V>
The map assigning each edge its target vertex.
Required Methods§
Sourcefn vertex_set(&self) -> &Self::Vertices
fn vertex_set(&self) -> &Self::Vertices
Gets the set of vertices.