pub trait DblTheory {
type ObType: Eq + Clone;
type MorType: Eq + Clone;
type ObOp: Eq + Clone;
type MorOp: Eq + Clone;
Show 18 methods
// Required methods
fn has_ob_type(&self, x: &Self::ObType) -> bool;
fn has_mor_type(&self, m: &Self::MorType) -> bool;
fn has_ob_op(&self, f: &Self::ObOp) -> bool;
fn has_mor_op(&self, α: &Self::MorOp) -> bool;
fn src_type(&self, m: &Self::MorType) -> Self::ObType;
fn tgt_type(&self, m: &Self::MorType) -> Self::ObType;
fn ob_op_dom(&self, f: &Self::ObOp) -> Self::ObType;
fn ob_op_cod(&self, f: &Self::ObOp) -> Self::ObType;
fn src_op(&self, α: &Self::MorOp) -> Self::ObOp;
fn tgt_op(&self, α: &Self::MorOp) -> Self::ObOp;
fn mor_op_dom(&self, α: &Self::MorOp) -> Path<Self::ObType, Self::MorType>;
fn mor_op_cod(&self, α: &Self::MorOp) -> Self::MorType;
fn compose_types(
&self,
path: Path<Self::ObType, Self::MorType>,
) -> Option<Self::MorType>;
fn compose_ob_ops(&self, path: Path<Self::ObType, Self::ObOp>) -> Self::ObOp;
fn compose_mor_ops(
&self,
tree: DblTree<Self::ObOp, Self::MorType, Self::MorOp>,
) -> Self::MorOp;
// Provided methods
fn hom_type(&self, x: Self::ObType) -> Self::MorType { ... }
fn id_ob_op(&self, x: Self::ObType) -> Self::ObOp { ... }
fn id_mor_op(&self, m: Self::MorType) -> Self::MorOp { ... }
}
Expand description
A double theory.
A double theory is “just” a virtual double category (VDC) assumed to have units.
Reflecting this, this trait has a blanket implementation for any
VDblCategory
. It is not recommended to implement this trait directly.
See the module-level docs for background on the terminology.
Required Associated Types§
Sourcetype ObType: Eq + Clone
type ObType: Eq + Clone
Rust type of object types in the theory.
Viewing the double theory as a virtual double category, this is the type of objects.
Sourcetype MorType: Eq + Clone
type MorType: Eq + Clone
Rust type of morphism types in the theory.
Viewing the double theory as a virtual double category, this is the type of proarrows.
Required Methods§
Sourcefn has_ob_type(&self, x: &Self::ObType) -> bool
fn has_ob_type(&self, x: &Self::ObType) -> bool
Does the object type belong to the theory?
Sourcefn has_mor_type(&self, m: &Self::MorType) -> bool
fn has_mor_type(&self, m: &Self::MorType) -> bool
Does the morphism type belong to the theory?
Sourcefn has_mor_op(&self, α: &Self::MorOp) -> bool
fn has_mor_op(&self, α: &Self::MorOp) -> bool
Does the morphism operation belong to the theory?
Sourcefn mor_op_dom(&self, α: &Self::MorOp) -> Path<Self::ObType, Self::MorType>
fn mor_op_dom(&self, α: &Self::MorOp) -> Path<Self::ObType, Self::MorType>
Domain of an operation on morphisms, a path of morphism types.
Sourcefn mor_op_cod(&self, α: &Self::MorOp) -> Self::MorType
fn mor_op_cod(&self, α: &Self::MorOp) -> Self::MorType
Codomain of an operation on morphisms, a single morphism type.
Sourcefn compose_types(
&self,
path: Path<Self::ObType, Self::MorType>,
) -> Option<Self::MorType>
fn compose_types( &self, path: Path<Self::ObType, Self::MorType>, ) -> Option<Self::MorType>
Composes a sequence of morphism types, if they have a composite.
Provided Methods§
Sourcefn hom_type(&self, x: Self::ObType) -> Self::MorType
fn hom_type(&self, x: Self::ObType) -> Self::MorType
Hom morphism type on an object type.
Viewing the double theory as a virtual double category, this is the unit proarrow on an object.