caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Christian Sternagel <christian.sternagel@uibk.ac.at>
To: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] module types and constraints in several layers
Date: Thu, 15 Mar 2007 15:21:42 +0100	[thread overview]
Message-ID: <20070315142142.GD3236@pc6197-c703.uibk.ac.at> (raw)
In-Reply-To: <875c7e070703150625r2fe44739r86755099a2bd2594@mail.gmail.com>

On Thu, Mar 15, 2007 at 08:25:08AM -0500, Chris King wrote:
> On 3/15/07, Christian Sternagel <christian.sternagel@uibk.ac.at> wrote:
> >but I was not able to tell the compiler (correctly) that after
> >building module E ist should be the case that for example
> >E.E1 = D.D1 = B.B1 = A = E4.D.D1 = E4.D.D2.B1 = ...
> >
> >Is there a convenient way to make such a structure of modules?
> >And if yes, how ist it done?
> 
> What's happening is that, when you specify the type of the results of
> B.Make and D.Make, O'Caml throws away the info about how they were
> created: since the type signatures B.T and D.T simply say "these
> modules have some submodules" but don't say where the submodules come
> from, that info becomes hidden (as it should be).  However you can
> explicitly instruct the compiler not to hide this info:
> 
> module Make (A : A.T) : B.T with module B1 = A = struct
> ...
> module B1 = A
> ...
> end
> 
> This just says "give the resulting module the signature B.T, but
> retain the info that module B1 equals A".  Similarly:
> 
> module Make (B : B.T) (C : C.T) : D.T
>    with module D1 = B.B1 and module D2 = B
>    = struct
In fact thats exactly what I did, but it only worked when a had not more than 1 layer of functors applied to functors. I may need to give my actual program structure in more detail in order to explain my problem better.

variable.mli:
module Make (Id : IDENT.T) : VARIABLE.T with module Id = Id

function.mli:
module Make (Id : IDENT.T) (Lab : LABEL.T) : FUNCTION.T
 with module Id = Id
 and module Lab = Lab

term.mli:
module Make (Var : VARIABLE.T) (Fun : FUNCTION_SYMBOL.T) : TERM.T
 with module Var = Var
 and module Lab = Fun.Lab
 and module Fun = Fun

TERM.mli:
module type T = sig
 type t
 module Fun
 val f1 : t -> t -> bool
 val f2 : t -> t
 val f3 : Fun.t Setx.set -> t -> t
end

rule.mli:
module Make (Term : TERM.T) : RULE.T
 with module Var = Term.Var
 and module Lab = Term.Lab
 and module Fun = Term.Fun
 and module Term = Term

trs.mli:
module Make (Rule : RULE.T) : TRS.T
 with module Var = Tule.Term.Var
 and module Lab = Rule.Term.Lab
 and module Fun = Rule.Term.Fun
 and module Term = Rule.Term
 and module Rule = Rule

TRS.mli:
module type T = sig
 type t
 module Fun : FUNCTION.T
 val f0 : t -> Fun.t Setx.set 
end

everythin compiles fine. Then I make the following in another file.

some.ml:
module Make (Trs : TRS.T) : SOME.T = struct
 module Var = Trs.Var
 module Lab = Trs.Lab
 module Fun = Trs.Fun
 module Term = Trs.Term
 module Rule = Trs.Rule
 module Trs = Trs
 ...
  let ds = Trs.f0 trs in
  Term.f1 (Term.f2 (Term.f3 d s)) t
                            ^
 ...
end

end try to compile an the resulting error message is:

This expression has type Trs.Fun.t Setx.set but is here used with type
Term.Fun.t Setx.set
Type Trs.Fun.t = Trs.Fun.t is not compatible with type
Term.Fun.t = Trs.Term.Fun.t 

where the ^ markes the ment expression

cheers

christian

> ...
> module D1 = B.B1
> module D2 = B
> module D3 = C
> ...
> end
> 
> You don't need to do this with E.Make since its signature is left intact.
> 
> You can do this with individual types too, see section 6.10 of the manual.
> 
> _______________________________________________
> 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
> 


  reply	other threads:[~2007-03-15 14:21 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-15 10:12 Christian Sternagel
2007-03-15 13:25 ` [Caml-list] " Chris King
2007-03-15 14:21   ` Christian Sternagel [this message]
2007-03-15 14:48     ` Chris King
2007-03-15 15:38       ` Christian Sternagel

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=20070315142142.GD3236@pc6197-c703.uibk.ac.at \
    --to=christian.sternagel@uibk.ac.at \
    --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).