-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Computational identity types (#1015)
### Summary Adds - the strictly right unital concatenation operation on identity types. - the _strictly involutive identity types_. They satisfy the judgmental laws 1. `inv (inv p) ≐ p` 2. `inv refl ≐ refl` 3. `refl ∙ p ≐ p` or `p ∙ refl ≐ p` 4. `ind-Id B f refl ≐ f refl` - the _Yoneda identity types_. They satisfy the judgmental laws 1. `(p ∙ q) ∙ r ≐ p ∙ (q ∙ r)` 2. `refl ∙ p ≐ p` 3. `p ∙ refl ≐ p` 4. `inv refl ≐ refl` 5. `rec-Id f refl ≐ f refl` - the _computational identity types_. They satisfy the judgmental laws 1. `inv (inv p) ≐ p` 2. `inv refl ≐ refl` 3. `refl ∙ p ≐ p` or `p ∙ refl ≐ p` 4. `(p ∙ q) ∙ r ≐ p ∙ (q ∙ r)` 5. `rec-Id f refl ≐ f refl` ### References - https://groups.google.com/g/homotopytypetheory/c/FfiZj1vrkmQ/m/GJETdy0AAgAJ
- Loading branch information
1 parent
9d6df60
commit 584a12c
Showing
20 changed files
with
2,428 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.