catlog::one::graph

Trait GraphMapping

Source
pub trait GraphMapping {
    type DomV: Eq + Clone;
    type DomE: Eq + Clone;
    type CodV: Eq + Clone;
    type CodE: Eq + Clone;

    // Required methods
    fn apply_vertex(&self, v: &Self::DomV) -> Option<Self::CodV>;
    fn apply_edge(&self, e: &Self::DomE) -> Option<Self::CodE>;
    fn is_vertex_assigned(&self, v: &Self::DomV) -> bool;
    fn is_edge_assigned(&self, e: &Self::DomE) -> bool;
}
Expand description

A mapping between graphs.

Just as a Mapping is the data of a function without specified domain or codomain sets, a graph mapping is the data of a graph homomorphism without specified domain or codomain graphs. Turning this around, a graph morphism is a pair of graphs with a compatible graph mapping.

Required Associated Types§

Source

type DomV: Eq + Clone

Type of vertices in domain graph.

Source

type DomE: Eq + Clone

Type of edges in domain graph.

Source

type CodV: Eq + Clone

Type of vertices in codomain graph.

Source

type CodE: Eq + Clone

Type of edges in codomain graph.

Required Methods§

Source

fn apply_vertex(&self, v: &Self::DomV) -> Option<Self::CodV>

Applies the graph mapping at a vertex.

Source

fn apply_edge(&self, e: &Self::DomE) -> Option<Self::CodE>

Applies the graph mapping at an edge.

Source

fn is_vertex_assigned(&self, v: &Self::DomV) -> bool

Is the mapping defined at a vertex?

Source

fn is_edge_assigned(&self, e: &Self::DomE) -> bool

Is the mapping defined at an edge?

Implementors§

Source§

impl<ColV, ColE> GraphMapping for ColumnarGraphMapping<ColV, ColE>
where ColV: MutMapping, ColE: MutMapping,

Source§

type DomV = <ColV as Mapping>::Dom

Source§

type DomE = <ColE as Mapping>::Dom

Source§

type CodV = <ColV as Mapping>::Cod

Source§

type CodE = <ColE as Mapping>::Cod