aboutsummaryrefslogtreecommitdiff
path: root/Morphism
diff options
context:
space:
mode:
authorJacques Comeaux <jacquesrcomeaux@protonmail.com>2026-03-25 14:08:17 -0500
committerJacques Comeaux <jacquesrcomeaux@protonmail.com>2026-03-25 14:08:17 -0500
commit348f5615631fff3279049ab930fd51ec4442f44f (patch)
tree125495d90f9d52a3dab92786bb43776abae7a3a6 /Morphism
parent11e8c93b5426ddfd75f1c9c495e4da0defbc08a6 (diff)
Use agda-categories definition of split idempotent
Diffstat (limited to 'Morphism')
-rw-r--r--Morphism/SplitIdempotent.agda22
1 files changed, 0 insertions, 22 deletions
diff --git a/Morphism/SplitIdempotent.agda b/Morphism/SplitIdempotent.agda
deleted file mode 100644
index a9b4396..0000000
--- a/Morphism/SplitIdempotent.agda
+++ /dev/null
@@ -1,22 +0,0 @@
-{-# OPTIONS --without-K --safe #-}
-
-open import Level using (Level; _⊔_)
-open import Categories.Category using (Category)
-
-module Morphism.SplitIdempotent {o ℓ e : Level} (𝒞 : Category o ℓ e) where
-
-open Category 𝒞
-
-record IsSplitIdempotent {A : Obj} (i : A ⇒ A) : Set (o ⊔ ℓ ⊔ e) where
- field
- B : Obj
- r : A ⇒ B
- s : B ⇒ A
- s∘r : s ∘ r ≈ i
- r∘s : r ∘ s ≈ id
-
-record SplitIdempotent : Set (o ⊔ ℓ ⊔ e) where
- field
- {A} : Obj
- i : A ⇒ A
- isSplitIdempotent : IsSplitIdempotent i