【发布时间】:2018-10-22 15:55:26
【问题描述】:
我是 Haskell 的新手,我遇到了这个错误的一些问题。我在 Windows 上使用 ghci。这是代码:
data Direction = North | South | East | West
deriving (Eq, Show)
type Point = (Int, Int)
origin = (0,0)
type Road = [Direction]
movement :: Point -> Road -> Point
{- ... }
test :: Road -> Road -> Bool
test road1 road2 = movement origin road1 == movement origin road2
-- i check if two roads lead to the same destination starting from
-- the origin point in a grid
这是我尝试运行测试时发生的情况:
*Main> quickCheck test
<interactive>:8:1: error:
* No instance for (Arbitrary Direction)
arising from a use of `quickCheck'
* In the expression: quickCheck test
In an equation for `it': it = quickCheck test
我的老师告诉我我的代码是正确的,但没有解释为什么会在 Windows 上发生这种情况,因此没有提供解决方案。我也没有在网上找到任何有用的东西。我真的很感激解释。
【问题讨论】:
-
您需要定义一个
instance Arbitrary Direction。请参阅快速检查库的文档
标签: haskell cmd ghci quickcheck