* forbidden construct as right hand side of "let rec"
@ 2009-10-22 22:22 Mathias Kende
2009-10-22 22:34 ` [Caml-list] " Stéphane Glondu
2009-10-28 16:52 ` Xavier Leroy
0 siblings, 2 replies; 10+ messages in thread
From: Mathias Kende @ 2009-10-22 22:22 UTC (permalink / raw)
To: caml-list
Hello list,
I need to write something like this :
let f f i = if i = 0 then 1 else i * f (i - 1)
let rec g = f g
Of course the compiler won't let me write it (even if the OCaml type
system is happy):
"This kind of expression is not allowed as right-hand side of `let rec'"
But as the function parameter of function f is used only for a recursive
call I believe that the function I try the define is at least "morally"
correct.
Is there a way to express this sort of construction in OCaml ? My aim is
to be able to have some things equivalent to:
let rec g = f g
and
let rec h = t (f h)
where t is some transformation over the function (conserving its type),
and still writing the code for f only once.
Regards,
Mathias
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-22 22:22 forbidden construct as right hand side of "let rec" Mathias Kende
@ 2009-10-22 22:34 ` Stéphane Glondu
2009-10-22 23:10 ` Lukasz Stafiniak
2009-10-25 14:11 ` Mathias Kende
2009-10-28 16:52 ` Xavier Leroy
1 sibling, 2 replies; 10+ messages in thread
From: Stéphane Glondu @ 2009-10-22 22:34 UTC (permalink / raw)
To: mathias; +Cc: caml-list
Mathias Kende a écrit :
> let rec g = f g
What about:
let rec g x = f g x
--
Stéphane
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-22 22:34 ` [Caml-list] " Stéphane Glondu
@ 2009-10-22 23:10 ` Lukasz Stafiniak
2009-10-23 15:35 ` Damien Guichard
2009-10-25 14:11 ` Mathias Kende
1 sibling, 1 reply; 10+ messages in thread
From: Lukasz Stafiniak @ 2009-10-22 23:10 UTC (permalink / raw)
To: caml-list
While we are at it, what is the best way to convert a "straight" list
into a cyclic list?
i.e. convert
let l = a::b::[]
into
let rec l = a::b::l
(for arbitrary length lists). (The answer I recall from the archives
was using Obj.magic to mutate the [] in the original list).
On Fri, Oct 23, 2009 at 12:34 AM, Stéphane Glondu <steph@glondu.net> wrote:
> Mathias Kende a écrit :
>> let rec g = f g
>
> What about:
>
> let rec g x = f g x
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-22 23:10 ` Lukasz Stafiniak
@ 2009-10-23 15:35 ` Damien Guichard
2009-10-23 16:14 ` Marc de Falco
0 siblings, 1 reply; 10+ messages in thread
From: Damien Guichard @ 2009-10-23 15:35 UTC (permalink / raw)
To: caml-list
[-- Attachment #1: Type: text/plain, Size: 1036 bytes --]
let list_cycle2 a b =
let rec loop = a::b::loop
in loop
- damien
En réponse au message
de : Lukasz Stafiniak
du : 2009-10-23 01:10:37
À : caml-list
CC :
Sujet : Re: [Caml-list] forbidden construct as right hand side of "let rec"
While we are at it, what is the best way to convert a "straight" list
into a cyclic list?
i.e. convert
let l = a::b::[]
into
let rec l = a::b::l
(for arbitrary length lists). (The answer I recall from the archives
was using Obj.magic to mutate the [] in the original list).
On Fri, Oct 23, 2009 at 12:34 AM, Stéphane Glondu <steph@glondu.net > wrote:
> Mathias Kende a écrit :
> > let rec g = f g
>
> What about:
>
> let rec g x = f g x
_______________________________________________
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs
[-- Attachment #2: Type: text/html, Size: 4853 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-23 15:35 ` Damien Guichard
@ 2009-10-23 16:14 ` Marc de Falco
2009-10-23 17:51 ` blue storm
0 siblings, 1 reply; 10+ messages in thread
From: Marc de Falco @ 2009-10-23 16:14 UTC (permalink / raw)
To: caml-list
The issue is that this definition can't be generalized to lists of
arbitrary size.
The code
let list_cycle l =
let rec loop = l @ loop in
loop
will not be accepted.
I don't know the exact rule, but I guess that on the right-hand side
of a
let rec defining a ground value named foo you can only write a term
which
evaluates to a finite ground term on the currently defined variables +
foo.
That is to say something that evaluates to a finite tree of
constructors with
constants or defined variables as leaves.
Maybe someone more knowledgeable could state the exact rule.
- marc
P.S. : the code using Obj is far from a solution as it modifies the
existing structure
of the list to add cycling and thus, breaks persistency.
Le 23 oct. 2009 à 17:35, Damien Guichard a écrit :
>
> let list_cycle2 a b =
> let rec loop = a::b::loop
> in loop
>
>
> - damien
>
> En réponse au message
> de : Lukasz Stafiniak
> du : 2009-10-23 01:10:37
> À : caml-list
> CC :
> Sujet : Re: [Caml-list] forbidden construct as right hand side of
> "let rec"
>
> While we are at it, what is the best way to convert a "straight" list
> into a cyclic list?
>
> i.e. convert
>
> let l = a::b::[]
>
> into
>
> let rec l = a::b::l
>
> (for arbitrary length lists). (The answer I recall from the archives
> was using Obj.magic to mutate the [] in the original list).
>
> On Fri, Oct 23, 2009 at 12:34 AM, Stéphane Glondu <steph@glondu.net
> > wrote:
> > Mathias Kende a écrit :
> > > let rec g = f g
> >
> > What about:
> >
> > let rec g x = f g x
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-22 22:34 ` [Caml-list] " Stéphane Glondu
2009-10-22 23:10 ` Lukasz Stafiniak
@ 2009-10-25 14:11 ` Mathias Kende
2009-10-25 15:03 ` Stéphane Glondu
1 sibling, 1 reply; 10+ messages in thread
From: Mathias Kende @ 2009-10-25 14:11 UTC (permalink / raw)
To: Stéphane Glondu; +Cc: caml-list
On Fri, 23 Oct 2009 00:34:29 +0200, Stéphane Glondu <steph@glondu.net>
wrote:
> Mathias Kende a écrit :
>> let rec g = f g
>
> What about:
>
> let rec g x = f g x
This will compile, but then I also want to write :
let rec h = t (f h)
(with t : ('a -> 'b) -> 'a -> 'b) but here, I can't afford to use
let rec h x = t (f h) x
because t as some side effects and I need it to be evaluated only once.
Any idea on how to do that ?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-25 14:11 ` Mathias Kende
@ 2009-10-25 15:03 ` Stéphane Glondu
0 siblings, 0 replies; 10+ messages in thread
From: Stéphane Glondu @ 2009-10-25 15:03 UTC (permalink / raw)
To: Mathias Kende; +Cc: caml-list
Mathias Kende a écrit :
> [...] I also want to write :
> let rec h = t (f h)
> (with t : ('a -> 'b) -> 'a -> 'b) but here, I can't afford to use
> let rec h x = t (f h) x
> because t as some side effects and I need it to be evaluated only once.
Then what about:
let h =
let tmp = ref (fun x -> assert false) in
let res x = !tmp x in
tmp :=
(fun x ->
let y = t (f res) in
tmp := y;
y x);
res
Intuitively, the "tmp" reference caches the call to "t (f h)", but this
is otherwise the same technique as I gave earlier.
Cheers,
--
Stéphane
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-22 22:22 forbidden construct as right hand side of "let rec" Mathias Kende
2009-10-22 22:34 ` [Caml-list] " Stéphane Glondu
@ 2009-10-28 16:52 ` Xavier Leroy
2009-10-28 22:44 ` Lukasz Stafiniak
1 sibling, 1 reply; 10+ messages in thread
From: Xavier Leroy @ 2009-10-28 16:52 UTC (permalink / raw)
To: mathias; +Cc: caml-list
Mathias Kende wrote:
> I need to write something like this :
>
> let f f i = if i = 0 then 1 else i * f (i - 1)
> let rec g = f g
>
> Of course the compiler won't let me write it (even if the OCaml type
> system is happy):
> "This kind of expression is not allowed as right-hand side of `let rec'"
In general, the best thing to do in this case is to switch to lazy
evaluation:
# let f f i = if i = 0 then 1 else i * Lazy.force f (i-1);;
val f : (int -> int) Lazy.t -> int -> int = <fun>
# let rec g' = lazy (f g');;
val g' : (int -> int) Lazy.t = <lazy>
# let g = Lazy.force g';;
val g : int -> int = <fun>
# g 10;;
- : int = 3628800
Lukasz Stafiniak wrote:
> While we are at it, what is the best way to convert a "straight" list
> into a cyclic list?
>
> i.e. convert
>
> let l = a::b::[]
>
> into
>
> let rec l = a::b::l
>
> (for arbitrary length lists). (The answer I recall from the archives
> was using Obj.magic to mutate the [] in the original list).
Obj.magic is not part of the OCaml language :-)
Again, you can do that just fine using lazy lists instead of lists:
type 'a lazylist = 'a lazylist_content Lazy.t
and 'a lazylist_content = Nil | Cons of 'a * 'a lazylist
Hope this helps,
- Xavier Leroy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Caml-list] forbidden construct as right hand side of "let rec"
2009-10-28 16:52 ` Xavier Leroy
@ 2009-10-28 22:44 ` Lukasz Stafiniak
0 siblings, 0 replies; 10+ messages in thread
From: Lukasz Stafiniak @ 2009-10-28 22:44 UTC (permalink / raw)
To: caml-list
On Wed, Oct 28, 2009 at 5:52 PM, Xavier Leroy <Xavier.Leroy@inria.fr> wrote:
> Lukasz Stafiniak wrote:
>
>> While we are at it, what is the best way to convert a "straight" list
>> into a cyclic list?
>
> Again, you can do that just fine using lazy lists instead of lists:
>
> type 'a lazylist = 'a lazylist_content Lazy.t
> and 'a lazylist_content = Nil | Cons of 'a * 'a lazylist
>
> Hope this helps,
>
> - Xavier Leroy
>
Thank you, it makes sense!
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2009-10-28 22:45 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-22 22:22 forbidden construct as right hand side of "let rec" Mathias Kende
2009-10-22 22:34 ` [Caml-list] " Stéphane Glondu
2009-10-22 23:10 ` Lukasz Stafiniak
2009-10-23 15:35 ` Damien Guichard
2009-10-23 16:14 ` Marc de Falco
2009-10-23 17:51 ` blue storm
2009-10-25 14:11 ` Mathias Kende
2009-10-25 15:03 ` Stéphane Glondu
2009-10-28 16:52 ` Xavier Leroy
2009-10-28 22:44 ` Lukasz Stafiniak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox