-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from pmbittner/no-large-indicies-by-level-gene…
…ralization Get rid of `--large-indicies` using higher levels
- Loading branch information
Showing
32 changed files
with
268 additions
and
240 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: EPVL | ||
depend: standard-library-2.0 | ||
include: src | ||
flags: --large-indices --no-forced-argument-recursion --sized-types | ||
flags: --sized-types |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
module Data.EqIndexedSet {A : Set} where | ||
open import Level using (Level) | ||
|
||
module Data.EqIndexedSet {ℓ : Level} {A : Set ℓ} where | ||
|
||
import Relation.Binary.PropositionalEquality as Eq | ||
open import Data.IndexedSet (Eq.setoid A) as ISet public | ||
open import Data.IndexedSet {ℓ} (Eq.setoid A) as ISet public |
Oops, something went wrong.