0
這是我的當前代碼:不能匹配期望的類型(自定義類型)
data Exp x = Con Int | Var x | Sum [Exp x] | Prod [Exp x]
| Exp x :- Exp x | Int :* Exp x | Exp x :^ Int
expression :: Exp String
expression = Sum [3:*(Var"x":^2), 2:*Var"y", Con 1]
type Store x = x -> Int
exp2store :: Exp x -> Store x -> Int
exp2store (Con i) _ = i
exp2store (Var x) st = st x
exp2store (Sum es) st = sum $ map (flip exp2store st) es
exp2store (Prod es) st = product $ map (flip exp2store st) es
exp2store (e :- e') st = exp2store e st - exp2store e' st
exp2store (i :* e) st = i * exp2store e st
exp2store (e :^ i) st = exp2store e st^i
精通應該代表一個多項式表達和exp2store需要的表達和其與值提供變量中的表達的功能。
例子:
*Main> exp2store (Var"x") $ \"x" -> 5
5
的作品。我不知道如何以不同的值提供多個變量,即
*Main> exp2store (Sum[Var"x",Var"y"]) $ \"x" "y" -> 5 10
顯然,這會引發異常。有人可以幫助我嗎?