| Version 15 (modified by ross@…, 7 years ago) |
|---|
Functional Dependencies
Brief Explanation
Functional dependencies (borrowed from relational databases) restrict the instances of a multi-parameter type class, e.g.
class ... => C a b c | a -> b
says that any two instances of C that agree in the first parameter must also agree in the second. They are a partial solution to the following problems with MPTCs:
- ambiguity
- imprecise types and late error reporting, arising from deferred context reduction (see FlexibleContexts).
References
- Type Classes with Functional Dependencies by Mark P. Jones, in ESOP 2000. A semi-formal description of a more restricted system than implemented by GHC and Hugs.
- Understanding functional dependencies via Constraint Handling Rules by Martin Sulzmann, Gregory J. Duck, Simon Peyton Jones, and Peter J. Stuckey, September 2005. This paper explains explores the restrictions required to guarantee sound, complete and decidable type inference in the presence of functional dependencies.
- Multiple parameter classes in the Hugs 98 User Manual
- Problems with functional dependencies (email) by SPJ + paper. See also.
- AssociatedTypes are an alternative solution.
Tickets
Pros
- In GHC and Hugs for a long time.
- Used in important libraries, notably monad transformers.
- MultiParamTypeClasses are of limited use without functional dependencies or something equivalent.
Cons
- There are (at least) three different versions of FDs, none of which is satisfactory:
- Mark Jones's original proposal. Problem: It excludes some uses of FDs (see below).
- GHC's implementation. Problem: It makes type checking undecidable (see below).
- Chameleon's implementation. Problem: Needs type inference based on constraint handling rules (not just HM). Doesn't support separate compilation atm.
- Including the dependent type parameters makes types more cluttered, and prevents hiding of these types (see AssociatedTypes).
- AssociatedTypes seem to be more promising.
Restrictions on instances
There are several versions.
Original version
These are the restrictions from the original paper, named according to the FD-CHR paper. Suppose a class C has a functional dependency X -> Y. The original paper imposed two restrictions on instances of the class C (sect. 6.1):
- Coverage.
For any instance
instance ... => C t
any variable occurring free in tY must also occur free in tX. - Consistency.
If there is a second instance
instance ... => C s
then any substitution unifying tX with sX must also unify tY with sY.
Haskell 98 requires that the context of an instance declaration use only type variables that appear in the head. It was originally thought that this could be relaxed (original paper, sect. 6.3), to variables determined by those in the head, but this can lead to non-termination (CHR paper, ex. 16).
With FlexibleInstances and no OverlappingInstances, these restrictions yield a coherent and decidable system (CHR paper, corr. 1).
GHC and Hugs
GHC and Hugs implement a relaxed version of the above "coverage" condition: they require only that any variable occurring free in tY be dependent (using dependencies of classes in the context) on variables that occur free in tX. They thus accept instances like the following from the monad transformer library, which is invalid according to the original rules:
class (Monoid w, Monad m) => MonadWriter w m | m -> w instance MonadWriter w m => MonadWriter w (ReaderT r m)
Unfortunately, this relaxation breaks the guarantees of termination and coherence:
- The following instances (CHR paper, ex. 6) seem reasonable:
class Mul a b c | a b -> c where (.*.) :: a -> b -> c instance Mul Int Int Int where (.*.) = (*) instance Mul Int Float Float where x .*. y = fromIntegral x * y instance Mul a b c => Mul a [b] [c] where x .*. v = map (x.*.) vand yet instance inference fails to terminate for the following (erroneous) definition:f = \ b x y -> if b then x .*. [y] else y
- The following instances (adapted from CHR paper, ex. 18) are sensitive to the order in which rules are applied:
class B a b | a -> b class C a b | a -> b class D a b c | a -> b where f :: a -> b -> c -> Bool instance B a b => D [a] [b] Bool instance C a b => D [a] [b] Char
Given the constraint D [a] [b] Bool, D [a] [c] Char,- if we apply the dependency first, and then reduce using the instances, we obtain b = c, B a b, C a b.
- if we first reduce using the instances, we obtain B a b, C a c.
- (GHC and Hugs yield the former, because they defer context reduction: see FlexibleContexts).
New version
The following complex relaxation of the "coverage" condition is safe (CHR paper, sect. 6), and allows the instances in the monad transformer library:
- For any instance
instance ... => C t
either- any variable occurring free in tY must also occur free in tX, or
- the functional dependency is full (involves all the arguments of the class), and the arguments tY are type variables determined by the free variables of tX.
Note that functional dependencies corresponding to associated type synonyms are always full.
Improvement of inferred types
"Improvement", as used by Mark Jones, means using information about what instances could match a predicate to instantiate its type variables, or to fail. Note that since context reduction is deferred (see FlexibleContexts), this refers not to what instances are available, but what instances are possible.
A functional dependency X -> Y allows two improvement rules:
- FD improvement. If a context contains predicates C t and C s such that tX = sX, infer tY = sY.
- Instance improvement.
Given a predicate C s and an instance declaration
instance ... => C t
such that sX = S tX for some substitution S, infer sY = S tY. (This rule is justified by the above "consistency" condition.)
An alternative view of the confluence problem discussed under GHC and Hugs is that the improvement rules should be modified.
Attachments
-
thoughtsOnMixing.ps
(87.2 KB) - added by malcolm.wallace@…
7 years ago.
possible use case for FunctionalDependencies
