6 ms·
Super cool, thanks for the pointer! I'll note, though, that one of the main value adds of (this) TC is that it is also intensional. See website for some elabor
by olydis 2y ago
Super cool, thanks for the pointer! I'll note, though, that one of the main value adds of (this) TC is that it is also intensional.
See website for some elaboration and examples, I'd particularly recommend looking at https://treecalcul.us/live/?example=demo-fusion https://treecalcul.us/live/?example=demo-fusion which demos a little stream fusion optimizer, entirely from scratch, including small test.
- js8 2y agoOh, OK! I think it would be interesting to know to which universal combinator (or lambda expression) is the 't' related to.
- chriswarbo 2y agoReduction rules (1) and (2) correspond to those of K and S, respectively. Reduction rule (3) corresponds to the elimination form for a Scott-encoding of a datatype like `X = Leaf | Stem X | Fork X X`. The cases of rule (3) are essentially parsing the argument into one of these three forms, and dispatching on the result.