auto gitdoc commit

This commit is contained in:
Michael Zhang 2024-04-22 02:22:34 +00:00
parent cc2bff5cb1
commit 88fcab2a06
2 changed files with 12 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"editor.unicodeHighlight.ambiguousCharacters": false,
"gitdoc.enabled": true,
"gitdoc.autoCommitDelay": 120000,
"gitdoc.autoCommitDelay": 300000,
"gitdoc.commitMessageFormat": "'auto gitdoc commit'"
}

View file

@ -174,14 +174,21 @@ __ {l₁} {l₂} {A} {P} f g = (x : A) → f x ≡ g x
Homotopy forms an equivalence relation:
```
-refl : {A : Set} {P : A → Set} (f : (x : A) → P x) → f f
-refl : {A : Set} {P : A → Set}
→ (f : (x : A) → P x)
→ f f
-refl f x = refl
-sym : {A : Set} {P : A → Set} (f g : (x : A) → P x) → f g → g f
-sym : {A : Set} {P : A → Set}
→ (f g : (x : A) → P x)
→ f g → g f
-sym f g fg x = sym (fg x)
-trans : {A : Set} {P : A → Set} (f g h : (x : A) → P x)
→ f g → g h → f h
-trans : {A : Set} {P : A → Set}
→ (f g h : (x : A) → P x)
→ f g
→ g h
→ f h
-trans f g h fg gh x = fg x ∙ gh x
```