From: Diego Olivier FERNANDEZ PONS <diego.fernandez_pons@etu.upmc.fr>
To: caml-list@inria.fr
Subject: More problems with memoization
Date: Sat, 30 Sep 2006 20:01:25 +0200 [thread overview]
Message-ID: <20060930200125.bjpzgnh7kkkogkgk@webmail.etu.upmc.fr> (raw)
Bonjour,
I wrote the following (classical) memoized code for the fibonacci
function and I have been unsuccessfully trying to generalize it with a
higher order function.
let rec fib = function
| 0 -> 0
| 1 -> 1
| n -> fib_mem (n - 1) + fib_mem (n - 2)
and fib_mem =
let table = ref [] in
function n ->
try
List.assoc n !table
with Not_found ->
let f_n = fib n in
table := (n, f_n) :: !table;
f_n
# val fib : int -> int = <fun>
# val fib_mem : int -> int = <fun>
It works: fib 35 answers instantaneously.
Now I want to achieve the same result with a higher order function
[make_memo] and apply it to fib
let make_mem = function f ->
let table = ref [] in
function n ->
try
List.assoc n !table
with Not_found ->
let f_n = f n in
table := (n, f_n) :: !table;
f_n
#val make_mem : ('a -> 'b) -> 'a -> 'b
Very well. Notice that it has one less parameter than the code posted
by Andrej Bauer which has type memo_rec : (('a -> 'b) -> 'a -> 'b) ->
'a -> 'b. The only difference is the line
let f_n = f n in ...
with respect to
let f_n = f g n in ... where g is the anonymous function itself
in the same way Bauer's [fib_memo] uses an extra parameter [self]
let fib_memo =
let rec fib self = function
| 0 -> 1
| 1 -> 1
| n -> self (n - 1) + self (n - 2)
in
memo_rec fib
Now I try to apply make_mem to but it does not work
let rec fib = function
| 0 -> 0
| 1 -> 1
| n -> fib_mem (n - 1) + fib_mem (n - 2)
and fib_mem = make_mem fib
# This kind of expression is not allowed as right-hand side of `let rec'
Ok... usually one only need to expand to avoid the problem
let rec fib = function
| 0 -> 0
| 1 -> 1
| n -> fib_mem (n - 1) + fib_mem (n - 2)
and fib_mem = function n ->
let f = make_mem fib in
f n
# val fib : int -> int = <fun>
# val fib_mem : int -> int = <fun>
But know fib 35 takes several minutes to be computed !
I believe I understand why: I am computing a different fib_mem for
each value of n and applying it just after, while I wanted a single
fib_mem to be used for all computations. In the process, the
tabulation vanishes.
The only work around I found is to lift the table argument in [make_mem]
let make_mem = fun table f ->
function n ->
try
List.assoc n !table
with Not_found ->
let f_n = f n in
table := (n, f_n) :: !table;
f_n
# val make_mem : ('a * 'b) list ref -> ('a -> 'b) -> 'a -> 'b = <fun>
And build fib in the following way
let fib_mem = function n ->
let table = ref [] and
fib = function
| 0 -> 0
| 1 -> 1
| n -> fib_mem (n - 1) + fib_mem (n - 2)
in make_mem table fib n
# fib_mem 35: instantaneous
The problem is that the memoization is much more intrusive, which is
what I was trying to avoid.
Diego Olivier
next reply other threads:[~2006-09-30 18:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-30 18:01 Diego Olivier FERNANDEZ PONS [this message]
2006-09-30 19:19 ` [Caml-list] " Tom
2006-09-30 19:26 ` Tom
2006-10-01 0:23 ` Jon Harrop
2006-10-01 0:51 ` Martin Jambon
2006-10-02 15:29 ` Diego Olivier FERNANDEZ PONS
2006-10-02 23:00 ` Andrej Bauer
2006-10-02 23:04 ` Andrej Bauer
2006-10-03 0:50 ` skaller
2006-10-02 23:37 ` Don Syme
2006-10-03 5:06 oleg
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=20060930200125.bjpzgnh7kkkogkgk@webmail.etu.upmc.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