-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added Everything.agda, cleaned examples
- Loading branch information
Showing
6 changed files
with
97 additions
and
209 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
module Everything where | ||
|
||
import Generics.Prelude | ||
import Generics.Telescope | ||
import Generics.Telescope.Equality | ||
import Generics.Desc | ||
import Generics.All | ||
import Generics.HasDesc | ||
import Generics.Accessibility | ||
import Generics.Helpers | ||
import Generics.Reflection | ||
|
||
import Generics.Mu | ||
import Generics.Mu.All | ||
import Generics.Mu.Elim | ||
import Generics.Mu.Fold | ||
import Generics.Mu.Conversion | ||
|
||
import Generics.Constructions.Case | ||
import Generics.Constructions.Cong | ||
import Generics.Constructions.DecEq | ||
import Generics.Constructions.Elim | ||
import Generics.Constructions.Fold | ||
import Generics.Constructions.Mu | ||
import Generics.Constructions.Recursion | ||
import Generics.Constructions.Show | ||
|
||
import Generics | ||
|
||
-- Work In Progress | ||
--------------------------------- | ||
|
||
-- import Generics.Mu.NoConfusion | ||
-- import Generics.Constructions.Injective |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{-# OPTIONS --safe #-} | ||
module Generics where | ||
|
||
open import Data.Unit public using (⊤; tt) | ||
open import Generics.Prelude public using (liftω; liftω-inst) | ||
open import Generics.HasDesc public using (HasDesc) | ||
open import Generics.Reflection public using (deriveDesc) | ||
open import Generics.Helpers public | ||
|
||
open import Generics.Constructions.Case public using (deriveCase) | ||
open import Generics.Constructions.Cong public using (deriveCong) | ||
open import Generics.Constructions.DecEq public using (DecEq; _≟_; deriveDecEq) | ||
open import Generics.Constructions.Elim public using (deriveElim) | ||
open import Generics.Constructions.Fold public using (deriveFold) | ||
open import Generics.Constructions.Recursion public using (rec; Below) | ||
open import Generics.Constructions.Show public using (Show; show; deriveShow) |
Oops, something went wrong.