From: Diego Olivier Fernandez Pons <Diego.FERNANDEZ_PONS@etu.upmc.fr>
To: caml-list@inria.fr
Subject: [Caml-list] try ... with and stack overflow
Date: Wed, 19 Nov 2003 17:14:18 +0100 (NFT) [thread overview]
Message-ID: <Pine.A41.4.44.0311191455180.1237114-100000@ibm1.cicrp.jussieu.fr> (raw)
Bonjour,
I cannot figure what is puzzling the Caml compiler in some code I
wrote. It seems to be related to the try ... with construction against
tail-recursive optimization. Or am I doing a semantical mistake (that
is to say that I am believing the two codes to be equivalent when they
are not) ?
Some explanations : I first wrote an optimized search procedure (for a
branch and bound) and then wanted to compare it against the naive
version.
It works in the following way :
- goes down the tree by the left branch until reaches a leaf
- if the leaf is a solution, all the inexplorated branches are put in
closures and added to the 'continuation queue'
- if the leaf fails, an exception is raised and the deepest
unexplorated right branch is taken instead (try ... left_branch ...
with Failed -> ... right_branch ...)
exception Failed
type location = Left | Right
(* Optimized depth-first search *)
type 'a goal = Goal of ('a goal list -> 'a * 'a goal list)
let rec solve = function
| [] -> []
| Goal g :: tail ->
try
let (result, continuations) = g tail in
result :: solve continuations
with Failed -> solve tail
let rec dfs continuations = fun f data level ->
match level with
| 0 -> (f data, continuations)
| n ->
try
let
right = Goal (fun c -> dfs c f (Right :: data) (n - 1))
in
dfs (right :: continuations) f (Left :: data) (n - 1)
with Failed -> dfs continuations f (Right :: data) (n - 1)
let make_dfs = fun f n -> Goal (function c -> dfs c f [] n)
The naive version works in the same way but closures are
systematically constructed for both left and right branches.
(* Simple depth-first search *)
type 'a simpleGoal =
| Result of 'a
| Closure of ('a simpleGoal list -> 'a simpleGoal list)
let rec simple_solve = function
| [] -> []
| Result x :: tail -> x :: simple_solve tail
| Closure f :: tail ->
try
simple_solve (f tail)
with Failed -> simple_solve tail
let rec simple_dfs continuations = fun f data level ->
match level with
| 0 -> Result (f data) :: continuations
| n ->
let
left = Closure (fun c -> simple_dfs c f (Left :: data) (n - 1)) and
right = Closure (fun c -> simple_dfs c f (Right :: data) (n - 1))
in
left :: right :: continuations
let make_simple_dfs = fun f n ->
Closure (function c -> simple_dfs c f [] n)
Both seem to be working well
let rec print_location = function
| [] -> ()
| Left :: tail -> print_location tail ; print_string "Left "
| Right :: tail -> print_location tail ; print_string "Right "
let all_fail_trace = function location ->
print_location location ;
print_newline();
raise Failed
# solve [make_dfs all_fail_trace 2];;
Left Left
Left Right
Right Left
Right Right
- : '_a list = []
# simple_solve [make_simple_dfs all_fail_trace 2];;
Left Left
Left Right
Right Left
Right Right
- : '_a list = []
But the naive version seems to have a tail-recursion problem
# solve [make_dfs (fun loc -> raise Failed) 15];;
- : '_a list = []
# simple_solve [make_simple_dfs (fun loc -> raise Failed) 15];;
Stack overflow during evaluation (looping recursion?).
Then I changed the following code
let rec simple_solve = function
| [] -> []
| Result x :: tail -> x :: simple_solve tail
| Closure f :: tail ->
try
simple_solve (f tail)
with Failed -> simple_solve tail
by
| Closure f :: tail ->
simple_solve (try
f tail
with Failed -> tail)
and this time it worked
# solve [make_dfs (fun loc -> raise Failed) 15];;
- : '_a list = []
# simple_solve [make_simple_dfs (fun loc -> raise Failed) 15];;
- : '_a list = []
Diego Olivier
-------------------
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
next reply other threads:[~2003-11-19 16:15 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-11-19 16:14 Diego Olivier Fernandez Pons [this message]
2003-11-19 17:45 ` Brian Hurt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.A41.4.44.0311191455180.1237114-100000@ibm1.cicrp.jussieu.fr \
--to=diego.fernandez_pons@etu.upmc.fr \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox