]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/gTopLevel/disambiguatingParser.mli
renamed modules so that they are more consistent with other cic modules
[helm.git] / helm / gTopLevel / disambiguatingParser.mli
index 6edb842399971bd37f73bd0d20229fc4e7b1371d..5ddf68377f2f2073e406c7049cd978575108f356 100644 (file)
 
 exception NoWellTypedInterpretation
 
-module Environment :
+module EnvironmentP3 :
  sig
   type t
-  val empty : t
+  val empty : string
   val to_string : t -> string
   val of_string : string -> t
  end
 
-module Make (C : Disambiguate_types.Callbacks) :
+module Make (C : DisambiguateTypes.Callbacks) :
   sig
     val disambiguate_term :
       MQIConn.handle ->
       Cic.context ->
       Cic.metasenv ->
       string ->
-      Environment.t ->  (* previous interpretation status *)
-        Environment.t *                   (* new interpretation status *)
+      EnvironmentP3.t ->  (* previous interpretation status *)
+        EnvironmentP3.t *                   (* new interpretation status *)
         Cic.metasenv *                  (* new metasenv *)
         Cic.term                        (* disambiguated term *)
   end