Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Mathlib/CategoryTheory/Adhesive/Over.lean
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ public import Mathlib.CategoryTheory.Limits.Constructions.Over.Connected
/-! # Adhesive structure on slice categories

The slice category `Over B` inherits the property of being adhesive from the
base category.

## TODO
- The dual result for `Under B`.
base category, and dually so does the coslice category `Under B`.
-/

public section
Expand All @@ -30,4 +27,9 @@ instance adhesive_over [Adhesive C] [HasPullbacks C] [HasPushouts C] (B : C) :
Adhesive (Over B) :=
adhesive_of_preserves_and_reflects_isomorphism (Over.forget B)

/-- Coslices of adhesive categories are adhesive. See [adhesive2004], Proposition 8 (ii). -/
instance adhesive_under [Adhesive C] [HasPullbacks C] [HasPushouts C] (B : C) :
Adhesive (Under B) :=
adhesive_of_preserves_and_reflects_isomorphism (Under.forget B)

end CategoryTheory
Loading