You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following program seems to crash eval-pdcfa-gc (but not eval-pdcfa-widen-gc).
(define (fiblike N)
(parse
`((rec f (λ (x)
(if0 x
1
(+ (f (- x 1)) (f (- x 1))))))
,N)))
Evaluating this program with input 5 yields:
hash-ref: no value found for key
key: 'f
Interestingly the real fib function (where the second call is (- x 2)) does not crash eval-pdcfa-gc. So this must be due to some interaction between the cache and the GC.
The text was updated successfully, but these errors were encountered:
The following program seems to crash
eval-pdcfa-gc
(but noteval-pdcfa-widen-gc
).Evaluating this program with input
5
yields:Interestingly the real fib function (where the second call is
(- x 2)
) does not crasheval-pdcfa-gc
. So this must be due to some interaction between the cache and the GC.The text was updated successfully, but these errors were encountered: