-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support Agda 2.6.3 Everything needs to be marked `--cubical-compatible` since it all has to build together. `inc` was renamed to `inS` in Agda. Metavariables with undetermined sorts can't appear in the telescope of a clause matching on an indexed type. --------- Co-authored-by: Amélia Liao <me@amelia.how>
- Loading branch information
Showing
6 changed files
with
11 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
name: hits-lectures | ||
include: . | ||
flags: | ||
--cubical-compatible | ||
-WnoUnsupportedIndexedMatch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,4 +144,6 @@ data ℕ : Type where | |
zero : ℕ | ||
suc : ℕ → ℕ | ||
the : ∀ {l} (A : Type l) → A → A | ||
the _ x = x | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,6 @@ include: Lecture-Notes/files | |
Exercises | ||
Auxiliary | ||
Cubical | ||
flags: | ||
-WnoUnsupportedIndexedMatch | ||
--cubical-compatible |