gpt4 book ai didi

haskell - 使函数成为向量类型类的实例

转载 作者:行者123 更新时间:2023-12-04 07:56:27 25 4
gpt4 key购买 nike

我有一个用于数学向量的自定义类型类

{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances #-}

class Vector v a where

infixl 6 <+>
(<+>) :: v -> v -> v -- vector addition

infixl 6 <->
(<->) :: v -> v -> v -- vector subtraction

infixl 7 *>
(*>) :: a -> v -> v -- multiplication by a scalar

dot :: v -> v -> a -- inner product

我想制作数字 a和功能 a -> vector进入类的一个实例。数字很​​简单:
instance Num a => Vector a a where
(<+>) = (+)
(<->) = (-)
(*>) = (*)
dot = (*)

我认为函数也很容易(好吧,除了 dot ,但我可以忍受)
instance Vector b c => Vector (a -> b) c where
f <+> g = \a -> f a <+> g a
f <-> g = \a -> f a <-> g a
c *> f = \a -> c *> f a
dot = undefined

但是,我收到以下错误:
Ambiguous type variable `a0' in the constraint:
(Vector b a0) arising from a use of `<+>'
Probable fix: add a type signature that fixes these type variable(s)
In the expression: f a <+> g a
In the expression: \ a -> f a <+> g a
In an equation for `<+>': f <+> g = \ a -> f a <+> g a

我如何告诉 GHC 该实例对所有类型都有效 a ?我应该在哪里添加类型签名?

最佳答案

类型族绝对是解决这个问题的最好方法

{-# LANGUAGE TypeFamilies, FlexibleContexts #-} 
class VectorSpace v where
type Field v

infixl 6 <+>
(<+>) :: v -> v -> v -- vector addition

infixl 6 <->
(<->) :: v -> v -> v -- vector subtraction

infixl 7 *>
(*>) :: Field v -> v -> v -- multiplication by a scalar

dot :: v -> v -> Field v -- inner product

从数学上讲,要使用函数创建向量空间,您必须重用相同的字段:
instance VectorSpace b => VectorSpace (a -> b) where
type Field (a -> b) = Field b
f <+> g = \a -> f a <+> g a
f <-> g = \a -> f a <-> g a
c *> f = \a -> c *> f a
dot = error "Can't define the dot product on functions, sorry."

...关于类型族的好处是它们的工作方式与您解释的方式非常相似。
让我们做两个向量空间的直接乘积:
instance (VectorSpace v,VectorSpace w, Field v ~ Field w,Num (Field v)) => VectorSpace (v,w) where
type Field (v,w) = Field v
(v,w) <+> (v',w') = (v <+> v',w <+> w')
(v,w) <-> (v',w') = (v <-> v',w <-> w')
c *> (v,w) = (c *> v, c*> w)
(v,w) `dot` (v',w') = (v `dot` v') + (w `dot` w')

您可以替换 Num具有自定义代数类的上下文,但 Num捕捉概念
一个领域的适度好。

关于haskell - 使函数成为向量类型类的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13029532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com