I have my own data type to represent nodes and edges of a graph as follows:
data Node a = Node a deriving (Show, Eq) data Label a = Label a deriving (Show) data Cost = CostI Int | CostF Float deriving (Show) data Edge label node = Edge (Label label, (Node node,Node node), Cost) deriving (Show)Now, I create a function to check whether an edge contains 2 nodes or not as follows:
isEdge:: (Eq n) => (Edge l n) -> (Node n, Node n) -> Bool isEdge (Edge (_, (n1,n2), _)) (n3, n4) = result where result = (n1 == n3) && (n2 == n4)The function works well, the problem here is if I remove (Eq n) from the function, it fails. So, why is that, even though in the declaration above I declared
Nodeas deriving from Eq class?data Node a = Node a deriving (Show, Eq)
|
|
||||
|
The
You can view the generated code by compiling with However, the fact that GHC can't infer an instance of If you wanted to stop people from constructing non-comparable
But now GHC tells us we need a compiler pragma:
OK, let's add it to the top of our file:
Now compile:
The problem is that now every function using There's actually a way to get GHC to do what you want, however: Generalized Algebraic Data Types (GADTs):
This looks just like your original definition, except that it emphasizes the
We can still derive
(Hence the StandaloneDeriving pragma above.) For this to work, GHC also requires us to add a
And now we can take the (This is definitely overkill for such a simple situation -- again, if people want to construct nodes with functions inside them, why shouldn't they? However, GADTs are extremely useful in pretty similar situations when you want to enforce certain properties of your data types. See a cool example). EDIT (from the future): you can also write
but you still need to enable GADT extensions and derive instances separately. See this thread. |
|||||||||
|
|
When you add a
Any derived This is because there's really no other way to derive an This is true not just for
won't work without adding the constraint |
||||
|
|
data A = A (x, y, z)rather thandata A = A x y zand the first version actually uses more space and is more awkward to pattern match on (there is an extra layer of indirection),data Edge label node = Edge (Label label) (Node node) (Node node) Costworks just fine. – dbaupp Nov 22 '12 at 14:02result = (n1,n2) == (n3,n4). Finally, it's a bit unstylistic to name your type variableslabelandnode-- usually they'd just beaandb, or, if you want, something likenandl. – Fixnum Nov 22 '12 at 20:11