catlog::dbl::theory

Struct DiscreteTabTheory

Source
pub struct DiscreteTabTheory<V, E, S = RandomState> { /* private fields */ }
Expand description

A discrete tabulator theory.

Loosely speaking, a discrete tabulator theory is a discrete double theory extended to allow tabulators. That doesn’t quite make sense as stated because a tabulator comes with two projection arrows and a projection cell, hence cannot exist in a nontrivial discrete double category. A discrete tabulator theory is rather a small double category with tabulators and with no arrows or cells beyond the identities and tabulator projections.

Implementations§

Source§

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

Source

pub fn new() -> Self
where S: Default,

Creates an empty discrete tabulator theory.

Source

pub fn tabulator(&self, m: TabMorType<V, E>) -> TabObType<V, E>

Constructs a tabulator of a morphism type.

Source

pub fn unary_projection(&self, proj: TabMorProj<V, E>) -> TabMorOp<V, E>

Constructs a unary projection cell for a tabulator.

Source

pub fn add_ob_type(&mut self, v: V) -> bool

Adds a basic object type to the theory.

Source

pub fn add_mor_type( &mut self, e: E, src: TabObType<V, E>, tgt: TabObType<V, E>, ) -> bool

Adds a basic morphism type to the theory.

Source

pub fn make_mor_type(&mut self, e: E) -> bool

Adds a basic morphim type without initializing its source or target.

Trait Implementations§

Source§

impl<V: Clone, E: Clone, S: Clone> Clone for DiscreteTabTheory<V, E, S>

Source§

fn clone(&self) -> DiscreteTabTheory<V, E, S>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<V, E, S> Default for DiscreteTabTheory<V, E, S>
where S: Default,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

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

Source§

type Ob = TabObType<V, E>

Type of objects in the VDC.
Source§

type Arr = Path<TabObType<V, E>, TabObProj<V, E>>

Type of arrows (tight morphisms) in the VDC.
Source§

type Pro = TabMorType<V, E>

Type of proarrows (loose morphisms) in the VDC.
Source§

type Cell = TabMorOp<V, E>

Type of cells in the VDC;
Source§

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

Does the object belong to the VDC?
Source§

fn has_arrow(&self, path: &Self::Arr) -> bool

Does the arrow belong to the VDC?
Source§

fn has_proarrow(&self, pro: &Self::Pro) -> bool

Does the proarrow belong to the VDC?
Source§

fn has_cell(&self, cell: &Self::Cell) -> bool

Does the cell belong to the VDC?
Source§

fn dom(&self, path: &Self::Arr) -> Self::Ob

Gets the domain of an arrow.
Source§

fn cod(&self, path: &Self::Arr) -> Self::Ob

Gets the codomain of an arrow.
Source§

fn src(&self, m: &Self::Pro) -> Self::Ob

Gets the source of a proarrow.
Source§

fn tgt(&self, m: &Self::Pro) -> Self::Ob

Gets the target of a proarrow.
Source§

fn cell_dom(&self, cell: &Self::Cell) -> Path<Self::Ob, Self::Pro>

Gets the domain of a cell, a path of proarrows.
Source§

fn cell_cod(&self, cell: &Self::Cell) -> Self::Pro

Gets the codomain of a cell, a single proarrow.
Source§

fn cell_src(&self, cell: &Self::Cell) -> Self::Arr

Gets the source of a cell, an arrow.
Source§

fn cell_tgt(&self, cell: &Self::Cell) -> Self::Arr

Gets the target of a cell, an edge.
Source§

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

Composes a path of arrows in the VDC.
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(&self, x: Self::Ob) -> Option<Self::Pro>

Gets the chosen unit for an object, 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.
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. Read more
Source§

fn compose_cells( &self, tree: DblTree<Self::Arr, Self::Pro, Self::Cell>, ) -> Self::Cell

Composes a tree of cells in the VDC.
Source§

fn arity(&self, cell: &Self::Cell) -> usize

Gets the arity of a cell. Read more
Source§

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

Composes a pair of arrows with compatible (co)domains.
Source§

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

Constructs the identity arrow at an object.
Source§

fn compose_cells2( &self, αs: impl IntoIterator<Item = Self::Cell>, β: Self::Cell, ) -> Self::Cell

Composes a two-layer pasting of cells.
Source§

fn id_cell(&self, m: Self::Pro) -> Self::Cell

Constructs the identity cell on a proarrow.
Source§

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

Does the path of proarrows have a chosen composite? Read more
Source§

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

Does the object have a chosen unit? Read more
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 unit_ext(&self, x: Self::Ob) -> Option<Self::Cell>

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

Auto Trait Implementations§

§

impl<V, E, S> Freeze for DiscreteTabTheory<V, E, S>
where S: Freeze,

§

impl<V, E, S> RefUnwindSafe for DiscreteTabTheory<V, E, S>

§

impl<V, E, S> Send for DiscreteTabTheory<V, E, S>
where S: Send, E: Send, V: Send,

§

impl<V, E, S> Sync for DiscreteTabTheory<V, E, S>
where S: Sync, E: Sync, V: Sync,

§

impl<V, E, S> Unpin for DiscreteTabTheory<V, E, S>
where S: Unpin, E: Unpin, V: Unpin,

§

impl<V, E, S> UnwindSafe for DiscreteTabTheory<V, E, S>
where E: UnwindSafe, S: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<VDC> DblTheory for VDC
where VDC: VDblCategory,

Source§

type ObType = <VDC as VDblCategory>::Ob

Rust type of object types in the theory. Read more
Source§

type MorType = <VDC as VDblCategory>::Pro

Rust type of morphism types in the theory. Read more
Source§

type ObOp = <VDC as VDblCategory>::Arr

Rust type of operations on objects in the double theory. Read more
Source§

type MorOp = <VDC as VDblCategory>::Cell

Rust type of operations on morphisms in the double theory. Read more
Source§

fn has_ob_type(&self, x: &<VDC as DblTheory>::ObType) -> bool

Does the object type belong to the theory?
Source§

fn has_mor_type(&self, m: &<VDC as DblTheory>::MorType) -> bool

Does the morphism type belong to the theory?
Source§

fn has_ob_op(&self, f: &<VDC as DblTheory>::ObOp) -> bool

Does the object operation belong to the theory?
Source§

fn has_mor_op(&self, α: &<VDC as DblTheory>::MorOp) -> bool

Does the morphism operation belong to the theory?
Source§

fn src_type( &self, m: &<VDC as DblTheory>::MorType, ) -> <VDC as DblTheory>::ObType

Source of a morphism type.
Source§

fn tgt_type( &self, m: &<VDC as DblTheory>::MorType, ) -> <VDC as DblTheory>::ObType

Target of a morphism type.
Source§

fn ob_op_dom(&self, f: &<VDC as DblTheory>::ObOp) -> <VDC as DblTheory>::ObType

Domain of an operation on objects.
Source§

fn ob_op_cod(&self, f: &<VDC as DblTheory>::ObOp) -> <VDC as DblTheory>::ObType

Codomain of an operation on objects.
Source§

fn src_op(&self, α: &<VDC as DblTheory>::MorOp) -> <VDC as DblTheory>::ObOp

Source operation of an operation on morphisms.
Source§

fn tgt_op(&self, α: &<VDC as DblTheory>::MorOp) -> <VDC as DblTheory>::ObOp

Target operation of an operation on morphisms.
Source§

fn mor_op_dom( &self, α: &<VDC as DblTheory>::MorOp, ) -> Path<<VDC as DblTheory>::ObType, <VDC as DblTheory>::MorType>

Domain of an operation on morphisms, a path of morphism types.
Source§

fn mor_op_cod( &self, α: &<VDC as DblTheory>::MorOp, ) -> <VDC as DblTheory>::MorType

Codomain of an operation on morphisms, a single morphism type.
Source§

fn compose_types( &self, path: Path<<VDC as DblTheory>::ObType, <VDC as DblTheory>::MorType>, ) -> Option<<VDC as DblTheory>::MorType>

Composes a sequence of morphism types, if they have a composite.
Source§

fn hom_type(&self, x: <VDC as DblTheory>::ObType) -> <VDC as DblTheory>::MorType

Hom morphism type on an object type. Read more
Source§

fn compose_ob_ops( &self, path: Path<<VDC as DblTheory>::ObType, <VDC as DblTheory>::ObOp>, ) -> <VDC as DblTheory>::ObOp

Compose a sequence of operations on objects.
Source§

fn id_ob_op(&self, x: <VDC as DblTheory>::ObType) -> <VDC as DblTheory>::ObOp

Identity operation on an object type. Read more
Source§

fn compose_mor_ops( &self, tree: DblTree<<VDC as DblTheory>::ObOp, <VDC as DblTheory>::MorType, <VDC as DblTheory>::MorOp>, ) -> <VDC as DblTheory>::MorOp

Compose operations on morphisms.
Source§

fn id_mor_op(&self, m: <VDC as DblTheory>::MorType) -> <VDC as DblTheory>::MorOp

Identity operation on a morphism type. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.