wip
This commit is contained in:
parent
aa460fd5af
commit
61ad096640
2 changed files with 17 additions and 3 deletions
11
src/CubicalHott/Lemma7-3-1.agda
Normal file
11
src/CubicalHott/Lemma7-3-1.agda
Normal file
|
@ -0,0 +1,11 @@
|
|||
{-# OPTIONS --cubical #-}
|
||||
|
||||
module CubicalHott.Lemma7-3-1 where
|
||||
|
||||
open import Cubical.Foundations.Prelude
|
||||
open import Cubical.Foundations.HLevels
|
||||
open import Cubical.HITs.Truncation
|
||||
open import Data.Nat
|
||||
|
||||
lemma : {A : Type} → (n : ℕ) → isOfHLevel n (∥ A ∥ n)
|
||||
lemma {A} n = {! !}
|
|
@ -73,10 +73,13 @@ lemma zero (A , a , Acontr) (B , b , Bcontr) i =
|
|||
-- in hfill u (inS (a≡b {! j !})) j
|
||||
-- in {! !}
|
||||
|
||||
lemma (suc zero) (A , A-prop) (B , B-prop) p q =
|
||||
let IH = lemma zero in
|
||||
{! !}
|
||||
|
||||
lemma (suc zero) (A , A-prop) (B , B-prop) x y i j = {! !}
|
||||
|
||||
lemma (suc (suc n)) x y = {! !}
|
||||
lemma (suc (suc n)) x y p q =
|
||||
let IH = lemma (suc n) in
|
||||
{! !}
|
||||
|
||||
-- lemma : ∀ {l} → (n : HLevel) → isOfHLevel (suc n) (TypeOfHLevel l n)
|
||||
-- lemma zero (A , a , Acontr) (B , b , Bcontr) i = G , g , contr where
|
||||
|
|
Loading…
Reference in a new issue