I'm trying to understand the order of evaluation when using Continuation-passing style in F#. Take this function for example.
let rec CPSfunc n k c =
if k = 0 then c 1
else if k > 0 then CPSfunc n (k-1) (fun res -> c(2*res+k))
When running it with the arguments CPSfunc 4 3 id
it evaluates to 19
, but when I try to evaluate it by hand, I get different results, based on evaluating forward or backwards first.
CPSfunc 4 3 (fun res -> res)
CPSfunc 4 2 (fun res -> fun 2*res+3 -> res)
CPSfunc 4 1 (fun res -> fun 2*res+2 -> fun 2*res+3 -> res)
// Evaluating backwards
fun res -> fun 2*res+2 -> fun 2*res+3 -> 1
fun res -> fun 2*res+2 -> 2*1+3
fun res -> 2*5+2
// Evaluating forward
fun 1 -> fun 2*res+2 -> fun 2*res+3 -> res
fun 2*1+2 -> fun 2*res+3 -> res
fun 2*4+3 -> res
4
How do I properly calculate the correct output?
To see that 19 is the correct result, I think it's easiest to start with
k = 0
and increment. Each result is simply twice the previous result, plusk
. (Note thatn
is not used.) So we have:Converting that simple logic into continuations gets complicated, though. Here's what the expansion looks like in F# for
CPSfunc 4 3 id
:P.S. To make
c
have the desiredint -> int
signature, you need to defineCPSfunc
slightly differently, so that's what I assume you've actually done: