-
While reading https://hbr.github.io/Lambda-Calculus/cc-tex/cc.pdf I found some typos:
Page 4: Carring out computations
Carrying
Page 7: based to some extend
extent
Page 6,9,...,105 wellfor…
tromp updated
4 months ago
-
I guess the text is formally correct (although it can be more precise) but the example is completely misleading: capture might happen if we do substitution under a lambda but in the example substituti…
yanok updated
9 years ago
-
functions (e.g., lambda abstractions as in the lambda calculus)
-
* http://dev.stephendiehl.com/fun/lambda_calculus.html#ski-combinators
* https://github.com/helvm/write-you-a-haskell/tree/master/chapter4/untyped
* https://github.com/helvm/combinator-calculus
…
-
If anyone has a suggestion for a better name (since Abstract Calculus seems to be impopular) please let me know. Symmetric Lambda Calculus (since it is isomorphic to Symmetric Interaction Combinators)…
-
This issue concerns `lambda_calculus.py`.
The Church numeral arithmetic tests helped spot a bug that the more basic tests missed.
It's easiest to demonstrate with an example. The Church numeral …
-
Why choose call-by-push-value as opposed to a fine-grained calculus (like Eff does)? In what sense is a lambda abstraction a computation?
-
**Second-order lambda calculus (System F)**: Soloviev should make F with subtyping a separate entry.
**Preferential Tableaux Calculi TP^T**
-
Lambda.**eq** is overly simplistic, since it does not take into account that simple substitution may capture free variables.
This can cause false-positives in equality checks:
```
>>> Lambda(x,x+x) …
-
Hello! Thanks for your work, I'm using this as a guide for some work I'm doing, with some changes to accomodate some quirks of my language that don't fit lambda calculus precisely, for instance, funct…