pub trait Graph {
type V: Eq + Clone;
type E: Eq + Clone;
// Required methods
fn has_vertex(&self, v: &Self::V) -> bool;
fn has_edge(&self, e: &Self::E) -> bool;
fn src(&self, e: &Self::E) -> Self::V;
fn tgt(&self, e: &Self::E) -> Self::V;
}
Expand description
A graph.
This is a graph in the category theorist’s sense, i.e., it is directed and admits multiple edges and self loops. Moreover, a graph is not assumed to be finite, even locally.
Required Associated Types§
Required Methods§
Sourcefn has_vertex(&self, v: &Self::V) -> bool
fn has_vertex(&self, v: &Self::V) -> bool
Does the graph contain the value as a vertex?