我正在尝试使用Idris接口实现简单的代数结构层次结构。代码如下:
module AlgebraicStructures
-- definition of some algebraic structures in terms of type classes
%access public export
Associative : {a : Type} -> (a -> a -> a) -> Type
Associative {a} op = (x : a) ->
(y : a) ->
(z : a) ->
(op x (op y z)) = (op (op x y) z)
Identity : {a : Type} -> (a -> a -> a) -> a -> Type
Identity op v = ((x : a) -> (op x v) = x,
(x : a) -> (op v x) = x)
Commutative : {a : Type} -> (a -> a -> a) -> Type
Commutative {a} op = (x : a) ->
(y : a) ->
(op x y) = (op y x)
infixl 4 <**>
interface IsMonoid a where
empty : a
(<**>) : a -> a -> a
assoc : Associative (<**>)
ident : Identity (<**>) empty
interface IsMonoid a => IsCommutativeMonoid a where
comm : Commutative (<**>)
但是,Idris正在给出这个奇怪的错误信息:
When checking type of constructor of AlgebraicStructures.IsCommutativeMonoid:
Can't find implementation for IsMonoid a
我相信Idris界面就像Haskell的类型类一样。在Haskell中,它应该工作。我在做些傻事吗?
答案 0 :(得分:6)
我相信它可能会抱怨,因为我不知道有什么限制表达式a
中的Commutative (<**>)
- 所以它不知道你可以调用<**>
在那种类型。
明确指定a
似乎对我有用 - Commutative {a} (<**>)
- 我希望这意味着接口签名中的a
在范围内并可用于显式传递给其他类型。