I'm trying to understand delimited continuations, and I was reading this article:
http://community.schemewiki.org/?composable-continuations-tutorial
And I found this reset/shift transformation
(reset (...A... (shift V E) ...B...))
; -->
(let ((V (lambda (x) (...A... x ...B...))))
E)
For example, I tried the transformation on this expression (I think append-map is from Racket)
(reset (list (
(lambda (x) (* x x)) (shift k (append-map k '(1 2))) )))
and got this
(append-map
(lambda (y) (list ((lambda (x) (* x x)) y))) '(1 2))
with the same result '(1 4)
I was wondering if the same kind of transformation (that will eliminate the reset/shift), could be applied to an expression like this:
(reset (list (+
(shift k (append-map k '(1 2)))
(shift k (append-map k '(3 4))) )))
and how would the result look like (it evaluates to '(4 5 5 6)
).
Take a look at the footnote on that page:
So:
is transformed to:
And
is in turn transformed to:
By using the second rule to remove
reset
, we have:as the final result.