Wobbly types: type inference for generalised algebraic data types

Simon Peyton Jones, Geoffrey Washburn, and Stephanie Weirich. Technical report MS-CIS-05-26, University of Pennsylvania, July 2004.

[This paper was rejected by POPL'05. After thinking about it a lot more we greatly simplified the type system, and submitted the new version, Simple unification-based type inference for GADTs to PLDI'06. However, the original version has been cited quite a bit, so we made it into a Penn technical report, available from this page.]

July 2004

PDF , BibTex.

Generalised algebraic data types (GADTs), sometimes known as "guarded recursive data types" or "first-class phantom types", are a simple but powerful generalisation of the data types of Haskell and ML. Recent works have given compelling examples of the utility of GADTs, although type inference is known to be difficult.

It is time to pluck the fruit. Can GADTs be added to Haskell, without losing type inference, or requiring unacceptably heavy type annotations? Can this be done without completely rewriting the already-complex Haskell type-inference engine, and without complex interactions with (say) type classes? We answer these questions in the affirmative, giving a type system that explains just what type annotations are required, and a prototype implementation that implements it. Our main technical innovation is wobbly types, which express in a declarative way the uncertainty caused by the incremental nature of typical type-inference algorithms.


Simon Peyton Jones, simonpj@microsoft.com