Identity' : forall o, Morphism o o;
Compose' : forall s d d', Morphism d d' -> Morphism s d -> Morphism s d'
}.
Section SpecializedCategoryInterface. Variable obj : Type. Variable mor : obj -> obj -> Type. Variable C : @SpecializedCategory obj mor.
Definition Morphism (s d : C) := mor s d. Definition Identity (o : C) : Morphism o o := C.(Identity') o. Definition Compose (s d d' : C) (m : Morphism d d') (m0 : Morphism s d) :
Morphism s d' := C.(Compose') s d d' m m0. End SpecializedCategoryInterface.
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.