auto gitdoc commit

This commit is contained in:
Michael Zhang 2024-04-22 02:31:11 +00:00
parent e5ab040c54
commit faf91c288b

View file

@ -298,12 +298,21 @@ postulate
idToEquiv : {A B : Set}
→ (A ≡ B)
→ A ≃ B
idToEquiv {A} {B} p = {! !} , equiv
idToEquiv {A} {B} p = func , equiv
where
func : A → B
func a = transport id p a
func-inv : B → A
func-inv b = transport id (sym p) b
homotopy : (func ∘ func-inv) id
homotopy x = {! !}
equiv = record
{ g = {! !}
{ g = func-inv
; g-id = {! !}
; h = {! !}
; h = func-inv
; h-id = {! !}
}
```