1

我试图遵循论文“废弃你的样板”革命的程序。不幸的是,我发现提升脊椎视图部分中的程序无法在我的 GHC 中编译,有人能指出我错在哪里吗?

{-# LANGUAGE FlexibleContexts, MultiParamTypeClasses,
    FlexibleInstances, UndecidableInstances, ScopedTypeVariables,
    NoMonomorphismRestriction, DeriveTraversable, DeriveFoldable,
    DeriveFunctor, GADTs, KindSignatures, TypeOperators, 
    TemplateHaskell,  BangPatterns
 #-}
{-# OPTIONS_GHC -fno-warn-unused-binds -fno-warn-name-shadowing 
    -fwarn-monomorphism-restriction -fwarn-hi-shadowing
  #-}

module LiftedSpine where
import Test.HUnit

-- Lifted Type View 
newtype Id x = InID x 
newtype Char' x = InChar' Char
newtype Int' x = InInt' Int 
data List' a x = Nil' | Cons' (a x) (List' a x)
data Pair' a b x = InPair' (a x ) (b x)
data Tree' a x = Empty' | Node' (Tree' a x ) (a x) (Tree' a x)

data Type' :: ( * -> * ) -> * where 
  Id :: Type' Id 
  Char' :: Type' Char' 
  Int' :: Type' Int' 
  List' :: Type' a -> Type' (List' a)
  Pair' :: Type' a -> Type' b -> Type' (Pair' a b)
  Tree' :: Type' a -> Type' (Tree' a)

infixl 1 :->
data Typed' (f :: * -> *)  a = (f a) :-> (Type' f)


size :: forall (f :: * -> *)  (a :: *) . Typed' f a -> Int 
size (Nil' :-> (List' a' )) = 0 
size (Cons' x xs :-> List' a' ) =  
  size (xs :-> List' a') + size (x :-> a' )
4

2 回答 2

1

我在 GHC 6.12.1 上编译时遇到的错误是:

Couldn't match expected type `f' against inferred type `List' a'
  `f' is a rigid type variable bound by
      the type signature for `size' at /tmp/Foo.hs:34:15
In the pattern: Nil'
In the pattern: Nil' :-> (List' a')
In the definition of `size': size (Nil' :-> (List' a')) = 0

似乎它无法检查模式匹配的类型,Nil'因为它没有意识到右侧模式意味着f必须是List'。我怀疑这可能是因为模式匹配是从左到右完成的,因为如果我翻转 , 的字段的顺序Typed',以便List a'在 之前匹配Nil',它编译得很好。

于 2011-11-21T05:02:36.093 回答
1

我们必须翻转 (:->) 的两个字段,即类型必须是第一个,注释项必须是第二个。这是因为 GADT 上的模式匹配和细化在 GHC 中隐含从左到右。

于 2011-11-21T19:34:38.393 回答