Skip to content

Instantly share code, notes, and snippets.

View AndrasKovacs's full-sized avatar

András Kovács AndrasKovacs

View GitHub Profile
@AndrasKovacs
AndrasKovacs / NbECaseCommute.hs
Created April 16, 2021 08:01
NbE with case commutation for sum types
{-# language Strict, BangPatterns, LambdaCase, ViewPatterns, OverloadedStrings #-}
{-# options_ghc -Wincomplete-patterns #-}
-- NbE with case commutation for sum types.
import Data.Maybe
import Data.String
type Name = String
@AndrasKovacs
AndrasKovacs / FlatParseNotes.hs
Created March 20, 2021 16:46
Session notes about flatparse library
-- flatparse: hackage 0.1.1.1
-- example: smaltt (demo for fast elaborator): switching from megaparsec to flatparse would speed up more than 2x overall
-- 1 year ago:
-- parsec : ridiculously slow, CPS implementation
-- attoparsec : (resumable, CPS), "high-performance" data parsing, binary parsing, not language parsing
-- fringe, modern:
-- parsnip: (unpublished on hackage) (by Kmett, on github) : really the high-performance raw data parsing (not language parsing)
@AndrasKovacs
AndrasKovacs / NatForFree.agda
Created March 9, 2021 13:49
Every parametric function between functors is natural
-- Agda 2.6.1, stdlib 1.5
open import Relation.Binary.PropositionalEquality
renaming (sym to infix 6 _⁻¹; cong to ap; trans to infixr 5 _◾_; subst to tr)
open import Function
coe : ∀{i}{A B : Set i} → A ≡ B → A → B
coe refl a = a
{-# OPTIONS --postfix-projections --without-K #-}
-- Notes for https://www.youtube.com/watch?v=RXKRepPm0ps
-- checked with Agda 2.6.1 + stdlib 1.5
open import Data.Product renaming (proj₁ to ₁; proj₂ to ₂)
open import Relation.Binary.PropositionalEquality
renaming (subst to tr; sym to infix 6 _⁻¹; trans to infixr 5 _◾_; cong to ap)
open import Data.Nat
@AndrasKovacs
AndrasKovacs / MonadicNbE.hs
Last active March 16, 2021 11:08
Notes on normalization-by-evaluation modulo monad laws for monadic language
{-
-- Compiler: staging, memory layout control, etc (small + self-hosting + useful soon)
-- Surface language:
1. CBV + side effects (ML)
2. CBV + typed effect system:
- Eff monad
- Eff monad, row of effects
f : Int -> Eff [IO, Exc e, MutRef a, MutRef b] Int
-- solution to https://github.com/effectfully/haskell-challenges/blob/master/h3-transform-typed/README.md
{-# LANGUAGE GADTs #-}
module Lib where
import Data.Proxy
import Data.Typeable
data Scheme a where
-- Solution to challenge: https://github.com/effectfully/haskell-challenges/tree/master/force-elems
-- (Spoiler)
data EC = Elem | Con
data T a = T {ec :: !EC, unT :: a}
appEC :: EC -> (a -> b) -> a -> b
appEC Elem f a = f $! a
appEC Con f a = f a
{-# OPTIONS --without-K #-}
open import Data.Bool
open import Data.Product
open import Relation.Binary.PropositionalEquality
open import Data.Empty
open import Function
surj : {A B : Set} → (A → B) → Set
surj f = ∀ b → ∃ λ a → f a ≡ b
@AndrasKovacs
AndrasKovacs / cont-cwf.agda
Created June 18, 2020 18:14 — forked from bobatkey/cont-cwf.agda
Construction of the Containers / Polynomials CwF in Agda, showing that function extensionality is refuted
{-# OPTIONS --rewriting #-}
module cont-cwf where
open import Agda.Builtin.Sigma
open import Agda.Builtin.Unit
open import Agda.Builtin.Bool
open import Agda.Builtin.Nat
open import Data.Empty
open import Relation.Binary.PropositionalEquality public using (_≡_; refl; trans; subst; cong)
@AndrasKovacs
AndrasKovacs / GluedEval.hs
Last active January 20, 2025 21:55
Non-deterministic normalization-by-evaluation in Olle Fredriksson's flavor.
{-# language Strict, LambdaCase, BlockArguments #-}
{-# options_ghc -Wincomplete-patterns #-}
{-
Minimal demo of "glued" evaluation in the style of Olle Fredriksson:
https://github.com/ollef/sixty
The main idea is that during elaboration, we need different evaluation