Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
6answers
5k views

What Is Tail Call Optimization?

Very simply, what is tail-call optimization? More specifically, Can anyone show some small code snippets where it could be applied, and where not, with an explanation of why?
24
votes
5answers
2k views

Why does the JVM still not support tail-call optimization?

Two years after does-the-jvm-prevent-tail-call-optimizations, there seems to be a prototype implementation and MLVM has listed the feature as "proto 80%" for some time now. Is there no active ...
22
votes
2answers
354 views

Is there a technical reason that C# does not issue the “tail.” CIL instruction? [closed]

Possible Duplicate: Why doesn't .net/C# eliminate tail recursion? Take the following C# code: using System; namespace TailTest { class MainClass { public static void ...
21
votes
4answers
4k views

Why is Clojure much faster than Scala on a recursive add function?

A friend gave me this code snippet in Closure (defn sum [coll acc] (if (empty? coll) acc (recur (rest coll) (+ (first coll) acc)))) (time (sum (range 1 9999999) 0)) and asked me how does it fare ...
17
votes
3answers
463 views

Why won't the Scala compiler apply tail call optimization unless a method is final?

for example, this: class C { @tailrec def fact(n: Int, result: Int): Int = if(n == 0) result else fact(n - 1, n * result) } results in "error: could not optimize @tailrec annotated ...
15
votes
3answers
556 views

Explain to me what the big deal with tail call optimization is and why Python needs it

So apparently, there's been a big brouhaha over whether or not Python needs tail call optimization. This came to a head when someone shipped Guido a copy of SICP because he didn't "get it." I'm in ...
13
votes
1answer
426 views

Tail Call Elimination in Clojure?

Can somebody rewrite this (plt) Scheme code into Clojure? (define (f n) (printf "(f ~a)~n" n) (g n)) (define (g n) (printf "(g ~a)~n" n) (h n)) (define (h n) (printf "(h ~a)~n" n) ...
12
votes
3answers
797 views

What is the Scala annotation to ensure a tail recursive function is optimized?

I think there is @tailrec annotation to ensure the compiler will optimize a tail recursive function. Do you just put it in front of the declaration? Does it also work if Scala is used in scripting ...
10
votes
1answer
448 views

Tail call optimization in Mathematica?

While formulating an answer to another SO question, I came across some strange behaviour regarding tail recursion in Mathematica. The Mathematica documentation hints that tail call optimization might ...
9
votes
3answers
287 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
676 views

How do I know if a function is tail recursive in F#

I wrote the follwing function: let str2lst str = let rec f s acc = match s with | "" -> acc | _ -> f (s.Substring 1) (s.[0]::acc) f str [] How can I know if the ...
9
votes
8answers
3k views

Difference between JVM implementations

Where do JVM Implementations differ (except licensing)? Does every JVM implement Type Erasure for the Generic handling? Where are the differences between: JRockit IBM JVM SUN JVM Open JDK Blackdown ...
8
votes
3answers
251 views

Is it possible to use continuations to make foldRight tail recursive?

The following blog article shows how in F# foldBack can be made tail recursive using continuation passing style. In Scala this would mean that: def foldBack[T,U](l: List[T], acc: U)(f: (T, U) => ...
8
votes
2answers
301 views

F# tail call optimization with 2 recursive calls?

As I was writing this function I knew that I wouldn't get tail call optimization. I still haven't come up with a good way of handling this and was hoping someone else might offer suggestions. I've ...
8
votes
2answers
756 views

What is tail-recursion elimination?

Steve Yegge mentioned it in a blog post and I have no idea what it means, could someone fill me in? Is it the same thing as tail call optimization?
7
votes
4answers
425 views

vs2010 c++ tail call optimization

Consider the following code: int fac_aux( int x, int res ) { if( x == 1 ) return res; else return fac_aux( x - 1, res * x ); } int fac( int x ) { return fac_aux( x, 1 ); } int main() { ...
6
votes
4answers
511 views

C tail call optimization

I often hear people say that C doesn't perform tail call elimination. Even though it's not guaranteed by the standard, isn't it performed in practice by any decent implementation anyhow? Assuming ...
5
votes
1answer
121 views

My scala code does not get TCO'ed though it passes @tailrec

I am looking into scala TCO and have written the following code import scala.annotation.tailrec final def tailReccursionEx(str:String):List[String]={ @tailrec def ...
5
votes
1answer
235 views

Does MATLAB perform tail call optimization?

I've recently learned Haskell, and am trying to carry the pure functional style over to my other code when possible. An important aspect of this is treating all variables as immutable, i.e. constants. ...
5
votes
4answers
178 views

I get a StackOverFlowException on this code because my JVM doesn't support tail call optimizaion, right?

I get a StackOverflowException on this Java method: private static final Integer[] populate(final Integer[] array, final int length, final int current) { if (current == length) { return ...
4
votes
4answers
180 views

Tail recursion issue

We were experimenting with parallel collections in Scala and wanted to check whether the result was ordered. For that, I wrote a small function on the REPL to do that check on the very large List we ...
4
votes
2answers
134 views

Does the python stack grow with an iterative process that is executed by a recursive procedure?

I know that Python doesn't support tail-call optimization. Does that mean a recursive procedure with an iterative process like the factorial I defined below would consume O(n) memory, or does the fact ...
4
votes
4answers
308 views

Should not a tail-recursive function also be faster?

I have the following Clojure code to calculate a number with a certain "factorable" property. (what exactly the code does is secondary). (defn factor-9 ([] (let [digits (take 9 (iterate #(inc ...
3
votes
3answers
120 views

Is there a workaround for “stack level too deep” errors in recursive routines?

Is there any workaround for Stack Overflow errors in recursive functions in Ruby? Say, for example, I have this block: def countUpTo(current, final) puts current return nil if current == ...
3
votes
2answers
111 views

is a recursive function in scheme always tail call optimized?

i've read something about tail call optimization in scheme. but i'm not quite sure, if i understand the concept of tail calls. if i have an code like this: (define (fac n) (if (= n 0) 1 ...
3
votes
5answers
344 views

Are programs in functional languages more likely to have stack overflows?

I am starting to learn ocaml, and am really appreciating the power of recursion in the language. However, one thing that I am worried about is stack overflows. If ocaml uses the stack for function ...
2
votes
0answers
49 views

Why PyPy 1.7 desn't implement “stackless” stack?

Default build of PyPy 1.7 with stackless included in, does not offer the ability to run with no recursion depth limit (in straight way). Why? Previus builds of PyPy with stackless support ...
2
votes
2answers
101 views

Looking for references describing tail recursion optimization through exceptions

I have implemented a small lisp interpretor (sapid lisp at google code) in python and sapid lisp itself. Perhaps its main characteristic is to implement tail and mutual recursion optimization through ...
2
votes
1answer
111 views

Tail recursion with Groovy

I coded 3 factorial algorithms: First, I expect to fail by Stack Overflow. No problem. Second, I try tail recusive call, convert previous algorithm from recursive to iterative. It doesn't work but I ...
2
votes
2answers
110 views

How can I get a stack trace with tail calls included in Ocaml?

The call stack in ocamldebug is the real call stack, so functions that have made a tail call don't show up in it. This is confusing. How can I get a backtrace that includes tail calls?
2
votes
1answer
86 views

Architecture that can optimize tail calls for C#

Reading a blog entry by Eric Lippert, I came across this snippet: ...you're going to either loop forever (if you're on an architecture that can optimize tail calls) or run out of stack and crash ...
2
votes
1answer
139 views

Is this the best way to utilise tail call recursion traversing a linked list?

Basically I am creating a base class that will be used for classes stored as a linked list, which are traversed and deleted as dictated by a virtual update() function which returns a bool. I am ...
2
votes
1answer
438 views

Does Java support tail recursion? [closed]

Possible Duplicate: Why does the JVM still not support tail-call optimization? I see so many different answers online, so I thought I'd ask the experts.
2
votes
1answer
236 views

how is C# tail recursion optimization possible when a stack trace is returned when an exception is raised

I'be seen a few questions regarding missing tail call optimization in C# supposedly making the language ill suited for recursive algorithm implementations. this, however,begs the question, how can we ...
2
votes
1answer
215 views

The Definitive Tail-Call Recursion Question

After participating in the debate in this fiascoquestion, I would like to posit the question before the entire community. In what scenarios will tail-call optimization be applied to .Net-based code? ...
2
votes
2answers
671 views

gcc -fPIC seems to muck with optimization flags

Following along from this question: how-do-i-check-if-gcc-is-performing-tail-recursion-optimization, I noticed that using gcc with -fPIC seems to destroy this optimization. I am creating a shared ...
2
votes
3answers
544 views

How is Tail Call Optimization implemented in DrScheme?

I've heard that trampolining is an ineffective way of implementing TCO. How does DrScheme (PLAI Scheme, technically) do it? Does it do it the 'right' way (that is, produce assembly code which directly ...
1
vote
1answer
75 views

Is it possible to tail call optimize a grouping function in f# using sequences?

Here is my attempt which is NOT tail call optimized because I need to dispose the enumerator: let Group func seed (items : seq<'t>) = let rec some (i : IEnumerator<'t>) state = seq ...
1
vote
1answer
219 views

Tail call optimization in last CLR

I've discovered (by accident) that the last CLR does the tail call optimization. I have tested it with a piece of code, but frankly it doesn't behave the way I expected. I thought the tail call ...
1
vote
1answer
184 views

GCC Tail Call Optimization for the Following Situation

Below is a snippet that gets programmatically generated for a toy programming language, actual code is different but following shows what it does when executed, class Base{ }; Base b; class ...
1
vote
2answers
124 views

Why isn't this F# inner function tail-recursive?

If I call this function with a very high initial currentReflection value I get a stack overflow exception, which indicates that the function is not tail-recursive (correct?). My understanding was that ...
1
vote
2answers
302 views

Is it possible to force tail call optimization on GCC/Clang?

I'm trying to write a program functional style with C as much as possible. I know fine compilers like GCC/Clang do tail call optimization silently, but it's not guaranteed. Is there any option to ...
1
vote
1answer
301 views

Optimizing tail-calls in C#

I've got a deeply recursive function that should in theory work well even with large inputs. The problem is at the time of writing I forgot that C# doesn't do tail-call optimization very well, if at ...
1
vote
3answers
702 views

Visual C++ Tail Call Optimization

According to answers to that question: Which, if any, C++ compilers do tail-recursion optimization? it seems, that compiler should do tail-recursion optimization. But I've tried proposed options and ...
1
vote
1answer
223 views

Does PL/SQL perform tail call optimization?

I'm fairly new to the language, and I was wondering if tail calls were optimized. In other language I could examinate the machine code or an intermediate representation and figure it for myself but I ...
1
vote
2answers
254 views

Does Xcode for the iPhone eliminate tail-call recursion?

Does Xcode support tail-call optimization on the iPhone?
1
vote
4answers
444 views

Why is Garbage Collection Required for Tail Call Optimization?

Why is garbage collection required for tail call optimization? Is it because if you allocate memory in a function which you then want to do a tail call on, there'd be no way to do the tail call and ...
0
votes
3answers
196 views

how to approach implementing TCO'ed recursion

I have been looking into recursion and TCO. It seems that TCO can make the code verbose and also impact the performance. e.g. I have implemented the code which takes in 7 digit phone number and gives ...
0
votes
3answers
115 views

How can i transform this scala function in order to be optimized

Code to determine the lat element of a list, using pattern matching: @tailrec def last_rec[A](list : List[A]) : A = { list match { case (x :: Nil) => x case (_ :: xs) => ...
0
votes
1answer
128 views

Why Lua doesn't support full continuation though it support tail-call-optimization? [closed]

Possible Duplicate: call/cc in Lua - Possible? As far as I know, full continuation (call/cc) can be implemented efficiently with only TCO (tail-call-optimization). Current Lua 5.1 & VM ...

1 2