Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pi4S3 Paper #1151

Merged
merged 20 commits into from
Sep 2, 2024
6 changes: 6 additions & 0 deletions Cubical/HITs/Join/Base.agda
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Cubical.HITs.Join.Base where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Equiv
open import Cubical.Foundations.Isomorphism
open import Cubical.Foundations.Pointed.Base

open import Cubical.HITs.S1
open import Cubical.HITs.S3
Expand All @@ -15,6 +16,11 @@ data join {ℓ ℓ'} (A : Type ℓ) (B : Type ℓ') : Type (ℓ-max ℓ ℓ') wh
inr : B → join A B
push : ∀ a b → inl a ≡ inr b

join∙ : ∀ {ℓ ℓ'} (A : Pointed ℓ) (B : Pointed ℓ')
→ Pointed _
fst (join∙ A B) = join (fst A) (fst B)
snd (join∙ A B) = inl (pt A)

facek01 : I → I → I → join S¹ S¹
facek01 i j k = hfill (λ l → λ { (j = i0) → push base base (~ l ∧ ~ k)
; (j = i1) → push base base (~ l ∧ ~ k)
Expand Down
373 changes: 373 additions & 0 deletions Cubical/HITs/SmashProduct/Base.agda

Large diffs are not rendered by default.

Loading
Loading