]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_disambiguation/disambiguateTypes.mli
various updates, removed proofs for now because they are the real bottleneck!!
[helm.git] / helm / ocaml / cic_disambiguation / disambiguateTypes.mli
index db9829e03d1a0fc6c23734b6257d54d93e1e7755..89d52901532e359ce463d11ecd526c6e29aa3480 100644 (file)
@@ -38,6 +38,9 @@ type codomain_item =
 
 and environment = codomain_item Environment.t
 
+(* a simple case of extension of a disambiguation environment *)
+val env_of_list: (string * string * Cic.term) list -> environment -> environment
+
 module type Callbacks =
   sig
 
@@ -45,14 +48,16 @@ module type Callbacks =
       selection_mode:[`SINGLE | `MULTIPLE] ->
       ?ok:string ->
       ?enable_button_for_non_vars:bool ->
-      title:string -> msg:string -> id:string -> string list -> string list
+      title:string -> msg:string -> id:string -> UriManager.uri list ->
+       UriManager.uri list
 
-    val interactive_interpretation_choice :
+      val interactive_interpretation_choice :
       (string * string) list list -> int list
 
     (** @param title gtk window title for user prompting
      * @param id unbound identifier which originated this callback invocation *)
-    val input_or_locate_uri : title:string -> ?id:string -> unit -> UriManager.uri
+    val input_or_locate_uri:
+      title:string -> ?id:string -> unit -> UriManager.uri
   end
 
 val string_of_domain_item: domain_item -> string
@@ -64,3 +69,10 @@ type term = CicAst.term
 type tactic = (term, string) TacticAst.tactic
 type tactical = (term, string) TacticAst.tactical
 
+type script_entry =
+  | Command of tactical
+  | Comment of CicAst.location * string
+type script = CicAst.location * script_entry list
+
+val empty_environment: environment
+