Differences between revisions 1 and 36 (spanning 35 versions)
Revision 1 as of 2012-10-11 14:56:39
Size: 17
Editor: dreyer
Comment:
Revision 36 as of 2012-11-15 11:33:43
Size: 4941
Editor: dreyer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
This is a stub. = Parametricity and Modular Reasoning =

'''Instructor:''' [[http://www.mpi-sws.org/~dreyer|Derek Dreyer]]

'''Meeting time:''' Tue, Thu @ 2:00-4:00 PM

'''Place:''' Campus E1.5, Room 029 (videocast to KL)

== Abstract ==

Abstract data types (ADTs) and other facilities for information hiding
in programming languages (e.g. private fields, local variables) are
widely considered to be crucial for supporting data abstraction and
modularity, but what does that actually buy us in terms of reasoning
about our code? As it turns out, it buys us a great deal, but
formalizing what it buys us, especially in the context of modern
programming languages, is quite tricky.

The formal essence of data abstraction was first characterized by John
Reynolds in a landmark 1983 paper, "Types, Abstraction and Parametric
Polymorphism", in which he introduced the concept of "relational
parametricity" via his "abstraction theorem". The abstraction theorem
formally establishes that the behavior of clients of an ADT must be
unaffected by changes to the internal representation of the ADT that
are preserved by its operations. However, Reynolds's original work
only concerned pure System F, the polymorphic lambda-calculus, and
there have since been decades of work on extending and generalizing
his results to richer, more realistic languages supporting a host of
computational effects.

In this course, we will start with Reynolds's work and build
progressively toward semantic models of modern languages, such as
Kripke logical relations and bisimulations models, which support very
subtle and sophisticated forms of modular reasoning. To keep the
formal material of the course in a unified framework, we will focus on
models of data abstraction based on *operational* semantics, in the
tradition of the work of Andrew Pitts.

As a basic prerequisite, students should be familiar with standard
operational techniques, such as proofs by induction over operational
semantics and type systems, which are covered in Pierce's TAPL book
and Harper's PFPL book, among other sources. The grade will be based
on homework assignments, student presentations on assigned papers, and
class participation.

Along the way, we will explore a number of the following topics,
possibly among others:

 * Proving termination/normalization of System F (Girard's method, "unary logical relations")
 * Relational parametricity (Reynolds's abstraction theorem, "binary logical relations")
 * Representation independence as an application of parametricity (Mitchell)
 * Using parametricity to show definability of types by Church encodings
 * "Free" theorems (Wadler) and applications to fusion optimizations (Johann)
 * Relational parametricity and "units of measure" (Kennedy)
 * Supporting recursion and context-sensitive semantics by "TT-closure" (Pitts)
 * Supporting local invariants on first-order state via "Kripke logical relations" (Pitts-Stark)
 * Supporting recursive types and higher-order state by "step-indexed" Kripke logical relations (Appel-McAllester, Ahmed)
 * Transitional invariants (Dreyer et al.)
 * Environmental bisimulations (Sumii et al.)
 * Parametric bisimulations (Hur et al.)
 * Logical relations for concurrency (Turon et al.)

== Schedule ==

|| '''Date and time''' || '''Topic''' || '''Presenter''' || '''Files''' ||
|| Tue, 2012-10-16 || Introduction || Derek || ||
|| Thu, 2012-10-18 || System F; Girard's method for proving termination || Derek || [[attachment:girard.pdf|Girard, Lafont, Taylor (1990)]] <<BR>> [[attachment:gallier.pdf|Gallier (1990)]] ||
|| Tue, 2012-10-23 || Unary parametricity (applications of Girard's method) || Derek || [[attachment:swasey-notes1.pdf|Dave Swasey's scribe notes #1]] ||
|| Thu, 2012-10-25 || '''''Class cancelled (Derek out of town)''''' || || ||
|| Tue, 2012-10-30 || Relational parametricity (Reynolds) || Derek || [[attachment:reynolds.pdf|Reynolds (1983)]] <<BR>> '''[[attachment:hw1.pdf|Homework #1]]''' ||
|| Thu, 2012-11-1 || '''''No class (All Saints' Day)''''' || || ||
|| Tue, 2012-11-6 || Definability of types by Church encodings || Derek || [[attachment:plotkin-abadi.pdf|Plotkin, Abadi (1993)]] <<BR>> [[attachment:birkedal-mogelberg.pdf|Birkedal, Møgelberg (2005)]] ||
|| Thu, 2012-11-8 || Free theorems; short cut fusion || Derek || [[attachment:wadler.pdf|Wadler (1989)]] <<BR>> [[attachment:gill.pdf|Gill, Launchbury, Peyton Jones (1993)]] <<BR>> [[attachment:johann.pdf|Johann (2003)]] ||
|| Tue, 2012-11-13 || Representation independence || Derek || [[attachment:mitchell-plotkin.pdf|Mitchell, Plotkin (1988)]] <<BR>> [[attachment:mitchell.pdf|Mitchell (1986)]] <<BR>> [[attachment:pitts-attapl.pdf|Pitts' ATTAPL chapter (2005)]] ||
|| Thu, 2012-11-15 || Recursion, admissibility, and TT-closure || Derek || [[attachment:pitts-densem-notes.pdf|Pitts' lecture notes on denotational semantics]] ||

Parametricity and Modular Reasoning

Instructor: Derek Dreyer

Meeting time: Tue, Thu @ 2:00-4:00 PM

Place: Campus E1.5, Room 029 (videocast to KL)

Abstract

Abstract data types (ADTs) and other facilities for information hiding in programming languages (e.g. private fields, local variables) are widely considered to be crucial for supporting data abstraction and modularity, but what does that actually buy us in terms of reasoning about our code? As it turns out, it buys us a great deal, but formalizing what it buys us, especially in the context of modern programming languages, is quite tricky.

The formal essence of data abstraction was first characterized by John Reynolds in a landmark 1983 paper, "Types, Abstraction and Parametric Polymorphism", in which he introduced the concept of "relational parametricity" via his "abstraction theorem". The abstraction theorem formally establishes that the behavior of clients of an ADT must be unaffected by changes to the internal representation of the ADT that are preserved by its operations. However, Reynolds's original work only concerned pure System F, the polymorphic lambda-calculus, and there have since been decades of work on extending and generalizing his results to richer, more realistic languages supporting a host of computational effects.

In this course, we will start with Reynolds's work and build progressively toward semantic models of modern languages, such as Kripke logical relations and bisimulations models, which support very subtle and sophisticated forms of modular reasoning. To keep the formal material of the course in a unified framework, we will focus on models of data abstraction based on *operational* semantics, in the tradition of the work of Andrew Pitts.

As a basic prerequisite, students should be familiar with standard operational techniques, such as proofs by induction over operational semantics and type systems, which are covered in Pierce's TAPL book and Harper's PFPL book, among other sources. The grade will be based on homework assignments, student presentations on assigned papers, and class participation.

Along the way, we will explore a number of the following topics, possibly among others:

  • Proving termination/normalization of System F (Girard's method, "unary logical relations")
  • Relational parametricity (Reynolds's abstraction theorem, "binary logical relations")
  • Representation independence as an application of parametricity (Mitchell)
  • Using parametricity to show definability of types by Church encodings
  • "Free" theorems (Wadler) and applications to fusion optimizations (Johann)
  • Relational parametricity and "units of measure" (Kennedy)
  • Supporting recursion and context-sensitive semantics by "TT-closure" (Pitts)
  • Supporting local invariants on first-order state via "Kripke logical relations" (Pitts-Stark)
  • Supporting recursive types and higher-order state by "step-indexed" Kripke logical relations (Appel-McAllester, Ahmed)

  • Transitional invariants (Dreyer et al.)
  • Environmental bisimulations (Sumii et al.)
  • Parametric bisimulations (Hur et al.)
  • Logical relations for concurrency (Turon et al.)

Schedule

Date and time

Topic

Presenter

Files

Tue, 2012-10-16

Introduction

Derek

Thu, 2012-10-18

System F; Girard's method for proving termination

Derek

Girard, Lafont, Taylor (1990)
Gallier (1990)

Tue, 2012-10-23

Unary parametricity (applications of Girard's method)

Derek

Dave Swasey's scribe notes #1

Thu, 2012-10-25

Class cancelled (Derek out of town)

Tue, 2012-10-30

Relational parametricity (Reynolds)

Derek

Reynolds (1983)
Homework #1

Thu, 2012-11-1

No class (All Saints' Day)

Tue, 2012-11-6

Definability of types by Church encodings

Derek

Plotkin, Abadi (1993)
Birkedal, Møgelberg (2005)

Thu, 2012-11-8

Free theorems; short cut fusion

Derek

Wadler (1989)
Gill, Launchbury, Peyton Jones (1993)
Johann (2003)

Tue, 2012-11-13

Representation independence

Derek

Mitchell, Plotkin (1988)
Mitchell (1986)
Pitts' ATTAPL chapter (2005)

Thu, 2012-11-15

Recursion, admissibility, and TT-closure

Derek

Pitts' lecture notes on denotational semantics

paramore (last edited 2013-03-03 23:20:23 by dreyer)