caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Forward references
@ 2002-10-04  8:46 Tom Hirschowitz
  2002-10-06 16:34 ` brogoff
  0 siblings, 1 reply; 3+ messages in thread
From: Tom Hirschowitz @ 2002-10-04  8:46 UTC (permalink / raw)
  To: caml-list



Hi Brian, 

in your example, the current structure of types would not allow
to express how Set.Make uses its arguments.
Nothing ensures you that the body of Set.Make does not make use 
of cmp.

It is in fact exactly the same problem for the right-hand sizes 
of let rec, as in

let rec f x y = compare (x, y) (y, x) 
and     u = A.g f 1 2 

One could imagine a type system telling you whether A.g inspects 
the value of its arguments or not (in fact Xavier and I did imagine 
such a type system, article is on our web pages).
But without this, A.g could apply f, which would make the computation 
go wrong.

This said, even in the context of a type system where those dependency
problems are solved, it is not trivial that types do not cause new
problems.  We don't think so but are not sure. I tried to formalize
this idea and implemented an early prototype type-checker for caml
with mixin modules, which used this idea. My conclusion was that the
theory was in to early stage for a prototype to be really significant.

 >     I'm curious as to whether types could also be forward declared, or deferred, 
 > as well, and if this forward ref machinery could deal with the problem of 
 > instantiating a functor which is in a recursive relationship with a type, as in  
 > the following faux-Caml
 > 
 > forward type composite = { data : string ; children : CompositeSet.t }
 > and cmp x y = Pervasives.compare x.data y.data  
 > and module CompositeSet = Set.Make(struct type t = composite let compare = cmp end)
 > 
 >     This is a lighter approach than the one involving MoscowML recursive 
 > modules, since there is no extra module wrapper, but can probably be transformed 
 > into the mosml style mechanically. Is there some showstopper that prevents this 
 > (admittedly half baked) approach from being feasible? 
 > 
 >     I'd really like to see some solution to the above mentioned problems in 
 > OCaml sooner rather than later.  
 > 
 > -- Brian
 > 
 > 
 > -------------------
 > 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
 > 
-------------------
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


^ permalink raw reply	[flat|nested] 3+ messages in thread
* [Caml-list] Forward references
@ 2002-10-03 23:58 brogoff
  0 siblings, 0 replies; 3+ messages in thread
From: brogoff @ 2002-10-03 23:58 UTC (permalink / raw)
  To: caml-list

Hi,
    I was browsing the mailing list archives when I reread the article 

	http://caml.inria.fr/archives/199902/msg00020.html

where it was mentioned that there was once some kind of experimental forward 
declaration feature in an earlier Caml. This was used to get full polymorphic 
recursion in the language (it served as a mandatory type constraint) and it 
was also discussed as a way to get some cross module recursion without the 
ugly "ref to function" hack mentioned in the manual. 

    I'm curious as to whether types could also be forward declared, or deferred, 
as well, and if this forward ref machinery could deal with the problem of 
instantiating a functor which is in a recursive relationship with a type, as in  
the following faux-Caml

forward type composite = { data : string ; children : CompositeSet.t }
and cmp x y = Pervasives.compare x.data y.data  
and module CompositeSet = Set.Make(module type t = composite let compare = cmp end)

    This is a lighter approach than the one involving MoscowML recursive 
modules, since there is no extra module wrapper, but can probably be transformed 
into the mosml style mechanically. Is there some showstopper that prevents this 
(admittedly half baked) approach from being feasible? 

    I'd really like to see some solution to the above mentioned problems in 
OCaml sooner rather than later.  

-- Brian


-------------------
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


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

end of thread, other threads:[~2002-10-06 16:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-04  8:46 [Caml-list] Forward references Tom Hirschowitz
2002-10-06 16:34 ` brogoff
  -- strict thread matches above, loose matches on Subject: below --
2002-10-03 23:58 brogoff

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).