add
This commit is contained in:
parent
922455701b
commit
e415340890
2 changed files with 26 additions and 0 deletions
16
src/CubicalHott/Corollary6-4-3.agda
Normal file
16
src/CubicalHott/Corollary6-4-3.agda
Normal file
|
@ -0,0 +1,16 @@
|
|||
{-# OPTIONS --cubical #-}
|
||||
|
||||
module CubicalHott.Corollary6-4-3 where
|
||||
|
||||
open import Agda.Primitive
|
||||
open import Cubical.Relation.Nullary
|
||||
open import Cubical.Foundations.Prelude
|
||||
open import Cubical.HITs.S1
|
||||
|
||||
corollary : (l : Level) → ¬ (isGroupoid (Type l))
|
||||
corollary l p = g1 p where
|
||||
g1 : ¬ (isGroupoid (Type l))
|
||||
|
||||
g2 : (A : Type l) → ¬ (isSet (A ≡ A))
|
||||
g1 grpd = g2 (Lift S¹) {! grpd (Lift S¹) ? ? ? ? !}
|
||||
|
10
src/CubicalHott/Corollary7-1-5.agda
Normal file
10
src/CubicalHott/Corollary7-1-5.agda
Normal file
|
@ -0,0 +1,10 @@
|
|||
{-# OPTIONS --cubical #-}
|
||||
|
||||
module CubicalHott.Corollary7-1-5 where
|
||||
|
||||
open import Cubical.Foundations.Prelude
|
||||
open import Cubical.Foundations.HLevels
|
||||
open import Cubical.Data.Nat
|
||||
|
||||
corollary : {X Y : Type} → (n : ℕ) → isOfHLevel n X → isOfHLevel n Y
|
||||
corollary n = {! !}
|
Loading…
Reference in a new issue