catlog::one::graph

Trait Graph

Source
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§

Source

type V: Eq + Clone

Type of vertices in graph.

Source

type E: Eq + Clone

Type of edges in graph.

Required Methods§

Source

fn has_vertex(&self, v: &Self::V) -> bool

Does the graph contain the value as a vertex?

Source

fn has_edge(&self, e: &Self::E) -> bool

Does the graph contain the value as an edge?

Source

fn src(&self, e: &Self::E) -> Self::V

Gets the source of an edge, assumed to be contained in the graph.

Source

fn tgt(&self, e: &Self::E) -> Self::V

Gets the target of an edge, assumed to be contained in the graph.

Implementors§

Source§

impl<Cat: Category> Graph for UnderlyingGraph<Cat>

Source§

type V = <Cat as Category>::Ob

Source§

type E = <Cat as Category>::Mor

Source§

impl<G: ColumnarGraph> Graph for G

Source§

type V = <G as ColumnarGraph>::V

Source§

type E = <G as ColumnarGraph>::E

Source§

impl<VDG: VDblGraph> Graph for EdgeGraph<VDG>

Source§

type V = <VDG as VDblGraph>::V

Source§

type E = <VDG as VDblGraph>::E

Source§

impl<VDG: VDblGraph> Graph for ProedgeGraph<VDG>

Source§

type V = <VDG as VDblGraph>::V

Source§

type E = <VDG as VDblGraph>::ProE