caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* A strange typing error with polymorphic variants
@ 2009-10-27 10:28 Marc de Falco
  2009-10-27 18:24 ` [Caml-list] " Jake Donham
  0 siblings, 1 reply; 4+ messages in thread
From: Marc de Falco @ 2009-10-27 10:28 UTC (permalink / raw)
  To: caml-list

[-- Attachment #1: Type: text/plain, Size: 829 bytes --]

Hi, I've come across a very strange error, and I'm not sure if it is
a bug or a feature.

The following code :
type 'a p = R of 'a t | E of float
    and 'a t = { mutable p : 'a p; c : 'a }
let f =
    let x = sqrt(2.0) in
    fun () -> { c = `A; p = E 0.0 }

generates the error :
  The type of this expression, unit -> _[> `A ] t,
  contains type variables that cannot be generalized

but if I change the x definition to "let x = 2.0 in" then it works.

Another solution is to add a dummy parameter "let f ?(dummy=())" this works
too.
When I say that it works, I mean that the resulting type of f is
 val f : unit -> [> `A ] t
I've seen that in the dev version of ocaml this error has been removed but
the type of f is still "val f : unit -> _[> `A] t" which is not the thing
that I want.

Is that an expected behavior ?

Marc

[-- Attachment #2: Type: text/html, Size: 1001 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] A strange typing error with polymorphic variants
  2009-10-27 10:28 A strange typing error with polymorphic variants Marc de Falco
@ 2009-10-27 18:24 ` Jake Donham
  2009-10-27 18:38   ` Vincent Aravantinos
  0 siblings, 1 reply; 4+ messages in thread
From: Jake Donham @ 2009-10-27 18:24 UTC (permalink / raw)
  To: Marc de Falco; +Cc: caml-list

On Tue, Oct 27, 2009 at 3:28 AM, Marc de Falco <marc@de-falco.fr> wrote:
> Hi, I've come across a very strange error, and I'm not sure if it is
> a bug or a feature.
>
> The following code :
> type 'a p = R of 'a t | E of float
>     and 'a t = { mutable p : 'a p; c : 'a }
> let f =
>     let x = sqrt(2.0) in
>     fun () -> { c = `A; p = E 0.0 }
>
> generates the error :
>   The type of this expression, unit -> _[> `A ] t,
>   contains type variables that cannot be generalized
>
> but if I change the x definition to "let x = 2.0 in" then it works.
>
> Another solution is to add a dummy parameter "let f ?(dummy=())" this works
> too.

I think this is just the value restriction. The type of f is
generalized only if the right hand side is a value (rather than an
expression needing some computation); in your examples the one that
fails is not a value, the others are. It looks like there is a
relaxation to allow let bindings which are themselves values.

Jake


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] A strange typing error with polymorphic variants
  2009-10-27 18:24 ` [Caml-list] " Jake Donham
@ 2009-10-27 18:38   ` Vincent Aravantinos
  2009-10-27 19:02     ` Vincent Aravantinos
  0 siblings, 1 reply; 4+ messages in thread
From: Vincent Aravantinos @ 2009-10-27 18:38 UTC (permalink / raw)
  To: Jake Donham; +Cc: Marc de Falco, caml-list


Le 27 oct. 09 à 19:24, Jake Donham a écrit :

> On Tue, Oct 27, 2009 at 3:28 AM, Marc de Falco <marc@de-falco.fr>  
> wrote:
>> The following code :
>> type 'a p = R of 'a t | E of float
>>     and 'a t = { mutable p : 'a p; c : 'a }
>> let f =
>>     let x = sqrt(2.0) in
>>     fun () -> { c = `A; p = E 0.0 }
>>
>> generates the error :
>>   The type of this expression, unit -> _[> `A ] t,
>>   contains type variables that cannot be generalized
>>
>> but if I change the x definition to "let x = 2.0 in" then it works.
>
> I think this is just the value restriction. The type of f is
> generalized only if the right hand side is a value (rather than an
> expression needing some computation); in your examples the one that
> fails is not a value, the others are. It looks like there is a
> relaxation to allow let bindings which are themselves values.

With the -dlambda option, the "sqrt(2.0)" version gives:
   (let
     (f/92
        (let (x/93 (caml_sqrt_float 2.0))
          (function param/94 (makemutable 0 [1: 0.0] 65a))))

whereas the "2.0" version gives:
   (let (f/96 (let (x/97 2.0) (function param/98 (makemutable 0 [1:  
0.0] 65a))))

i.e. this last version is inlined.

I thought the yping was done before (??)

V.







^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] A strange typing error with polymorphic variants
  2009-10-27 18:38   ` Vincent Aravantinos
@ 2009-10-27 19:02     ` Vincent Aravantinos
  0 siblings, 0 replies; 4+ messages in thread
From: Vincent Aravantinos @ 2009-10-27 19:02 UTC (permalink / raw)
  To: Jake Donham, Marc de Falco, Gurus Ocaml

Oops, I pushed "send" button too early.

Le 27 oct. 09 à 19:38, Vincent Aravantinos a écrit :

> Le 27 oct. 09 à 19:24, Jake Donham a écrit :
>
>> On Tue, Oct 27, 2009 at 3:28 AM, Marc de Falco <marc@de-falco.fr>  
>> wrote:
>>> The following code :
>>> type 'a p = R of 'a t | E of float
>>>    and 'a t = { mutable p : 'a p; c : 'a }
>>> let f =
>>>    let x = sqrt(2.0) in
>>>    fun () -> { c = `A; p = E 0.0 }
>>>
>>> generates the error :
>>>  The type of this expression, unit -> _[> `A ] t,
>>>  contains type variables that cannot be generalized
>>>
>>> but if I change the x definition to "let x = 2.0 in" then it works.
>>
>> I think this is just the value restriction. The type of f is
>> generalized only if the right hand side is a value (rather than an
>> expression needing some computation); in your examples the one that
>> fails is not a value, the others are. It looks like there is a
>> relaxation to allow let bindings which are themselves values.
>
> With the -dlambda option, the "sqrt(2.0)" version gives:
>  (let
>    (f/92
>       (let (x/93 (caml_sqrt_float 2.0))
>         (function param/94 (makemutable 0 [1: 0.0] 65a))))
>
> whereas the "2.0" version gives:
>  (let (f/96 (let (x/97 2.0) (function param/98 (makemutable 0 [1:  
> 0.0] 65a))))
>
> i.e. this last version is inlined.

Do you think this can give a hint?

V.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-10-27 19:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-27 10:28 A strange typing error with polymorphic variants Marc de Falco
2009-10-27 18:24 ` [Caml-list] " Jake Donham
2009-10-27 18:38   ` Vincent Aravantinos
2009-10-27 19:02     ` Vincent Aravantinos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).