Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
286 views

What are some good ways of implementing tail call elimination?

I've written a small Scheme interpreter in an unholy mix of C/C++, but I have yet to implement proper tail calls. I am aware of the classic Cheney on the MTA algorithm, but are there other nice ways ...
9
votes
1answer
354 views

MonoDevelop settings to fix “ran out of trampolines type 2” error

we are developing an iOS app. When we tested the app on PC, everything works well but when we ran it on a iPad/iPhone4 we frequently receive the "Ran out of Trampolines type 2" error message and the ...
9
votes
1answer
357 views

How to use TailCalls?

If I understand correctly, scala.util.control.TailCalls can be used to avoid stack overflows for non-tail-recursive functions by using a trampoline. The example given in the API is straightforward: ...
4
votes
3answers
340 views

What is the standard way to optimise mutual recursion in F#/Scala?

These languages do not support mutually recursive functions optimization 'natively', so I guess it must be trampoline or.. heh.. rewriting as a loop) Do I miss something? UPDATE: It seems that I did ...
2
votes
0answers
59 views

Reduce the amount of trampolines type 2 used

we are developing a iOS app using Unity3D and we have run into the "Ran out of trampolines type 2 error" all the time. Since Unity doesn't allow use to adjust the trampoline limit, so we have to ...
1
vote
1answer
311 views

Continuation passing style vs aggressively trimmed call stack?

I'm considering something like CPS for use in an interpreter for an actor based language. The function arguments are passed in an array of variants, and the continuation returned in the same array, ...