Readability

This commit is contained in:
Frederik Hanghøj Iversen 2018-03-22 12:25:12 +01:00
parent d816ba657b
commit 0246c1b5ab
1 changed files with 7 additions and 11 deletions

View File

@ -166,17 +166,13 @@ module _ {a b : Level} (A : Set a) (B : Set b) where
toIso y ≡⟨ py
x
where
helper : (x : Isomorphism _) Σ _ λ y toIso y x
helper (f~ , inv) = y , py
where
module inv = AreInverses inv
y : isEquiv _ _ f
y = {!!}
py : toIso y (f~ , inv)
py = {!!}
y : isEquiv _ _ _
y = fst (helper x)
py = snd (helper x)
open Σ x renaming (fst to f~ ; snd to inv)
module inv = AreInverses inv
y : isEquiv _ _ f
y = {!!}
open Σ (toIso y) renaming (fst to f~' ; snd to inv')
py : toIso y (f~ , inv)
py = {!!}
module _ {a b : Level} {A : Set a} {B : Set b} where
open Cubical.PathPrelude using (_≃_)