Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Assignment 2 and lectures for week 7 #1056

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions courses/TSPL/2024/Assignment2.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,12 @@ module Quantifiers where
open import Relation.Nullary using (¬_)
open import Function using (_∘_)
open import plfa.part1.Isomorphism using (_≃_; extensionality; ∀-extensionality)
open import plfa.part1.Connectives
hiding (Tri)
open import plfa.part1.Quantifiers
hiding (∀-distrib-×; ⊎∀-implies-∀⊎; ∃-distrib-⊎; ∃×-implies-×∃; ∃¬-implies-¬∀; Tri)
open import Data.Product using (_×_; proj₁; proj₂) renaming (_,_ to ⟨_,_⟩)
open import Data.Unit using (⊤; tt)
open import Data.Sum using (_⊎_; inj₁; inj₂) renaming ([_,_] to case-⊎)
open import Data.Empty using (⊥; ⊥-elim)
open import Function.Bundles using (_⇔_)
open import Data.Product using (Σ; _,_; ∃; Σ-syntax; ∃-syntax)
```

#### Exercise `∀-distrib-×` (recommended)
Expand Down
6 changes: 4 additions & 2 deletions courses/TSPL/2024/tspl.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ Lectures on Tuesday and Thursday are immediately followed by a tutorial.
</tr>
<tr>
<td>7</td>
<td>**29 Oct** [Lists](/Lists/)</td>
<td>**29 Oct** [Lambda](/Lambda/)[^lists]</td>
<td>**30 Oct** [Lambda](/Lambda/)</td>
<td>**31 Oct** [Lambda](/Lambda/)</td>
<td>**31 Oct** (Milner lecture)
</tr>
<tr>
<td>8</td>
Expand All @@ -97,6 +97,8 @@ Lectures on Tuesday and Thursday are immediately followed by a tutorial.
</tbody>
</table>

[^lists]:In week 7, also read [Lists](/Lists/) on your own.


## Assessment

Expand Down
Loading