From: Martin Berger <martinb@dcs.qmul.ac.uk>
To: The Caml Trade <caml-list@inria.fr>
Subject: [Caml-list] Y combinator and type-checking
Date: Fri, 02 Jul 2004 18:36:48 +0100 [thread overview]
Message-ID: <40E59D30.1080202@dcs.qmul.ac.uk> (raw)
i just noticed something confusing: consider an implementation of the
Y combinator (for a CBV language):
let rec y f = f (fun x -> (y f) x );;
let's see what ocaml says about this definition.
# let rec y f = f (fun x -> (y f) x );;
val y : (('a -> 'b) -> 'a -> 'b) -> 'a -> 'b = <fun>
now i annotate the definition above with the types just
inferred:
let rec y ( f : ( 'a -> 'b ) -> 'a -> 'b )
: ( ( 'a -> 'b ) -> 'a -> 'b ) -> 'a -> 'b
= f (fun x -> (y f) x );;
suddenly, ocaml complains:
#let rec y ( f : ( 'a -> 'b ) -> 'a -> 'b )
: ( ( 'a -> 'b ) -> 'a -> 'b ) -> 'a -> 'b
= f (fun x -> (y f) x );;
This expression has type 'a -> 'b -> 'c but is here used with
type (('a -> 'b -> 'c) -> 'a -> 'b -> 'c) -> 'a -> 'b -> 'c
why would annotating a program with seemingly correct types render
a program untypable? this is my main question.
here's a related observation: if we run the last program under "ocaml
-rectypes" instead of just "ocaml" we get
# let rec y ( f : ( 'a -> 'b ) -> 'a -> 'b )
: ( ( 'a -> 'b ) -> 'a -> 'b ) -> 'a -> 'b
= f (fun x -> (y f) x );;
val y :
(((('a -> ('a -> 'b as 'b)) -> 'a -> 'b as 'a) -> 'b) -> 'a
-> 'b) -> 'a -> 'b = <fun>
so now the typechecker gives a thumbs-up, but the inferred and annotated
types differ. why?
I hope this is not a well-known beginners issue!
martin
-------------------
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:[~2004-07-02 17:36 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-07-02 17:36 Martin Berger [this message]
2004-07-02 17:54 ` Brian Hurt
2004-07-06 23:24 ` [Caml-list] Why type infenere enter infinte loop here? Andy Yang
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=40E59D30.1080202@dcs.qmul.ac.uk \
--to=martinb@dcs.qmul.ac.uk \
--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