Compare commits

..

3 commits

Author SHA1 Message Date
81fb1d0c77 wtf 2024-09-15 19:40:25 -05:00
c1788c20fb a 2024-09-15 19:40:10 -05:00
8ecbcefe92 cubical stuff 2024-09-15 19:40:04 -05:00
8 changed files with 13 additions and 6 deletions

3
.gitignore vendored
View file

@ -4,4 +4,5 @@ node_modules
logseq
!logseq/custom.edn
!logseq/custom.css
!logseq/custom.css
.pijul

2
.ignore Normal file
View file

@ -0,0 +1,2 @@
.git
.DS_Store

Binary file not shown.

View file

@ -1,5 +1,5 @@
\RequirePackage{fix-cm}
\def\OPTpagesize{4.8in,7.9in} % Page size
\def\OPTpagesize{6in,9in} % Page size
\documentclass[12pt]{report}
\usepackage[hyphens]{url}
\usepackage[

View file

@ -17,7 +17,9 @@ module lemma211 where
module lemma212 where
lemma : {A : Type l} {x y z : A} x y y z x z
lemma {x = x} p q i = hcomp (λ j λ { (i = i0) x ; (i = i1) q j }) (p i)
lemma {x = x} p q i = hcomp
(λ j λ { (i = i0) x ; (i = i1) q j })
(p i)
module lemma214 where
private

View file

@ -480,6 +480,4 @@ module Pushout where
Pushout : {A B C : Set} → (f : C → A) → (g : C → B) → Set
syntax Pushout A B C = A ⊔[ C ] B
```
## asdf
```

View file

@ -0,0 +1,4 @@
{-# OPTIONS --cubical --safe #-}
module VanDoornDissertation.HoTT.LongExactSequence where