Last active
August 29, 2015 13:58
-
-
Save ziman/10273674 to your computer and use it in GitHub Desktop.
Erasure monad vs. forced patterns
This file contains hidden or 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 Er | |
%default total | |
{- module Erasure; inlined for convenience -} | |
data Erased : Type -> Type where | |
E : a -> Erased a | |
instance Functor Erased where | |
map f (E x) = E (f x) | |
instance Applicative Erased where | |
pure = E | |
(<$>) (E f) (E x) = E (f x) | |
instance Monad Erased where | |
(>>=) (E x) f = f x | |
liftEq : {a : Type} -> {x, y : a} -> x = y -> E x = E y | |
liftEq refl = refl | |
E_inj : {a : Type} -> {x, y : a} -> E x = E y -> x = y | |
E_inj refl = refl | |
{- module Main -} | |
f : Nat -> Nat | |
f n = n + 1 | |
data T : Nat -> Type where | |
C : (n : Nat) -> T (f n) | |
g : (n : Nat) -> T n -> () | |
g (f n) (C n) = () | |
data ET : Erased Nat -> Type where | |
EC : (en : Erased Nat) -> ET [| f en |] | |
eg : (n : Nat) -> ET (pure n) -> () | |
eg _ (EC en) = () | |
{- | |
Type checking ./er.idr | |
er.idr:41:4:When elaborating left hand side of eg: | |
When elaborating an application of er.eg: | |
Can't unify | |
ET (Erased instance of Prelude.Applicative.Applicative, method <$> (E f) | |
en) | |
with | |
ET (pure n) | |
Specifically: | |
Can't unify | |
Erased instance of Prelude.Applicative.Applicative, method <$> (E f) | |
en | |
with | |
E n | |
Metavariables: er.eg | |
-} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment