Trait VDCWithComposites

Source
pub trait VDCWithComposites: VDblCategory {
    // Required methods
    fn composite_ext(
        &self,
        path: Path<Self::Ob, Self::Pro>,
    ) -> Option<Self::Cell>;
    fn through_composite(
        &self,
        cell: Self::Cell,
        range: Range<usize>,
    ) -> Option<Self::Cell>;

    // Provided methods
    fn has_composite(&self, path: &Path<Self::Ob, Self::Pro>) -> bool { ... }
    fn has_unit(&self, x: &Self::Ob) -> bool { ... }
    fn composite2_ext(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Cell> { ... }
    fn composite(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Pro> { ... }
    fn composite2(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Pro> { ... }
    fn unit_ext(&self, x: Self::Ob) -> Option<Self::Cell> { ... }
    fn unit(&self, x: Self::Ob) -> Option<Self::Pro> { ... }
    fn through_unit(&self, cell: Self::Cell, index: usize) -> Option<Self::Cell> { ... }
}
Expand description

A virtual double category with some or all chosen composites.

Like anything defined by a universal property, composites in a VDC are not strictly unique if they exist but they are unique up to unique isomorphism. As often when working with (co)limits, this trait assumes that a choice of composites has been made whenever they are exist. We do not attempt to “recognize” whether an arbitrary cell has the relevant universal property.

Required Methods§

Source

fn composite_ext(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Cell>

Gets the chosen cell witnessing a composite of proarrows, if there is one.

Such a cell is called an **extension or opcartesian cell.

Source

fn through_composite( &self, cell: Self::Cell, range: Range<usize>, ) -> Option<Self::Cell>

Factorizes a cell through a composite of proarrows.

The subpath of the domain path at the given range is replaced with the composite of that subpath, if the composite exists. This is the universal property of the composite.

Provided Methods§

Source

fn has_composite(&self, path: &Path<Self::Ob, Self::Pro>) -> bool

Does the path of proarrows have a chosen composite?

The default implementation checks whether composite returns something.

Source

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

Does the object have a chosen unit?

The default implementation checks whether unit returns something.

Source

fn composite2_ext(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Cell>

Gets the chosen cell witnessing a composite of two proarrows, if there is one.

Source

fn composite(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Pro>

Gets the chosen composite for a path of proarrows, if there is one.

The default implementation returns the codomain of the extension cell from composite_ext.

Source

fn composite2(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Pro>

Gets the chosen composite for a pair of consecutive proarrows, if there is one.

Source

fn unit_ext(&self, x: Self::Ob) -> Option<Self::Cell>

Gets the chosen extension cell for an object, if there is one.

Such a cell is an extension or opcartesian cell in the nullary case.

Source

fn unit(&self, x: Self::Ob) -> Option<Self::Pro>

Gets the chosen unit for an object, if there is one.

The default implementation returns the codomain of the extension cell from unit_ext.

Source

fn through_unit(&self, cell: Self::Cell, index: usize) -> Option<Self::Cell>

Factorizes a cell through the unit proarrow for an object.

A unit proarrow is inserted into the domain path at the given index, if the unit exists. This is the universal property of the unit.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl VDCWithComposites for catlog::dbl::category::WalkingBimodule::Main

Source§

impl VDCWithComposites for catlog::dbl::category::WalkingFunctor::Main

Source§

impl VDCWithComposites for WalkingCategory

Source§

impl<C: FgCategory> VDCWithComposites for DiscreteDblTheory<C>
where C::Ob: Clone, C::Mor: Clone,

Source§

impl<V, E, S> VDCWithComposites for DiscreteTabTheory<V, E, S>
where V: Eq + Clone + Hash, E: Eq + Clone + Hash, S: BuildHasher,