auto gitdoc commit
This commit is contained in:
parent
cc2bff5cb1
commit
88fcab2a06
2 changed files with 12 additions and 5 deletions
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"editor.unicodeHighlight.ambiguousCharacters": false,
|
||||
"gitdoc.enabled": true,
|
||||
"gitdoc.autoCommitDelay": 120000,
|
||||
"gitdoc.autoCommitDelay": 300000,
|
||||
"gitdoc.commitMessageFormat": "'auto gitdoc commit'"
|
||||
}
|
||||
|
|
|
@ -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 f∼g x = sym (f∼g 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 f∼g g∼h x = f∼g x ∙ g∼h x
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue