Skip to content

Commit ffd9b72

Browse files
committed
refactor: move around files, update index
1 parent cf780cd commit ffd9b72

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

src/Cat/Displayed/Adjoint.lagda.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ open import Cat.Prelude
1313
1414
import Cat.Reasoning
1515
import Cat.Displayed.Reasoning
16-
import Cat.Displayed.Functor.VerticalReasoning
16+
import Cat.Displayed.Functor.Vertical.Reasoning
1717
```
1818
-->
1919

@@ -158,8 +158,8 @@ allows us to keep morphisms displayed over the same base.
158158
```agda
159159
module _ {L : Vertical-functor ℰ ℱ} {R : Vertical-functor ℱ ℰ} (adj : L ⊣↓ R) where
160160
private
161-
module L = Cat.Displayed.Functor.VerticalReasoning L
162-
module R = Cat.Displayed.Functor.VerticalReasoning R
161+
module L = Cat.Displayed.Functor.Vertical.Reasoning L
162+
module R = Cat.Displayed.Functor.Vertical.Reasoning R
163163
open _⊣↓_ adj
164164
```
165165
-->
@@ -258,8 +258,8 @@ If $L \dashv R$ is a vertical adjunction, then $R$ is a fibred functor.
258258
→ is-vertical-fibred R
259259
Vert-right-adjoint-fibred {L = L} {R = R} adj {f = f} f′ cart = R-cart where
260260
open is-cartesian
261-
module L = Cat.Displayed.Functor.VerticalReasoning L
262-
module R = Cat.Displayed.Functor.VerticalReasoning R
261+
module L = Cat.Displayed.Functor.Vertical.Reasoning L
262+
module R = Cat.Displayed.Functor.Vertical.Reasoning R
263263
```
264264

265265
Let $f : \cC(x,y)$ and $f' : \cF(x', y')_{f}$ be a cartesian morphism.
@@ -333,8 +333,8 @@ Dually, vertical left adjoints are opfibred.
333333
```agda
334334
Vert-left-adjoint-opfibred {L = L} {R = R} adj {f = f} f′ cocart = L-cocart where
335335
open is-cocartesian
336-
module L = Cat.Displayed.Functor.VerticalReasoning L
337-
module R = Cat.Displayed.Functor.VerticalReasoning R
336+
module L = Cat.Displayed.Functor.Vertical.Reasoning L
337+
module R = Cat.Displayed.Functor.Vertical.Reasoning R
338338
339339
L-cocart : is-cocartesian ℱ f (L.F₁′ f′)
340340
L-cocart .universal m h′ =

src/Cat/Displayed/Functor/VerticalReasoning.lagda.md renamed to src/Cat/Displayed/Functor/Vertical/Reasoning.lagda.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Cat.Displayed.Reasoning
1010
-->
1111

1212
```agda
13-
module Cat.Displayed.Functor.VerticalReasoning
13+
module Cat.Displayed.Functor.Vertical.Reasoning
1414
{ob ℓb oe ℓe of ℓf}
1515
{B : Precategory ob ℓb}
1616
{ℰ : Displayed B oe ℓe} {ℱ : Displayed B of ℓf}

src/index.lagda.md

+3
Original file line numberDiff line numberDiff line change
@@ -629,6 +629,9 @@ their higher groupoid structure:
629629
open import Cat.Displayed.Path
630630
open import Cat.Displayed.Functor
631631
open import Cat.Displayed.Adjoint
632+
633+
open import Cat.Displayed.Functor.Vertical.Reasoning
634+
-- Reasoning Combinators for vertical functors.
632635
```
633636

634637
### Cartesian fibrations

0 commit comments

Comments
 (0)