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 Function | |
open import Data.Nat | |
open import Data.Fin renaming (_+_ to _f+_) | |
open import Data.Unit | |
open import Relation.Binary.PropositionalEquality | |
open import Data.Product | |
open import Data.Sum | |
open import Data.Vec | |
open import Data.Vec.Properties |
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 Proset where | |
open import Agda.Primitive public | |
using (_⊔_) | |
open import Agda.Builtin.Equality public | |
using (_≡_ ; refl) | |
-------------------------------------------------------------------------------- |
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 Category where | |
open import Agda.Primitive public | |
using (Level ; _⊔_) | |
renaming (lzero to ℓ₀) | |
open import Function public | |
using (id ; flip) | |
renaming (_∘′_ to _∘_) |
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 EncodeDecode where | |
open import Agda.Builtin.Char | |
using (Char) | |
renaming ( primCharToNat to ord | |
; primNatToChar to chr | |
) | |
open import Agda.Builtin.Equality | |
using (_≡_ ; refl) |
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 STLCSemantics where | |
-------------------------------------------------------------------------------- | |
-- Types | |
infixr 7 _⇒_ | |
data Type : Set | |
where |
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
-- Inspired by | |
-- https://github.com/andreasabel/strong-normalization/blob/master/agda/RenamingAndSubstitution.agda | |
-- and | |
-- https://github.com/mietek/coquand | |
{-# OPTIONS --no-positivity-check #-} | |
module RenSubFirstDraft where | |
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
-- Inspired by | |
-- https://github.com/andreasabel/strong-normalization/blob/master/agda/RenamingAndSubstitution.agda | |
-- and | |
-- https://github.com/mietek/coquand | |
{-# OPTIONS --no-positivity-check #-} | |
module RenSub where | |
open import Function public |
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
-- More information: | |
-- http://coq-club.inria.narkive.com/3zS9pwcc/coinductive-types-and-type-preservation | |
-- https://lists.chalmers.se/pipermail/agda/2008/000383.html | |
module CoTest where | |
open import Prelude public | |
{- |
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 Category where | |
open import Agda.Primitive public | |
using (Level ; _⊔_ ; lzero ; lsuc) | |
open import Agda.Builtin.Equality public | |
using (_≡_ ; refl) | |
record Category ℓ ℓ′ : Set (lsuc (ℓ ⊔ ℓ′)) where |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Miëtek Bak</string> | |
<key>gutterSettings</key> | |
<dict> | |
<key>background</key> | |
<string>#F9F9F9</string> |