[
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: | Pierpaolo Bernardi <bernardp@c...> |
| Subject: | Re: memory problems |
On Thu, 22 Jun 2000, Michael Wall wrote: > let rec relax_neat (p, v, h, t, s, n, maxI) = Are you by chance using an Intel x86 processor? If so, this is a known problem. It depends from relax_neat having more parameters than the x86 registers available. If this is the problem, it is easily solvable in your case, because it is not necessary to pass down the parameters t, s, n and maxI (you may make them global wrt the recursive function). Hope this helps. Pierpaolo