Implementing nml: Hindley-Milner Type Inference

Similar documents
COMP 105 Assignment: Hindley-Milner Type Inference

COMP 105 Homework: Type Systems

COMP105 Assignment: Lambda Calculus

Functional programming in μscheme

COMP 105 Assignment: Core ML

COMP 105 Assignment: Smalltalk

COMP 105 Assignment: Smalltalk

Datatype declarations

Functional programming in μscheme

Agenda. CS301 Session 9. Abstract syntax: top level. Abstract syntax: expressions. The uscheme interpreter. Approaches to solving the homework problem

CS558 Programming Languages


CSCI-GA Final Exam

Module 8: Local and functional abstraction

Part I: Written Problems

Processadors de Llenguatge II. Functional Paradigm. Pratt A.7 Robert Harper s SML tutorial (Sec II)

Homework 5. Notes. Turn-In Instructions. Reading. Problems. Handout 19 CSCI 334: Spring (Required) Read Mitchell, Chapters 6 and 7.

CS558 Programming Languages

Flang typechecker Due: February 27, 2015

A First Look at ML. Chapter Five Modern Programming Languages, 2nd ed. 1

CSE 341, Autumn 2005, Assignment 3 ML - MiniML Interpreter

Computer Science CSC324 Wednesday February 13, Homework Assignment #3 Due: Thursday February 28, 2013, by 10 p.m.

Part I: Written Problems

CS558 Programming Languages

CS152: Programming Languages. Lecture 11 STLC Extensions and Related Topics. Dan Grossman Spring 2011

PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between

Agenda. CS301 Session 11. Common type constructors. Things we could add to Impcore. Discussion: midterm exam - take-home or inclass?

CS2112 Fall Assignment 4 Parsing and Fault Injection. Due: March 18, 2014 Overview draft due: March 14, 2014

Exercises on ML. Programming Languages. Chanseok Oh

TYPE INFERENCE. François Pottier. The Programming Languages Mentoring ICFP August 30, 2015

A Second Look At ML. Chapter Seven Modern Programming Languages, 2nd ed. 1

CSE 341, Spring 2011, Final Examination 9 June Please do not turn the page until everyone is ready.

Learning Standard ML

1. For every evaluation of a variable var, the variable is bound.

Lists. Michael P. Fourman. February 2, 2010

COS 320. Compiling Techniques

CSE341 Spring 2017, Final Examination June 8, 2017

CSc 372, Fall 2001 Final Examination December 14, 2001 READ THIS FIRST

CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018

Type Systems, Type Inference, and Polymorphism

Homework 6: Higher-Order Procedures Due: 11:59 PM, Oct 16, 2018

Learning Standard ML

CSCI-GA Scripting Languages

CSE-321: Assignment 8 (100 points)

Tips from the experts: How to waste a lot of time on this assignment

Homework 6: Higher-Order Procedures Due: 10:00 PM, Oct 17, 2017

CIS 120 Midterm I February 16, 2015 SOLUTIONS

This example highlights the difference between imperative and functional programming. The imperative programming solution is based on an accumulator

How does ML deal with +?

Intro. Scheme Basics. scm> 5 5. scm>

Specification and Verification in Higher Order Logic

Introduction to OCaml

CS 11 Haskell track: lecture 1

ML Type Inference and Unification. Arlen Cox

Polymorphism and Type Inference

a b c d a b c d e 5 e 7

Programming in Standard ML: Continued

Metaprogramming assignment 3

CSE413: Programming Languages and Implementation Racket structs Implementing languages with interpreters Implementing closures

Overloading, Type Classes, and Algebraic Datatypes

ML 4 Unification Algorithm

CSE341: Programming Languages Lecture 17 Implementing Languages Including Closures. Dan Grossman Autumn 2018

CSE341 Spring 2017, Final Examination June 8, 2017

Recap from last time. Programming Languages. CSE 130 : Fall Lecture 3: Data Types. Put it together: a filter function

Hard deadline: 3/28/15 1:00pm. Using software development tools like source control. Understanding the environment model and type inference.

The design of a programming language for provably correct programs: success and failure

UNIVERSITY OF TORONTO Faculty of Arts and Science

Begin at the beginning

Lecture 2: SML Basics

COMP 40 Assignment: Interfaces, Implementations, and Images

CSc 372, Fall 1996 Mid-Term Examination Monday, October 21, 1996 READ THIS FIRST

CSE 143: Computer Programming II Winter 2019 HW6: AnagramSolver (due Thursday, Feb 28, :30pm)

(Refer Slide Time: 4:00)

CSc 372, Spring 1996 Mid-term Examination Solution Key

CSC 372 Haskell Mid-term Exam Feburary 28, 2014

CSc 372, Spring 1996 Mid-Term Examination Tuesday, March 5, 1996 READ THIS FIRST

A Fourth Look At ML. Chapter Eleven Modern Programming Languages, 2nd ed. 1

CS52 - Assignment 8. Due Friday 4/15 at 5:00pm.

Simple Unification-based Type Inference for GADTs

Homework 8: Matrices Due: 11:59 PM, Oct 30, 2018

Lecture Notes on Induction and Recursion

A Third Look At ML. Chapter Nine Modern Programming Languages, 2nd ed. 1

CSCI 3155: Homework Assignment 4

CS 11 Ocaml track: lecture 2

Overview of Project V Buffer Manager. Steps of Phase II

Object-Oriented Programming in Smalltalk

Polymorphic lambda calculus Princ. of Progr. Languages (and Extended ) The University of Birmingham. c Uday Reddy

CSE341 Spring 2016, Midterm Examination April 29, 2016

An anecdote about ML type inference

CSE341, Fall 2011, Midterm Examination October 31, 2011

Problem 1. Remove consecutive duplicates (6 points, 11 mintues)

Variables and Bindings

All the operations used in the expression are over integers. a takes a pair as argument. (a pair is also a tuple, or more specifically, a 2-tuple)

UNIVERSITY OF TORONTO Faculty of Arts and Science. Midterm Sample Solutions CSC324H1 Duration: 50 minutes Instructor(s): David Liu.

Solutions and grading standards

Chapter 15. Functional Programming Languages

SCHEME 7. 1 Introduction. 2 Primitives COMPUTER SCIENCE 61A. October 29, 2015

Homework: More Abstraction, Trees, and Lists

Homework 7: Subsets Due: 11:59 PM, Oct 23, 2018

CSE341 Spring 2016, Final Examination June 6, 2016

Transcription:

Implementing nml: Hindley-Milner Type Inference Due Friday, April 10 at 5:59PM. In this assignment you will implement Hindley-Milner type inference, which represents the current ``best practice'' for flexible static typing. The assignment has two purposes: To help you develop a deep understanding of type inference To help you continue to build your ML programming skills Complete Exercises S and T below, and from Chapter 7 in Ramsey, complete Exercises 1, 2, 15, 16, and 17. Getting the code To get the code, git clone linux.cs.tufts.edu:/comp/105/build-prove-compare The code you need is in bare/nml/ml.sml. Two exercises to do by yourself (10%) Complete Exercises 1 and 2 on page 346 of Ramsey. These exercises explore some implications of type inference. In your answer to question 1, do not use letrec. Question 2 in the text is worded in a somewhat confusing way. To clarify: the typing rules of nml permit the declaration (val-rec n n). To preserve soundness, however, the declaration is rejected in evaldef. If the declaration weren't rejected, what type scheme σ would be inferred for n? The answers to both exercises should go into file 1-2.nml; your answer to Exercise 2 should appear in a comment. Five exercises to do with a partner (90%) Complete Exercises 15, 16 and 17 from pages 347 350 of Ramsey, and the two exercises S and T below. For the coding exercises you'll be modifying the interpreter in build-prove-compare/bare/nml/ml.sml. S. Test cases for the solver. Submit three test cases for the constraint solver. At least two of these test cases should be constraints that have no solution. Assuming that we provide a function constrainttest : con -> answer, put your test cases in file stest.sml as three successive calls to constrainttest. Do not define constrainttest yourself. Here is a sample stest.sml file: val _ = constrainttest (TYVAR "a" ~ TYVAR "b") val _ = constrainttest (CONAPP (TYCON "list", [TYVAR "a"]) ~ TYCON "int") val _ = constrainttest (TYCON "bool" ~ TYCON "int") Naturally, you will supply your own test cases. T. Test cases for type inference. Submit three test cases for type inference. At least two of these test cases should be for terms that fail to type check. Each test case should be a definition written in nml. Put your test cases in a file ttest.nml. Here is a sample ttest.nml file: (val weird (lambda (x y z) (cons x y z))) (+ 1 #t) (lambda (x) (cons x x)) Naturally, you will supply your own test cases. COMP 105 Homework: nml Type Inference Implementing nml: Hindley-Milner Type Inference 1

For the remaining exercises, here are some additional remarks and suggestions. Implement a constraint solver Complete Exercise 15 on page 350 of Ramsey. Be sure your solver produces the correct result on our three test cases and also on your three test cases. This exercise is probably the most difficult part of the assignment. Before proceeding with type inference, make sure your solver produces the correct result on our test cases and on your test cases. You may want to show your solver code to the course staff. Implement type inference Complete Exercise 16 on page 350 Ramsey. New primitives Complete Exercise 17 on page 350 Ramsey. This is one assignment where it pays to run a lot of tests, of both good and bad definitions. The most effective test of your algorithm is not that it properly assign types to correct terms, but that it reject ill-typed terms. This assignment is your best chance to earn the large bonuses available by finding bugs in the instructor's code. I have posted a functional topological sort that makes an interesting test case. Incidentally, if you call your interpreter ml.sml, you can build a standalone version in a.out by running mosmlc ml.sml or a faster version in ml by running mlton -output a.out ml.sml. Hints, guidelines, and test code To help you with the solver, once you have implemented solve, the following code redefines solve into a version that checks itself for sanity (ie, idempotence). It is a good idea to check that the substitution returned by your solver is idempotent before using it in your type inferencer. fun isstandard pairs = let fun distinct a' (a, tau) = a a' andalso not (member a' (freetyvars tau)) fun good (prev', (a, tau)::next) = List.all (distinct a) prev' andalso List.all (distinct a) next andalso good ((a, tau)::prev', next) good (_, []) = true in good ([], pairs) end val solve = fn c => let val theta = solve c in if isstandard theta then theta else raise BugInTypeInference "non-standard substitution" end The type-inference code will be easier to write with the aid of a summary of the nano-ml type system which I have placed online. With your solver in place, the type inference should be straightforward, with two exceptions: let and letrec. You can emulate the implementations for val and val-rec, but you must split the constraint. The splitting is covered in detail in the book, on pages 324 327. Extra Credit For extra credit, you may complete any of the following: COMP 105 Homework: nml Type Inference Mutation, as in Exercise 21(a)(b) and possibly (c) Explicit types, as in Exercise 22 Better error messages, as in Exercise 18(a)(b) and possibly (c) Tuples, as in Exercise 19 Generative types, as in Exercise 20 Of these exercises the most interesting are probably Mutation (easy) and Explicit types (not easy). Five exercises to do with a partner (90%) 2

Testing The course interpreter is located in /comp/105/bin/nml. If your interpreter can process the initial basis and infer correct types, you are doing OK. The real test of your interpreter is that it should reject incorrect definitions. You should prepare a dozen or so definitions that should not type check, and make sure they don't. For example: (val bad (lambda (x) (cons x x))) (val bad (lambda (x) (cdr (pair x x)))) Pick your toughest three test cases to submit for Exercise T. Avoid common mistakes Here some common mistakes: A common mistake is to create too many fresh variables or to fail to constrain your fresh variables. Another surprisingly common mistake is to include redundant cases in the code for inferring the type of a list literal. As is almost always true of functions that consume lists, it's sufficient to write one case for NIL and one case for PAIR. It's a common mistake to define a new exception and not handle it. If you define any new exceptions, make sure they are handled. It's not acceptable for your interpreter to crash with an unhandled exception just because some nano-ml code didn't type-check. It's a common mistake to omit the initial basis for testing and then to forget to include an initial basis in the interpreter you submit. There are also some common assumptions which are mistaken: It is a mistake to assume that an element of a literal list always has a monomorphic type. It is a mistake to assume that begin is never empty. What to submit For your solo work, run submit105-ml-inf-solo to submit file 1-2.nml. For your work with a partner, run submit105-ml-inf-pair to submit these files: README, telling us with whom you collaborated, how long you worked, what parts you finished (including any extra credit), and so on. stest.sml, containing your answer to Exercise S ttest.nml, containing your answer to Exercise T ml.sml, containing a completely interpreter for nano-ml which includes your answers to Exercises 15, 16, and 17. Your solutions are going to be evaluated automatically. We must be able to compile your solution in Moscow ML by typing, e.g., mosmlc ml.sml If there are errors or warnings in this step, your work will earn No Credit for functional correctness. How your work will be evaluated We will focus most of our evaluation on your constraint solving and type inference. Testing 3

Form Exemplary Satisfactory Must improve The code has no offside violations. Or, the code has just a couple of minor offside violations. Indentation is consistent everywhere. The submission has no bracket faults. The submission has a few minor bracket faults. Or, the submission has no bracketed names, but a few bracketed conditions or other faults. The code has several offside violations, but course staff can follow what's going on without difficulty. In one or two places, code is not indented in the same way as structurally similar code elsewhere. The submission has some redundant parentheses around function applications that are under infix operators (not checked by the bracketing tool) Offside violations make it hard for course staff to follow the code. The code is not indented consistently. The submission contains more than a handful of parenthesized names as in (x) The submission contains more than a handful of parenthesized if conditions. Names Type variables have names beginning with a; types have names beginning with t or tau; constraints have names beginning with c; substitutions have names beginning with theta; lists of things have names that begin conventionally and end in s. Structure The nine cases of simple type equality are handled by these five patterns: TYVAR/any, any/tyvar, CONAPP/CONAPP, TYCON/TYCON, other. The code for solving αâσâ¼âσÏ has exactly three cases. The constraint solver is implemented using an appropriate set of helper functions, each of which has a good name and a clear contract. Type inference for list literals has no redundant case analysis. Type inference for expressions has no redundant case analysis. In the code for type inference, course staff see how each part of the code is necessary to implement the algorithm correctly. Wherever possible appropriate, submission uses map, filter, foldr, Or, the submission contains a handful of bracketing faults. Or, the submission contains more than a handful of bracketing faults, but just a few bracketed names or conditions. Types, type variables, constraints, and substitutions mostly respect conventions, but there are some names like x or l that aren't part of the typical convention. The nine cases are handled by nine patterns: one for each pair of value constructors for ty The code for αâσâ¼âσÏ has more than three cases, but the nontrivial cases all look different. The constraint solver is implemented using too many helper functions, but each one has a good name and a clear contract. The constraint solver is implemented using too few helper functions, and the course staff has some trouble understanding the solver. Type inference for list literals has one redundant case analysis. Some names misuse standard conventions; for example, in some places, a type variable might have a name beginning with t, leading a careless reader to confuse it with a type. The case analysis for a simple type equality does not have either of the two structures on the left. The code for αâσâ¼âσÏ has more than three cases, and different nontrivial cases share duplicate or near-duplicate code. Course staff cannot identify the role of helper functions; course staff can't identify contracts and can't infer contracts from names. Type inference for list literals has more than one redundant case analysis. Type inference for expressions has more than one redundant case analysis. Course staff believe that the code is significantly more complex than what is required to implement the How your work will be evaluated 4

and exists, either from List or from ListPair Type inference for expressions has one redundant case analysis. In some parts of the code for type inference, course staff see some code that they believe is more complex than is required by the typing rules. typing rules. Submission includes one or more recursive functions that could have been written without recursion by using map, filter, List.exists, or a ListPair function. Submission sometimes uses a fold where map, filter, or exists could be used. How your work will be evaluated 5