
3 Apr
2007
3 Apr
'07
7:43 a.m.
Anthony Chaumas-Pellet
From: Ross Paterson
You show a bias towards tail recursion. It would be neater (and lazier) to return the executed ones incrementally.
Why is tail recursion a bad thing for a finite function?
Tail recursion tends to create space-leaks, which in turn hurt time performance. Regards, Malcolm