Browse thread
[Caml-list] How to find out if a function is tail recursive?
- Richard Jones
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Richard Jones <rich@a...> |
| Subject: | [Caml-list] How to find out if a function is tail recursive? |
I was writing the section on tail recursion in the OCaml tutorial, and was surprised to find out that the range function (below) isn't tail recursive. Or at least it causes a stack overflow on a large-but-not-unreasonable input value. let rec range a b = if a > b then [] else a :: range (a+1) b ;; let list = range 1 1000000;; Printf.printf "length = %d\n" (List.length list);; Can you tell me why this function isn't tail recursive, and share any useful tips on how to tell whether a function is or is not tail recursive? Thanks, Rich. -- Richard Jones, Red Hat Inc. (London) and Merjis Ltd. http://www.merjis.com/ http://www.annexia.org/ Freshmeat projects: http://freshmeat.net/users/rwmj MONOLITH is an advanced framework for writing web applications in C, easier than using Perl & Java, much faster and smaller, reusable widget-based arch, database-backed, discussion, chat, calendaring: http://www.annexia.org/freeware/monolith/ ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners