[plt-scheme] Space/time behaviour of Lazy Scheme

From: Eli Barzilay (eli at barzilay.org)
Date: Tue Oct 16 14:31:28 EDT 2007

On Oct 16, Eli Barzilay wrote:
> [...]  I'll look into it.

OK, that's fixed.  If you want to patch it up to use it, look for this
line

                [(promise? p) (loop p)] ; hide sharing

in "collects/lazy/promise.ss", and change it to

                [(promise? p) (loop (p:ref p))] ; hide sharing

-- 
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
                  http://www.barzilay.org/                 Maze is Life!


Posted on the users mailing list.