我正在尝试解决 LiquidHaskell教程中的一些练习。所以,我写了这个:
data List a = Nil | Cons a (List a) deriving (Show)
infixr 5 `Cons`
{-@ len :: List a -> Nat @-}
len :: List a -> Int
len Nil = 0
len (x `Cons` xs) = 1 + len xs
{-@ mymap :: (a -> b) -> xs : List a -> { ys : List b | len xs == len ys } @-}
mymap :: (a -> b) -> List a -> List b
mymap _ Nil = Nil
mymap f (x `Cons` xs) = f x `Cons` mymap f xs
但我收到一个错误(对不起,请,这种格式,它是原始的 LH 错误格式):
53 | mymap f (x `Cons` xs) = f x `Cons` mymap f xs
^^^^^^^^^^^^^^^^^^^^^
Inferred type
VV : {v : (Main.List a) | Main.Cons##lqdc##$select v == ?a
&& Main.Cons##lqdc##$select v == ds_d35c x
&& v == Main.Cons (ds_d35c x) ?a}
not a subtype of Required type
VV : {VV : (Main.List a) | len ?b == len VV}
In Context
xs : (Main.List a)
?b : (Main.List a)
x : a
?a : {?a : (Main.List a) | len xs == len ?a}
什么是正确的“合同” mymap
?如何修复此错误?应该如何阅读/处理消息Main.Cons##lqdc##$select v == ds_d35c x
?