type systems
play

Type Systems Lecture 8 Dec. 8th, 2004 Sebastian Maneth - PowerPoint PPT Presentation

Type Systems Lecture 8 Dec. 8th, 2004 Sebastian Maneth http://lampwww.epfl.ch/teaching/typeSystems/2004 Important: The FJ Programming Assignment is only due tomorrow, Dec. 9 th , at 17:00. send code to bur ak. em i r @ epf l .


  1. Type Systems Lecture 8 Dec. 8th, 2004 Sebastian Maneth http://lampwww.epfl.ch/teaching/typeSystems/2004

  2. Important: The FJ Programming Assignment is only due tomorrow, Dec. 9 th , at 17:00. � send code to bur ak. em i r @ epf l . ch

  3. Today .. into Polymorphism .. 1. What is Polymorphism? 2. Type Inference (Reconstruction) 3. Unification 4. Let-Polymorphism 5. Conclusion

  4. A Critique of Statically Typed PLs � Types are obtrusive: they overwhelm the code � Types inhibit code re-use: one version for each type. doubl e_i nt = λ x: i nt � i nt . λ y: i nt . x( x( y) ) doubl e_bool = λ x: bool � bool . λ y: bool x( x( y) )

  5. A Critique of Statically Typed PLs � Types are obtrusive: they overwhelm the code � Type Inference (Reconstruction) � Types inhibit code re-use: one version for each type. � Polymorphism

  6. 1. What is Polymorphism? Generally: Idea that an operation can be applied to values of different types. (‘poly’=‘many’) Can be achieved in many ways.. According to Strachey (1967, “Fundamental Concepts in PLs”) and Cardelli/Wegner (1985, survey) parametric Universal (true) inclusion polymorphism overloading Ad hoc (apparent) coercion

  7. Ad Hoc Polymorphism Overloading (resolved at compile-time. -- Overridden methods at run-time) � one name for different functions � only a conveniant syntax abbreviation � exam pl e: + : i nt � i nt 1 + 2 + : r eal � r eal 1. 0 + 2. 0 Coercion (= compile away subtyping by run-time coercions) ( ( r eal 1) + 1. 0 or 1 + 1. 0

  8. Universal Polymorphism Inclusion = Subtype Polymorphism cl ass CPt ext ends Pt { col or c; � One object belongs to many classes. CPt ( i nt x, i nt y, col or c) { super ( x, y) ; E.g., a colored point t hi s. c = c; can be seen as a point. } col or get c ( ) { r et ur n t hi s. c; } } Parametric Polymorphism � Use type variables f = λ x: i nt � i nt . λ y: i nt . x( x( y) )

  9. Universal Polymorphism Inclusion = Subtype Polymorphism cl ass CPt ext ends Pt { col or c; � One object belongs to many classes. CPt ( i nt x, i nt y, col or c) { super ( x, y) ; E.g., a colored point t hi s. c = c; can be seen as a point. } col or get c ( ) { r et ur n t hi s. c; } } Parametric Polymorphism � Use type variables f = λ x: i nt � i nt . λ y: i nt . x( x( y) ) bool � bool bool

  10. Universal Polymorphism Inclusion = Subtype Polymorphism cl ass CPt ext ends Pt { col or c; � One object belongs to many classes. CPt ( i nt x, i nt y, col or c) { super ( x, y) ; E.g., a colored point t hi s. c = c; can be seen as a point. } col or get c ( ) { r et ur n t hi s. c; } } Parametric Polymorphism � Use Type Variables f = λ x: . λ y: X Y . x( x( y) )

  11. Universal Polymorphism Inclusion = Subtype Polymorphism cl ass CPt ext ends Pt { col or c; � One object belongs to many classes. CPt ( i nt x, i nt y, col or c) { super ( x, y) ; E.g., a colored point t hi s. c = c; can be seen as a point. } col or get c ( ) { r et ur n t hi s. c; } } Parametric Polymorphism � Use Type Variables f = λ x: . λ y: X Y . x( x( y) ) Y � Y Y “principal type” of f = λ x. λ y. x( x( y) )

  12. Parametric Polymorphism λ x. λ y. x( x( y) ) ?? How to find the principal type of � type check and accumulate constraints about the types of the variables

  13. Parametric Polymorphism λ x: X. λ y: Y. x( x( y) ) ?? How to find the principal type of � type check and accumulate constraints about the types of the variables Type Variables Type checking x( y) requires that X = Y � Z Type checking x( x( y) ) requires that X = Z � W

  14. Parametric Polymorphism λ x: X. λ y: Y. x( x( y) ) ?? How to find the principal type of � type check and accumulate constraints about the types of variables Type Parameters Type checking x( y) requires that X = Y � Z Type checking x( x( y) ) requires that X = Z � W � Z = Y and X = Y � Y (and result type is Y) This process is called type inference or type reconstruction.

  15. Parametric Polymorphism λ x: X. λ y: Y. x( x( y) ) ?? How to find the principal type of � type check and accumulate constraints about the types of variables Type Parameters Type checking x( y) requires that X = Y � Z constraints Type checking x( x( y) ) requires that X = Z � W � Z = Y and X = Y � Y (and result type is Y) smallest solution This process is called type inference or type reconstruction.

  16. 2. Type Inference (Reconstruction) For simply typed lambda calculus (with base types, Int and Bool) A Type Substitution is a mapping from type variables to types. E.g. σ = [X / bool, Y / X � X] then σ X = bool and σ Y = X � X (applied simultaneously) Composition σ ◦ γ “sigma after gamma” ( σ ◦ γ ) S = σ ( γ S) σ ◦ γ := [ X / σ (T) for X / T in γ , and X / T for X / T in σ with X ∉ dom( γ ) ]

  17. 2. Type Inference (Reconstruction) Extend type substitution to environments Γ and t er m s t . Lemma. Type substitution preserves typing: if Γ ` t: T then σΓ ` σ t : σ T. Proof. By induction on the structure of term t. Example. x:X ` λ y:X � int. y x : int is derivable. Applying σ = [ X / bool ] gives x:bool ` λ y:bool � int. y x : int which is also derivable.

  18. 2. Type Inference (Reconstruction) Γ : environment t : term A solution for ( Γ , t) is a pair ( σ , T) such that σΓ ` σ t : T Example: Γ = f : X, a : Y and t = f a Then ( [ X / Y � int ], int ) ( [ X / int � int, Y � int ], int ) ( [ X / Y � Z], Z ) ( [ X / Y � Z, Z � int ], Z ) are solutions of ( Γ , t)

  19. 2. Type Inference (Reconstruction) Γ : environment t : term A solution for ( Γ , t) is a pair ( σ , T) such that σΓ ` σ t : T Find three different solutions for Γ = ∅ and t = λ x: X. λ y: Y. λ z: Z. ( x z) ( y z)

  20. 2. Type Inference (Reconstruction) Γ : environment t : term A solution for ( Γ , t) is a pair ( σ , T) such that σΓ ` σ t : T Constraint-Based Typing: Given ( Γ , t) Calculate set of constraints that must be satisfied by ANY solution for ( Γ , t)

  21. 2. Type Inference (Reconstruction) t r ue : Bool f al se : Bool t 1 : Bool t 2 : T t 3 : T i f t 1 t hen t 2 el se t 3 : T zer o : Nat t 1 : Nat t 1 : Nat t 1 : Nat succ t 1 : Nat pr ed t 1 : Nat i sZer o t 1 : Bool Γ ` t 1 : T || U C C’ = C ∪ { T = Nat } Γ ` succ t 1 : Nat || U C’

  22. 2. Type Inference (Reconstruction) t r ue : Bool f al se : Bool t 1 : Bool t 2 : T t 3 : T i f t 1 t hen t 2 el se t 3 : T zer o : Nat t 1 : Nat t 1 : Nat t 1 : Nat succ t 1 : Nat pr ed t 1 : Nat i sZer o t 1 : Bool Γ ` t 1 : T || U C C’ = C ∪ { T = Nat } Γ ` pr ed t 1 : Nat || U C’

  23. 2. Type Inference (Reconstruction) t r ue : Bool f al se : Bool t 1 : Bool t 2 : T t 3 : T i f t 1 t hen t 2 el se t 3 : T zer o : Nat t 1 : Nat t 1 : Nat t 1 : Nat succ t 1 : Nat pr ed t 1 : Nat i sZer o t 1 : Bool Γ ` t 1 : T || U C C’ = C ∪ { T = Nat } Γ ` i sZer o t 1 : Bool || U C’

  24. 2. Type Inference (Reconstruction) t r ue : Bool f al se : Bool t 1 : Bool t 2 : T t 3 : T i f t 1 t hen t 2 el se t 3 : T zer o : Nat t 1 : Nat t 1 : Nat t 1 : Nat succ t 1 : Nat pr ed t 1 : Nat i sZer o t 1 : Bool Γ ` t 1 : T 1 || U1 C 1 U1, U2, U3 pairwise disjoint Γ ` t 2 : T 2 || U2 C 2 Γ ` t 3 : T 3 || U3 C 3 C’ = C 1 ∪ C 2 ∪ C 3 ∪ { T 1 = Bool, T 2 = T 3 } Γ ` i f t 1 t hen t 2 el se t 3 : T 2 || U1 ∪ U2 ∪ U3 C’

  25. 2. Type Inference (Reconstruction) x: T ∈ Γ Γ , x: T 1 Γ ` t 1 : T � R Γ ` t 2 : T ` t : T 2 Γ ` x : T Γ ` λ x: T 1 . t : T 1 � T 2 Γ ` t 1 t 2 : R x: T ∈ Γ Variable and Abstraction: Γ ` x : T || ∅ { } No new constraints! Γ , x: T 1 ` t : T 2 || U C Γ ` λ x: T 1 . t : T 1 � T 2 || U C

  26. 2. Type Inference (Reconstruction) x: T ∈ Γ Γ , x: T 1 Γ ` t 1 : T � R Γ ` t 2 : T ` t : T 2 Γ ` x : T Γ ` λ x: T 1 . t : T 1 � T 2 Γ ` t 1 t 2 : R x: T ∈ Γ Variable and Abstraction: Γ ` x : T || ∅ { } No new constraints! Γ , x: T 1 ` t : T 2 || U C BUT: we can leave out Γ ` λ x . t : T 1 � T 2 || U C type annotations now!!

  27. 2. Type Inference (Reconstruction) x: T ∈ Γ Γ , x: T 1 Γ ` t 1 : T � R Γ ` t 2 : T ` t : T 2 Γ ` x : T Γ ` λ x: T 1 . t : T 1 � T 2 Γ ` t 1 t 2 : R Application: Γ ` t 1 : T 1 || U1 C 1 X fresh Γ ` t 2 : T 2 || U2 C 2 C’ = C 1 ∪ C 2 ∪ { T 1 = T 2 � X } Γ ` t 1 t 2 : X || U1 ∪ U2 ∪ {X} C’

  28. 2. Type Inference (Reconstruction) Suppose that Γ ` t: S || C solution of ( Γ ,t,S,C) is a pair ( σ , T) such that σ satisfies C and σ S = T How to find a solution to a set of constraints?? Unification [Robinson, 1965] � Basis to logic programming (e.g., used in Prolog) � Linear space algorithm [Martelli,Montanari, 1984]

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend