Exercise 5: Simply Typed Lambda Calculus with Type Reconstruction

Hand in:Tuesday, January 16. Caution: Do not modify your code from the previous exercise, use only the provided framework for this exercise!

The provided framework is self-contained and can be downloaded as zip or tar.gz archive.

The API documentation for this exercise is available online.

Assignment

In this assignment you will write a Hindley-Milner type inferencer for simply typed lambda calculus.

You will be given a working parser and this time we're not interested in evaluation, but only type-checking. Of course, you can reuse an evaluator from earlier projects, for 'fun', but you will be evaluated (forgive the pun) only for the type checker. This type-checker, however, is more interesting than the previous one: instead of requiring the user to give types to variables in lambda abstractions (and let), we want it to be smart enough to infer them. In a way, the source language can be regarded as the untyped lambda calculus, in which the user might give types in lambda abstractions.

Source Language

We are interested in a simple version of simply typed lambda calculus, with booleans, numbers and let. Here's the syntax, in order to refresh our memory:

t ::= "true" true value
| "false" false value
| "if" t1 "then" t2 "else" t3 if
| 0 zero
| "pred" t predecessor
| "succ" t successor
| "iszero" t iszero
| x variable
| "\" x [":" T] "." t abstraction
| t t application (left associative)
| "let" x [":" T] "=" t1 "in" t2 let
| "(" t ")"
v ::= values
| "true"
| "false"
| nv numeric value
| "\" x ":" T "." t abstraction value
nv ::= numeric values
| "0"
| "succ" nv

The only difference from exercise 3 is that the two type annotations are optional. We also keep let in the abstract syntax tree, instead of treating it as a derived form. This will prove useful when we implement let-polymorphism.

The evaluation rules are the same as before.

Constraint-based typing

The basic idea about type inference is to treat each type judgement as a constraint on the types it involves, rather than a check on them. This way, typing will collect a set of such constraints, and never fail at this point. Afterwards, it tries to solve the contraint list, and if it succeeds, the program is well-typed. Before we delve into the contraint typing rules, we need to detail a bit what contraints operate upon, and what is a solution to the constraint list.

Type Variables

When we talk about types, but we don't want to make them concrete, to name them, we say "a type T..." and then we use this new name to refer to all types. We abstract over types. Type variables are just that: types that could be substituted by any concrete type: Nat, Bool -> Bool, etc. It is important to note that type variables can appear in other types, for instance a -> a, where a is a type variable, is also a type.

We will add another alternative in our types, although this will not be available to users writing programs (but it will be used during type reconstruction):

T ::= "Bool" boolean type
| "Nat" numeric type
| T "->" T function types (right associative)
| id type variables
| "(" T ")"

Substitutions

A substitution σ is a mapping from type variables to types. For example, [X → Y, Y → Nat]. There are two operations that are defined on substitution:

Application can be straight-forwardly extended for typing contexts or constraints, by applying the substitution to each type in the context or constraint.

As you have seen in the lecture, solving a constraint system gives back a substitution. It means each constraint in the system can be made true (or satisfied) if we apply the given substitution to the two types.

The easiest way to model substitutions in Scala is to make the Substitution class inherit from a function type (Type => Type, the type of functions from Type to Type). This gives us convenient syntax for application, we can simply write a s(t) for appying substitution s to type t. You will also need to add methods for extending a substitution. It might be nice to have methods for composing two substitutions, giving back a new substitution which acts as if the two substitutions have been applied one after the other.

Constraints can be modelled by a simple Pair of types.

Unification

The unification algorithm works by inspecting at each step one constraint, and extending the substitution with a new mapping, if necessary. Suppose the current constraint is T = S:

Constraint-based typing

In constraint based typing, the result of the typing function is not just its type, but also a list of constraints on types. The type returned by the type checker at this point will probably contain many type variables, and it's actual type is found by solving the constraints and applying the resulting substitution to that type. If the unifier fails, it means the term is not type-correct.

For example:

      (\b.if b then false else true)

has a type X -> Bool and a constraint list [X = Bool]. Only after solving this (trivial) constraint, and applying the resulting substitution, we get the correct type of this term: Bool -> Bool.

Here are the typing rules, augmented with constraints. If you compare these rules with the ones given in the book (page 322), you will notice that we have ignored "freshness" conditions on type variables: it is necessary that type variables, whenever created, are different from all other type variables in the system. This is easy to achieve when programming the type checker, and including them here would only obfuscate the typing rules. However, a formally correct type system needs to include them.

Γ|— true: Bool | {}
Γ|— false: Bool | {}
Γ|— 0: Nat | {}
Γ|— t: T | C    C' = C ∪ { T = Nat }
Γ|— pred t: Nat | C'
Γ|— t: T | C     C' = C ∪ { T = Nat }
Γ|— succ t: Nat | C'
Γ|— t: T | C    C' = C ∪ { T = Nat }
Γ|— iszero t: Bool | C'
Γ|— t1: T1 | C1; Γ |— t2: T2 | C2; Γ|— t3: T3 | C3
C = C1 ∪ C2 ∪ C3 ∪ {T1 = Bool, T2 = T3}
Γ|— if t1 then t2 else t3: T2 | C
x: T ∈ Γ
Γ|— x: T | {}
Γ, x: T1 |— t: T2| C
Γ|— λx: T1.t2: T1 -> T2 | C
Γ|— t1: T1 | C1       Γ |— t2: T2 | C2
X is fresh, C = C1 ∪ C2 ∪ {T1 = T2 -> X}
Γ|— t1 t2: X | C

We read a typing judgment (iszero t) like this: "suppose typing t returns a type T and a set of constraints C; the type of iszero t is Bool and the constraints are C augmented with the constraint that T has to be Nat".

Most type judgements are straight forward, the only two which require some thinking are the ones for abstraction and application. Let's start with application: As before, we type the two subterms, and we get back two sets of constraints and two types. Next, we need to make sure the type t1 is a function type, so we add a constraint. But what should the result of this function be (the argument type is clear that it is T2)? We don't know, so we invent a new type variable, and introduce it in the constraint system as T1 = T2 -> X. Hopefully, by the end of type checking, other constraints will make this new type variable to be some concrete type. The same argument goes for abstractions: what should be the type of x? Note:The parser we provided makes optional the type in lambda abstractions. If there is one, we take it into account, otherwise we invent a fresh type variable and introduce it in the environment.

Let-polymorphism

You may have noticed the above typing rules miss one important case: let. It deserves special treatment. We would like to implement let-polymorphism, that is, to allow a piece of code defined by let be run with different types. Consider a double function, which applies its first argument twice to its second argument:

      let double = \f.\x.f(f(x)) in 
        if (double (\x:Bool. if x then false else true) false) 
        then double (\x:Nat.succ x) 0
        else 0
    

We'd like double to be able to work for both Nat and Bool functions. Notice that if we treat it simply by inventing a type variable which participates in constraints, it would not work as expected: constraints in its first use would deem that its a (Bool -> Bool) -> Bool while constraints in the second use would require (Nat -> Nat) -> Nat.

Type Schemes

The solution is to generalize the type of double by making it a type scheme. A type scheme is a "recipe" for creating type, and it works by abstracting over its type variables. Each time double is used, we instantiate the type scheme to yield a new type, which can participate in type constraints.

A type scheme is a type and a list of type variables (used in that type) which can be instantiated. Instantiation means inventing fresh type variables for each of the arguments of a type scheme, and substituting them with the fresh ones. For example:

      TypeScheme(List("a"), a -> a) instantiates to a1 -> a1

Type checking let

Here's a sketch of the type checking procedure for let x = v in t:

  1. we type the right hand side v obtaining a type S and a set of constraints C.
  2. We use unification on C and apply the result to S to find its first approximation as type. At this point, the substitution we found should be applied to the current environment too, since we have committed to a set of bindings between type variables and types! Let's call this new type T
  3. We generalize some type variables inside T and obtain a type scheme. Important: We need to be careful about what type variables we generalize. We should not generalize any type variables appearing the environment, because they appear in constraints that need to be satisfied. For example:

              (\f.\x. let g = f in g(0)) (\x.if x then false else true) true

    While typing let, the environment will contain bindings such as [f -> X1, g -> X2] and some constraints on them, like {X1 = Bool -> Bool}. Notice inside let we use g as a function on Nat and that should be a constraint on f too, which is an argument of the function. Applying this function to Bool should fail. If we blindly wrongly generalize, we would get a TypeScheme(X1, X1) for g which would be instantiated at use to X3, which would be constrained to be a function on Nat. Notice how this constraint will not involve the X1 anymore, and the type checker would miss the type error! The bottom line is, generalizing type T to a type scheme should only abstract type variables that don't appear in the current environment.

  4. We extend the environment with a binding from x to its type scheme. Environments will not contain bindings to types, but to type schemes. Each time we lookup a variable in the environment, we need to instantiate its type scheme. In trivial cases, type schemes have an empty argument list, and their instantiation is always the type they contain. We type check t with the new environment.
  5. Each time x appears in t, its type scheme will be instantiated and used as a type for x. In the previous point we proposed to unify treatment of variables found in the environment, so all lookups actually instantiate type schemes, and this point is implicitly followed.

Implementation hints

This is probably the most challenging project so far, so we have given you a bit more framework (notably, the parser and the abstract syntax trees). Here are some more implementation hints, which might be useful to you (but it does not mean they have to be followed, or that they are really the best way to solve this exercise):