caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Bruno Daniel <bruno.daniel@gmx.net>
To: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] Representation of different polymorphic variants guaranteed to be different?
Date: Wed, 8 Jul 2009 21:32:13 +0200	[thread overview]
Message-ID: <20090708193213.GD3432@colinux> (raw)
In-Reply-To: <20090708185415.GB11681@localhost>

Dear Eric Cooper,

thank you very much for your answer. I tried it out and I found that it really
works, even with the variants defined in different ml-files linked together:

--- module1.ml ---
let a1 = if !Sys.interactive then `a else `zyctRecABC;;
--- module2.ml ---
let a2 = `ABC;;

let _ = a2 = Module1.a1;;
------------------

or

--- module2.ml ---
let a2 = `ABC;;

let h1 = Hashtb.create 100;;

let _ =
  Hashtbl.replace h1 a2 0;
  Hashtbl.replace h1 Module1.a1 1;;
------------------

In both cases I get the following error message when compiling the second module:
"Error: Variant tags `ABC and `zyctRecABC have the same hash value.
Change one of them."

But it's clear from this discussion that I'll never be allowed to use
Obj.magic on variant types. The following goes through unchecked:

--- module2.ml ---
let a2 = `ABC;;

let h1 : (int, int) Hashtbl.t = Hashtbl.create 100;;

let _ =
  Hashtbl.replace h1 (Obj.magic a2) 0;
  Hashtbl.replace h1 (Obj.magic Module1.a1) 1;;
------------------

Best regards
  Bruno Daniel

Eric Cooper wrote:
> On Wed, Jul 08, 2009 at 08:35:27PM +0200, Bruno Daniel wrote:
>> How is it ensured that I get a <> b for a and b created as
>> polymorphic variants from two different identifiers? Will pattern
>> matching give wrong results if I accidentally choose two different
>> identifiers translated to the same internal representation?
> 
> See this thread:
>     http://caml.inria.fr/pub/ml-archives/caml-list/2005/03/544288096a47d82ec870d01c8396f5fe.fr.html 
> 
> Short answer: collisions could theoretically occur, but are detected
> at link time.
> 
> -- 
> Eric Cooper             e c c @ c m u . e d u
> 
> _______________________________________________
> 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


  parent reply	other threads:[~2009-07-08 19:33 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-08 18:35 Bruno Daniel
2009-07-08 18:54 ` [Caml-list] " Eric Cooper
2009-07-08 19:32   ` Elnatan Reisner
2009-07-08 19:32   ` Bruno Daniel [this message]
2009-07-08 19:36   ` Frédéric van der Plancke

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=20090708193213.GD3432@colinux \
    --to=bruno.daniel@gmx.net \
    --cc=caml-list@yquem.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;
as well as URLs for NNTP newsgroup(s).