GNU Guile 3.0
gnu.org
GNU Guile 3.0
1–10 of 64 posts
Re: GNU Guile 3.0
#2Previously I had been using macros to bolt-on support for definitions in expression context, but that was buggy at best. If you have time you should look at the algorithm behind this letrectification. The paper is called "Fixing letrec (Reloaded)" and can be found here: https://legacy.cs.indiana.edu/~dyb/pubs/letrec-reloaded.pdf
This means letrec is now just as fast as let, which means (define ...) at the top of functions now is as fast as (let ...). For small functions called often, that could add quite a bit of overhead.
Re: GNU Guile 3.0
#3This is fantastic news. Speedups across the board and lots of small goodies everywhere! Previously I had been using macros to bolt-on support for definitions in expression context, but that was buggy at best. If you have time you should look at the algorithm behind this letrectification. The paper is called "Fixing letrec (Reloaded)" and can be found here: https://legacy.cs.indiana.edu/~dyb/pubs/letrec-reloaded.pdf T…
Re: GNU Guile 3.0
#4Re: GNU Guile 3.0
#5Re: GNU Guile 3.0
#6Isn't Guile VM the VM behind Racket?
Re: GNU Guile 3.0
#7Isn't Guile VM the VM behind Racket?
Re: GNU Guile 3.0
#8Re: GNU Guile 3.0
#9This is fantastic news. Speedups across the board and lots of small goodies everywhere! Previously I had been using macros to bolt-on support for definitions in expression context, but that was buggy at best. If you have time you should look at the algorithm behind this letrectification. The paper is called "Fixing letrec (Reloaded)" and can be found here: https://legacy.cs.indiana.edu/~dyb/pubs/letrec-reloaded.pdf T…
this paper seems fantastic