Skip to content
Snippets Groups Projects
Commit 7bd9e72d authored by Jonas Kastberg's avatar Jonas Kastberg
Browse files

More differences

parent 698be0b8
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,11 @@ The semantic encoding of ground types use existential quantification in the
mechanisation (e.g. `λ w. ∃ (x:Z), w = int`, while the paper uses set
inclusion (e.g. `λ w. w ∈ Z`). The definitions are effectively identical.
Polymorphism in the paper is done over the type kinds (e.g. `∀ (X :k).A`),
where the mechanisation uses concrete types that are parametric on a kind
(e.g. `∀ (X : lty k Σ).A`). This is just syntactic sugar to be less explicit
in the paper.
## Examples
The parallel receive example in Section 4 can be found in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment