Presentation is loading. Please wait.

Presentation is loading. Please wait.

Lecture 9 : Universal Types

Similar presentations


Presentation on theme: "Lecture 9 : Universal Types"— Presentation transcript:

1 Lecture 9 : Universal Types
CS5205: Foundation in Programming Languages Lecture 9 : Universal Types Motivation for Universal Types System F & Examples Properties Type Reconstruction & Parametricity CS5205 Lecture 9 : Universal Types

2 Lecture 9 : Universal Types
Motivation for Universal Types Lack of code reuse! Example: doubleNat = l f: Nat ! Nat. l x:Nat. f ( f (x) ) doubleBool = l f: Bool ! Bool. l x:Bool. f ( f (x) ) doubleFun = l f: (Nat ! Nat) ! (Nat ! Nat). l x: Nat ! Nat. f ( f (x) ) CS5205 Lecture 9 : Universal Types

3 Lecture 9 : Universal Types
Properties of Let Polymorphism allows for easy type reconstruction restricted to the let construct problems with references (restricted to values on the RHS of =). CS5205 Lecture 9 : Universal Types

4 Lecture 9 : Universal Types
Idea of Universal Types Abstract over type! double = l X. l f: X ! X. l x:X. f (f (x)) > double : 8 X. (X ! X) ! X ! X double [Nat] > <fun> : (Nat ! Nat) ! Nat ! Nat double [Bool] > <fun> : (Bool ! Bool) ! Bool ! Bool CS5205 Lecture 9 : Universal Types

5 Lecture 9 : Universal Types
Evaluation (Type Abstraction/Application) t1 ! t1’ t1[T2] ! t1’ [T2] (E-TApp) (E-TAppTAbs) (l X. t) [T] ! [X a T] t CS5205 Lecture 9 : Universal Types

6 Lecture 9 : Universal Types
Typing (Type Abstraction/Application) , X ` t : T  ` l X . t : 8 X. T (T-TAbs)  ` t1 : 8 X. T1  ` t1[T2] : [X a T2] T1 (T-TApp) CS5205 Lecture 9 : Universal Types

7 Lecture 9 : Universal Types
Example : Identity Function Creating the polymorphic identity function: id = l X. l x:X. x > id : 8 X. X ! X Using the polymorphic identity function: id [Nat] > <fun> : Nat ! Nat id [Bool] true > true : Bool CS5205 Lecture 9 : Universal Types

8 Lecture 9 : Universal Types
Example : Self-Application We can apply a function to itself (in System F). Define selfApp = l x: 8 X. X ! X . (x [8 X. X ! X ]) x > selfApp : (8 X. X ! X) ! (8 X. X ! X) One use of self-application is: quadruple = selfApp double > quadruple : 8 X. (X ! X) ! (X ! X) Exercise : show that above is the same as: quadruple = l X. double [X ! X] (double [X]) CS5205 Lecture 9 : Universal Types

9 Lecture 9 : Universal Types
Example : Polymorphic List Assume that type constructor List is given with the following primitives: nil : 8 X. List X cons : 8 X. X ! List X ! List X isnil : 8 X. List X ! Bool head : 8 X. List X ! X tail : 8 X. List X ! List X CS5205 Lecture 9 : Universal Types

10 Lecture 9 : Universal Types
Example : Map With the help of fix, we can write a polymorphic map operation, as follows: map = l X. l Y. l f: X ! Y. fix (l m: (List X) ! (List Y). l l:List X. if isnil [X] l then nil [Y] else cons [Y] (f (head [X] l)) (m (tail [X] l))) ) > map : 8 X. 8 Y. (X ! Y) ! List X ! List Y CS5205 Lecture 9 : Universal Types

11 Lecture 9 : Universal Types
System F : Soundness Properties Preservation Theorem: If  ` t : T and t ! t’ then  ` t’ : T Progress Theorem If t is a closed well-typed term, then either t is a value or else there is some t’ with t ! t’. CS5205 Lecture 9 : Universal Types

12 Lecture 9 : Universal Types
System F : Normalisation A term is normalizing if there is no infinite evaluation t ! t1 ! t2 ! t3 ! … Well-typed System F terms (without the fix-point operator) are normalizing. CS5205 Lecture 9 : Universal Types

13 Lecture 9 : Universal Types
System F : Historical Background Discovered by Jean-Yves Girard in 1972 for proof theory. Independently developed by John Reynolds 1974 as polymorphic lambda calculus. Normalization : quite innovative inductive proof technique due to Tait (1968) and Girard (1972). Type reconstruction : was open problem until 1994! CS5205 Lecture 9 : Universal Types

14 Lecture 9 : Universal Types
Undecidability of Type Reconstruction for System F. Wells 1994 : it is undecidable when given a closed term m of the untyped lambda calculus, if there is some well-typed term t in System F such that erase(t)=m. The type erasure operation is defined as: erase(x) = x erase(l x:T. t) = l x. erase(t) erase(t1 t2) = erase(t1) erase(t2) erase(l X. t) = erase(t) erase(t [T] ) = erase(t) CS5205 Lecture 9 : Universal Types

15 Lecture 9 : Universal Types
What to do with Undecidability? Restrict the language : let polymorphism of ML, rank-2 polymorphism, etc. Partial Type Reconstruction: correct but incomplete approaches such as local type inference, greedy type inference, etc. CS5205 Lecture 9 : Universal Types

16 Lecture 9 : Universal Types
Parametricity Polymorphic programs operate uniformly over any input, independently of their type. Language implementations benefit from this parametricity by generating only one machine code version for polymorphic functions. Also, certain theorems come for free. At runtime, type application does not result in any computation. This is exemplified by OCaml’s let polymorphism, where no type application is needed. CS5205 Lecture 9 : Universal Types


Download ppt "Lecture 9 : Universal Types"

Similar presentations


Ads by Google