wip
This commit is contained in:
parent
acbb85481f
commit
a2dbafb324
2 changed files with 6 additions and 2 deletions
|
@ -86,10 +86,14 @@ module lemma8∙1∙2 where
|
|||
open definition8∙1∙1
|
||||
open axiom2∙10∙3
|
||||
open ≡-Reasoning
|
||||
open S¹
|
||||
|
||||
lifted-loop : {l : Level} → lift base ≡ lift base
|
||||
lifted-loop {l} = ap (lift {l = l}) loop
|
||||
|
||||
i : {l : Level} → (x : Int {l}) → (transport code loop x) ≡ int-suc x
|
||||
i x = begin
|
||||
(transport code loop x) ≡⟨ lemma2∙3∙10 {! id !} code loop x ⟩
|
||||
(transport code loop x) ≡⟨ lemma2∙3∙10 id code {! lifted-loop !} x ⟩
|
||||
(transport id (ap code loop) x) ≡⟨ {! !} ⟩
|
||||
-- (transport id (ua int-suc) x) ≡⟨ {! !} ⟩
|
||||
int-suc x ∎
|
||||
|
|
|
@ -4,6 +4,6 @@ module HottBook.CoreUtil where
|
|||
|
||||
open import Agda.Primitive
|
||||
|
||||
record Lift {a ℓ} (A : Set a) : Set (a ⊔ ℓ) where
|
||||
record Lift {a l} (A : Set a) : Set (a ⊔ l) where
|
||||
constructor lift
|
||||
field lower : A
|
||||
|
|
Loading…
Reference in a new issue