pub trait VDblGraph {
type V: Eq + Clone;
type E: Eq + Clone;
type ProE: Eq + Clone;
type Sq: Eq + Clone;
Show 13 methods
// Required methods
fn has_vertex(&self, v: &Self::V) -> bool;
fn has_edge(&self, e: &Self::E) -> bool;
fn has_proedge(&self, p: &Self::ProE) -> bool;
fn has_square(&self, sq: &Self::Sq) -> bool;
fn dom(&self, e: &Self::E) -> Self::V;
fn cod(&self, e: &Self::E) -> Self::V;
fn src(&self, p: &Self::ProE) -> Self::V;
fn tgt(&self, p: &Self::ProE) -> Self::V;
fn square_dom(&self, sq: &Self::Sq) -> Path<Self::V, Self::ProE>;
fn square_cod(&self, sq: &Self::Sq) -> Self::ProE;
fn square_src(&self, sq: &Self::Sq) -> Self::E;
fn square_tgt(&self, sq: &Self::Sq) -> Self::E;
// Provided method
fn arity(&self, sq: &Self::Sq) -> usize { ... }
}
Expand description
A virtual double graph, the data underlying a virtual double category.
Following our nomenclature for double categories, we say that an edge in a double graph has a domain and codomain, whereas a proedge has a source and a target. A square has all four of those.
Required Associated Types§
Required Methods§
Sourcefn has_vertex(&self, v: &Self::V) -> bool
fn has_vertex(&self, v: &Self::V) -> bool
Does the vertex belong to the double graph?
Sourcefn has_proedge(&self, p: &Self::ProE) -> bool
fn has_proedge(&self, p: &Self::ProE) -> bool
Does the proedge belong to the double graph?
Sourcefn has_square(&self, sq: &Self::Sq) -> bool
fn has_square(&self, sq: &Self::Sq) -> bool
Does the square belong to the double graph?
Sourcefn square_dom(&self, sq: &Self::Sq) -> Path<Self::V, Self::ProE>
fn square_dom(&self, sq: &Self::Sq) -> Path<Self::V, Self::ProE>
Gets the domain of a square, a path of proedges.
Sourcefn square_cod(&self, sq: &Self::Sq) -> Self::ProE
fn square_cod(&self, sq: &Self::Sq) -> Self::ProE
Gets the codomain of a square, a single proedge.
Sourcefn square_src(&self, sq: &Self::Sq) -> Self::E
fn square_src(&self, sq: &Self::Sq) -> Self::E
Gets the source of a square, an edge.
Sourcefn square_tgt(&self, sq: &Self::Sq) -> Self::E
fn square_tgt(&self, sq: &Self::Sq) -> Self::E
Gets the target of a square, an edge.