chcę zrobić nadklasą Num, zwany normalnyHaskell: making nadklasą Num
class Linear a where
add :: a -> a -> a
instance (Num a) => Linear a where
add = (+)
pojawia się błąd:
Illegal instance declaration for `Linear a'
(All instance types must be of the form (T a1 ... an)
where a1 ... an are *distinct type variables*,
and each type variable appears at most once in the instance head.
Use -XFlexibleInstances if you want to disable this.)
In the instance declaration for `Linear a'
Z tego co rozumiem, coś o linii instance (Num a) => Linear a where
jest nieprawidłowe. (Kompiluje się, jeśli używam flag: -XFlexibleInstances -XUndecidableInstances
)
Czy istnieje sposób na osiągnięcie tego bez użycia tych przerażających flag? (i co na świecie jest nie do pojęcia o powyższym kodzie?)
UPDATE: Dodano typ wielomianowy do liniowego.
newtype Polynomial a = Polynomial (a,[a]) deriving Show-- list of coeffients
instance (Linear a) => Linear (Polynomial a)
where
add (Polynomial (c1, l1)) (Polynomial (c2, l2))
= Polynomial (add c1 c2, zipWith (add) l1 l2)
p1 = Polynomial (0, [3,4,5])
p2 = Polynomial (0, [])
main = putStrLn $ show ((add p1 p2):: Polynomial Int)
Po dodaniu wielomianu, to nie skompilować ze nawet tych flag i dać błąd:
Overlapping instances for Linear (Polynomial Int)
arising from a use of `add'
Matching instances:
instance Num a => Linear a -- Defined at Algebra.hs:22:10-28
instance Linear a => Linear (Polynomial a)
-- Defined at Algebra.hs:25:10-44
In the first argument of `show', namely
`((add p1 p2) :: Polynomial Int)'
In the second argument of `($)', namely
`show ((add p1 p2) :: Polynomial Int)'
In the expression: putStrLn $ show ((add p1 p2) :: Polynomial Int)
czy możesz wskazać, dlaczego są potrzebne; a nierozstrzygalność jest przerażająca :) – Karan
W Haskell wiele rzeczy ma przerażające nazwy, na które nikt nie będzie musiał się martwić przez sekundę w innych językach. – leftaroundabout