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
{-# OPTIONS --safe #-} | |
module Cograph where | |
open import Prelude | |
record Graph {A B : 𝒰} (f : A → B) : 𝒰 where | |
field | |
x : A | |
y : B | |
sub : f x = y |
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
open import Prelude | |
open import Data.Empty | |
open import Data.Bool renaming (elim to elimᵇ ; rec to recᵇ) | |
open import Data.Maybe | |
open import Data.List | |
open import Data.List.Operations.Discrete | |
open import Data.List.Correspondences.Unary.All | |
open import Data.List.Correspondences.Unary.Has | |
open import Data.List.Correspondences.Unary.Related | |
open import Data.List.Correspondences.Binary.Perm |
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
module Div3DFA where | |
open import Prelude | |
open import Data.Bool | |
open import Data.Nat | |
open import Data.Nat.Order.Base | |
open import Data.Nat.DivMod | |
open import Data.Nat.DivMod.Base | |
open import Data.List | |
open import Data.Reflects |
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
{-# OPTIONS --safe #-} | |
module Order.SupLattice.Powerset where | |
open import Categories.Prelude | |
open import Meta.Prelude | |
open import Foundations.Equiv.Size | |
open import Data.Empty | |
open import Data.Unit | |
open import Data.Sum |
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
module DepPrism where | |
open import Prelude | |
open import Data.Empty | |
open import Data.Sum | |
private variable | |
ℓ₁ ℓ₂ ℓ₃ ℓ₄ : Level | |
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
{-# OPTIONS --safe --backtracking-instance-search #-} | |
module Bag where | |
open import Prelude | |
open import Data.Nat.Base | |
open import Data.Fin.Computational.Base | |
open import Data.Fin.Computational.Instances.Finite | |
open import Structures.FinSet | |
open import Bij |
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
CoInductive stream (A : Type) : Type := | |
| Cons : A | |
-> stream A | |
-> stream A. | |
CoInductive infiniteDecreasingChain A (R : A -> A -> Prop) : stream A -> Prop := | |
| ChainCons : forall x y s, infiniteDecreasingChain A R (Cons A y s) | |
-> R y x | |
-> infiniteDecreasingChain A R (Cons A x (Cons A y s)). |
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
data Bush n l b = Bsh (l -> b) (n -> Bush n l (Bush n l b)) | |
-- polymorphic recursion | |
mapb :: (b -> c) -> Bush n l b -> Bush n l c | |
mapb f (Bsh g k) = Bsh (f . g) (\a -> mapb (mapb f) (k a)) | |
data BT n l = L l | Sp (BT n l) n (BT n l) | |
lamBT :: (BT n l -> b) -> Bush n l b | |
lamBT f = Bsh (f . L) (\a -> lamBT (\t -> lamBT (\u -> f (Sp t a u)))) |
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
{-# OPTIONS --cubical --no-import-sorts --safe #-} | |
module Even where | |
open import Prelude | |
open import Data.Unit | |
open import Data.Empty | |
open import Data.Bool | |
open import Data.Nat | |
open import Data.Nat.Order.Inductive |
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
{-# OPTIONS --safe #-} | |
module qh where | |
-- https://www.cs.nott.ac.uk/~pszgmh/quotient-haskell.pdf | |
open import Prelude | |
open import Meta.Prelude | |
open import Data.Bool | |
open import Data.Empty |
NewerOlder