caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: skaller <skaller@users.sourceforge.net>
To: Jim Farrand <jim@farrand.net>
Cc: caml-list <caml-list@inria.fr>
Subject: Re: [Caml-list] Type indexed types?
Date: 26 Jan 2005 04:01:13 +1100	[thread overview]
Message-ID: <1106672472.28636.20.camel@pelican.wigram> (raw)
In-Reply-To: <20050125122849.GB15086@draco.xyxyx.org>

On Tue, 2005-01-25 at 23:28, Jim Farrand wrote:
> Hi,
> 
> This is what I need to do:
> 
> Given a type, u, and a collection of types, ts, find a type t such that:
>   * t is a member of ts
>   * t can be unified with u
>   * There is no type v in ts, which unifies with u and is more general
>     than t.
> 
> (In other words, find the most specific type in ts that is still equal
> to or a generalisation of u.)

This is the overload resolution problem?
Shouldn't that last condition be reversed?

You're looking for the most specialised, not most general
type that matches u.

> For example:
> 
> ts = list int, int, list 'a, 'a
> 
> For u = list int, the result would be list int.  For u = list string,
> the result would be list 'a, and for u = string the result would be 'a.
> 
> Note that I already have a function which can compute if type a is a
> specialisation of type b.
> 
> I think that in theory, I could do a brute force approach:
>   * Grab all types in ts that are generalisations of u.
>   * Order the results according to how specific they are.
>   * Arbitrarily choose one of the most specific.
> 
> But there must be a smarter way!  

Not really. Here is what Felix does: first, find all the
matches. Now we need the most specialised. My notes say:

  (* start with an empty list, and fold one result
  at a time into it, as follows: if one element
  of the list is greater (more general) than the candidate,
  then add the candidate to the list and remove all
  element greater than the candidate,

  otherwise, if one element of the list is less then
  the candidate, keep the list and discard the candidate.

  The list starts off empty, so that all elements in
  it are vacuously incomparable. It follows either
  the candidate is not less than all the list,
  or less than all the list: that is, there cannot
  be two element a,b such that a < c < b, since by
  transitivity a < c would follow, contradicting
  the assumption the list contains no ordered pairs.

  If in case 1, all the greater element are removed and c added,
  all the elements must be less or not comparable to c,
  thus the list remains without comparable pairs,
  otherwise in case 2, the list is retained and c discarded
  and so trivially remains unordered.
  *)


So basically, you keep a list of incomparable types,
and fold one of the candidates into it at a time,
retaining the invariant. If the candidate compares
with any element in the list, you either chuck out
the candidate because it is too general (the list
remains the same), or you chuck out all the elements
in the list that it is comparable with, and then add it to the list 
(so the list ends up with all incomparable elements again).

Here's my actual algorithm, cleaned up a bit.
As far as I know this is the best possible
algorithm.

  let candidates = fold_left
  (fun oc r ->
     match r with Unique (j,c,_,_) -> 
     let rec aux lhs rhs =
       match rhs with
       | [] -> 
         r::lhs (* return all non-greater elements plus candidate *)
       | (Unique(i,typ,mgu,ts) as x)::t 
       ->
         begin match compare_sigs syms.dfns typ c with
         | `Less -> 
           lhs @ rhs (* keep whole list, discard c *) 
         | `Equal -> 
             ERROR "[resolve_overload] Ambiguous call"
         | `Greater -> 
           aux lhs t (* discard greater element *)
         | `Incomparable -> 
           aux (x::lhs) t (* keep element *)
         end
       | Fail::_ -> assert false
     in aux [] oc
     | Fail -> assert false
  )
  []
  candidates in
  match candidates with
  | [Unique (i,t,mgu,ts)] -> 
    Some (i,t,mgu,ts)

  | [] -> None
  | _ -> 
   ERROR "More than one match"

-- 
John Skaller, mailto:skaller@users.sf.net
voice: 061-2-9660-0850, 
snail: PO BOX 401 Glebe NSW 2037 Australia
Checkout the Felix programming language http://felix.sf.net




  reply	other threads:[~2005-01-25 17:01 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-01-25 12:28 Jim Farrand
2005-01-25 17:01 ` skaller [this message]
2005-01-25 17:24   ` [Caml-list] " skaller
2005-01-25 17:49     ` skaller
2005-01-25 18:36       ` skaller
2005-01-25 18:37 ` brogoff

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=1106672472.28636.20.camel@pelican.wigram \
    --to=skaller@users.sourceforge.net \
    --cc=caml-list@inria.fr \
    --cc=jim@farrand.net \
    /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).