English
Auxiliary construction of a module on morphisms between quotient objects, ensuring closure under composition and addition.
Русский
Дополнительная конструкция модуля на морфизмах между объектами-квоты, обеспечивающая замкнутость относительно сложения и композиции.
LaTeX
$$$\\text{module on Quotient}$$$
Lean4
/-- A `HomRel` on `C` consists of a relation on every hom-set. -/
def HomRel (C) [Quiver C] :=
∀ ⦃X Y : C⦄, (X ⟶ Y) → (X ⟶ Y) → Prop
deriving Inhabited