catlog::one::category

Trait Category

Source
pub trait Category {
    type Ob: Eq + Clone;
    type Mor: Eq + Clone;

    // Required methods
    fn has_ob(&self, x: &Self::Ob) -> bool;
    fn has_mor(&self, f: &Self::Mor) -> bool;
    fn dom(&self, f: &Self::Mor) -> Self::Ob;
    fn cod(&self, f: &Self::Mor) -> Self::Ob;
    fn compose(&self, path: Path<Self::Ob, Self::Mor>) -> Self::Mor;

    // Provided methods
    fn compose2(&self, f: Self::Mor, g: Self::Mor) -> Self::Mor { ... }
    fn id(&self, x: Self::Ob) -> Self::Mor { ... }
}
Expand description

A category.

We take the unbiased view of categories, meaning that composition is an operation on paths of arbitrary finite length. This has several advantages. First, it takes as primitive the natural data structure for morphisms in a free category, or more generally in a presentation of a category. It also enables more intelligent strategies for evaluating composites in specific categories. For instance, when composing (multiplying) a sequence of matrices, it can be very inefficient to just fold from the left or right, compared to multiplying in the optimal order.

Required Associated Types§

Source

type Ob: Eq + Clone

Type of objects in category.

Source

type Mor: Eq + Clone

Type of morphisms in category.

Required Methods§

Source

fn has_ob(&self, x: &Self::Ob) -> bool

Does the category contain the value as an object?

Source

fn has_mor(&self, f: &Self::Mor) -> bool

Does the category contain the value as a morphism?

Source

fn dom(&self, f: &Self::Mor) -> Self::Ob

Gets the domain of a morphism in the category.

Source

fn cod(&self, f: &Self::Mor) -> Self::Ob

Gets the codomain of a morphism in the category.

Source

fn compose(&self, path: Path<Self::Ob, Self::Mor>) -> Self::Mor

Composes a path of morphisms in the category.

Provided Methods§

Source

fn compose2(&self, f: Self::Mor, g: Self::Mor) -> Self::Mor

Composes a pair of morphisms with compatible (co)domains.

Source

fn id(&self, x: Self::Ob) -> Self::Mor

Constructs the identity morphism at an object.

Implementors§

Source§

impl<G: Graph> Category for FreeCategory<G>

Source§

type Ob = <G as Graph>::V

Source§

type Mor = Path<<G as Graph>::V, <G as Graph>::E>

Source§

impl<Id, Cat> Category for DiscreteDblModel<Id, Cat>
where Id: Eq + Clone + Hash, Cat: FgCategory, Cat::Ob: Hash, Cat::Mor: Hash,

Source§

type Ob = Id

Source§

type Mor = Path<Id, Id>

Source§

impl<Id, ThId, S> Category for DiscreteTabModel<Id, ThId, S>
where Id: Eq + Clone + Hash,

Source§

type Ob = TabOb<Id, Id>

Source§

type Mor = Path<TabOb<Id, Id>, TabEdge<Id, Id>>

Source§

impl<S: Set> Category for DiscreteCategory<S>

Source§

type Ob = <S as Set>::Elem

Source§

type Mor = <S as Set>::Elem

Source§

impl<V, E, EqKey, S> Category for FpCategory<V, E, EqKey, S>
where V: Eq + Clone + Hash, E: Eq + Clone + Hash, EqKey: Eq + Clone + Hash, S: BuildHasher,

Source§

type Ob = V

Source§

type Mor = Path<V, E>

Source§

impl<V, E, S> Category for FinCategory<V, E, S>
where V: Eq + Hash + Clone, E: Eq + Hash + Clone, S: BuildHasher,

Source§

type Ob = V

Source§

type Mor = FinMor<V, E>