Re: simplex.scm fails after recent changes in master

2009-09-16 Thread Andy Wingo
Hi Juhani, On Sat 15 Aug 2009 13:54, Juhani Viheräkoski writes: > [simplex] now seems to run forever when compiled but works with the > interpreter. It used to work when I last tried, that was maybe a week > ago. This was fixed in 7f7b85cbf68a8b83e1ad7bc78379cf2764fc9a1b. Thanks for the report!

simplex.scm fails after recent changes in master

2009-08-15 Thread Juhani Viheräkoski
Hi, This testcase now seems to run forever when compiled but works with the interpreter. It used to work when I last tried, that was maybe a week ago. -- Juhani(define (run-bench name count ok? run) (let loop ((i count) (result '(undefined))) (if (< 0 i) (loop (- i 1) (run))