Difference between revisions of "CS522 - Programming Language Semantics (Fall 2018)"
(→Lecture Notes, Useful Material) |
(→Lecture Notes, Useful Material) |
||
(10 intermediate revisions by one user not shown) | |||
Line 58: | Line 58: | ||
::* {{pdf|CS522-Fall-2018-Lambda.pdf|Book material on Lambda Calculus and Combinatory Logic}} | ::* {{pdf|CS522-Fall-2018-Lambda.pdf|Book material on Lambda Calculus and Combinatory Logic}} | ||
::* {{zip|CS522-Fall-2018-HandWritten-CCC-untyped-lambda.zip|Hand written notes on CCC models of untyped Lambda Calculus}} | ::* {{zip|CS522-Fall-2018-HandWritten-CCC-untyped-lambda.zip|Hand written notes on CCC models of untyped Lambda Calculus}} | ||
+ | {| border="1" cellpadding="5" cellspacing="0" width="100%" | ||
+ | ! style="background:#ccddcc;" align="left" | '''''<font color=red>HW5 (due Monday, November 12)</font>''''' [[Image:downarrow.png]] | ||
+ | |- | ||
+ | | This is a theoretical HW, requiring you to do three proofs using category theory. You are strongly encouraged to do *all* the exercises in the slides, especially if you did not have prior experience with category theory. However, for his HW, only handle the following three exercises: (1, easy) Exercise 8 on slide 20 in the {{pdf|CS522-Fall-2018-Category-Theory-slides.pdf|category theory slides}}; (2, easy) Property 1 on `category theory - 3.png` in the {{zip|CS522-Fall-2018-HandWritten-Category-Theory.zip|hand written notes on category theory properties}}; and (3, harder) Lemma on slide `ccc-untyped-lambda - 3.png` in the {{zip|CS522-Fall-2018-HandWritten-CCC-untyped-lambda.zip|hand written notes on CCC models of untyped lambda calculus}}. | ||
+ | |} | ||
:* '''''Simply-Typed Lambda Calculus''''' | :* '''''Simply-Typed Lambda Calculus''''' | ||
::* Basic notions: type system, equational semantics, models, completeness. {{pdf|CS522-Fall-2018-Simply-Typed-Lambda-Calculus.pdf|Slides}} | ::* Basic notions: type system, equational semantics, models, completeness. {{pdf|CS522-Fall-2018-Simply-Typed-Lambda-Calculus.pdf|Slides}} | ||
::* Cartesian Closed Categories as models for simply-typed lambda-calculus. {{pdf|CS522-Fall-2018-PL-CCC.pdf|Slides}} | ::* Cartesian Closed Categories as models for simply-typed lambda-calculus. {{pdf|CS522-Fall-2018-PL-CCC.pdf|Slides}} | ||
+ | {| border="1" cellpadding="5" cellspacing="0" width="100%" | ||
+ | ! style="background:#ccddcc;" align="left" | '''''<font color=red>HW6 (due Friday, November 30---can also take the weekend if needed)</font>''''' [[Image:downarrow.png]] | ||
+ | |- | ||
+ | | Proposition 8 from the slides on simply-typed lambda calculus. Exercises 5 and 6 from the slides on CCCs. | ||
+ | |} | ||
:* '''''Recursion, Types, Polymorphism''''' | :* '''''Recursion, Types, Polymorphism''''' | ||
− | ::* Recursion and Types. | + | ::* Recursion and Types. {{pdf|CS522-Fall-2018-Recursion.pdf|Slides}} |
− | ::* Polymorphism. | + | ::* Polymorphism. {{pdf|CS522-Fall-2018-Polymorphism.pdf|Slides}} |
+ | {| border="1" cellpadding="5" cellspacing="0" width="100%" | ||
+ | ! style="background:#ccddcc;" align="left" | '''''<font color=red>Extra-Credit (due Monday, Dec 17) </font>''''' [[Image:downarrow.png]] | ||
+ | |- | ||
+ | | This can be regarded as "Final exam", but it only counts as HW (and not project) extra-credit and has the same weight as any of the previous HWs. If you got perfect score so far for the 6 HWs above, then you do not need to do this extra-credit. Choose one, and only one, of the following and do it well (you will get either 10 or 0 for this extra-credit problem!): | ||
+ | <br> (1) Complete this {{zip|CS522-Fall-2018-Lambda-Extra.zip|LAMBDA code snippet}}. This covers knowledge about untyped lambda-calculus, fixed-points, combinatory logic, and de Bruijn nameless representations. | ||
+ | <br> (2) Consider the PCF language with call-by-value (note that the slides above define the call-by-name variant). Give it a small-step, a big-step, and a denotational semantics in Maude, using the representations of these semantic approaches discussed in the first part of the class. Provide also 5 (five) PCF programs that can be used to test all three of your semantics. You can use the builtins provided as part of the previous HWs (you should only need the generic substitution from there). | ||
+ | <br> (3) This has two problems. The first is to define a type checker for the parametric polymorphic lambda-calculus (or System F). The second is to define a type checker for the subtype polymorphic lambda-calculus. In both cases, make sure that you also include the conditional and a few examples showing that your definition works. Feel free to pick whatever syntax you want for the various constructs (both for terms and for types). | ||
+ | |} |
Latest revision as of 14:40, 6 December 2018
Students enrolled in this class are expected to check this web page regularly. Lecture notes and important other material will be posted here.
[edit] Course Description
CS522 is an advanced course on semantics of programming languages. Various semantic approaches and related aspects will be defined and investigated. Executable semantics of various programming languages and paradigms will be discussed, together with major theoretical models.
- Meetings: Tu/Th 9:30 - 10:45, 1103 Siebel Center
- Professor: Grigore Rosu (Office: SC 2110, WWW: http://fsl.cs.illinois.edu/grosu, Email: grosu@illinois.edu)
- Office hours: By appointment, very flexible (held by Grigore Rosu in SC 2110)
[edit] Piazza Page
[edit] Lecture Notes, Useful Material
The links below provide you with useful material for this class, including complete lecture notes. These materials will be added by need and more topics will be added.
- Conventional Semantic Approaches
-
Slides (PDF)
Slides (PPTX)
(incomplete)
-
Book material on IMP, Big-Step SOS, Small-Step SOS, and Denotational Semantics
- Rewriting Logic and Maude
-
slides
- recommended only for a quick look
-
Book material
- recommended
-
-
HW1 (due Tuesday, September 18) ![]() |
---|
The following exercises are from the book material above. Do them only in Maude (that is, not on paper) by modifying ![]() ![]() In case you are not familiar with Maude, you are encouraged to do the following exercises to warm-up (but please do not include them as part of your HW1 submission): Exercise 30; Exercise 32; Exercise 33; Exercise 35; Exercise 36. All at pages 80/81. |
HW2 (due Wednesday, October 3 - easy HW, so earlier submission possible and appreciated) ![]() |
---|
The following exercises related to denotational semantics are from the book material above: Exercises 80, 81, 82 ((page 168; write these up on paper, or in a PDF); Exercise 83 (page 169; do it only in Maude (that is, not on paper) by modifying ![]() ![]() |
HW3 (due Monday, October 15) ![]() |
---|
Combine all the individual extensions of IMP in ![]() ![]() |
HW4 (due Monday, October 29) ![]() |
---|
Same as HW3 but for the three additional semantic approaches discussed in the lecture notes above: MSOS, RSEC, and CHAM. Use ![]() ![]() |
- Category theory: definition, diagrams, cones and limits, exponentials
- Lambda Calculus and Combinatory Logic
HW5 (due Monday, November 12) ![]() |
---|
This is a theoretical HW, requiring you to do three proofs using category theory. You are strongly encouraged to do *all* the exercises in the slides, especially if you did not have prior experience with category theory. However, for his HW, only handle the following three exercises: (1, easy) Exercise 8 on slide 20 in the ![]() ![]() ![]() ![]() ![]() ![]() |
- Simply-Typed Lambda Calculus
HW6 (due Friday, November 30---can also take the weekend if needed) ![]() |
---|
Proposition 8 from the slides on simply-typed lambda calculus. Exercises 5 and 6 from the slides on CCCs. |
Extra-Credit (due Monday, Dec 17) ![]() |
---|
This can be regarded as "Final exam", but it only counts as HW (and not project) extra-credit and has the same weight as any of the previous HWs. If you got perfect score so far for the 6 HWs above, then you do not need to do this extra-credit. Choose one, and only one, of the following and do it well (you will get either 10 or 0 for this extra-credit problem!):
|