]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_disambiguation/disambiguateTypes.mli
moved dummy_floc from Disambiguate to DisambiguateTypes, since it is now needed by...
[helm.git] / helm / ocaml / cic_disambiguation / disambiguateTypes.mli
index 523fe4b70838e7835d674480346dba9ea0da4428..df598a3f713f20ded29e8c8ed8dd80f7dd18ba17 100644 (file)
@@ -29,27 +29,72 @@ type domain_item =
  | Num of int                 (* instance num *)
 
 (* module Domain:      Set.S with type elt = domain_item *)
-module Environment: Map.S with type key = domain_item
+module Environment:
+sig
+  include Map.S with type key = domain_item
+  val cons: domain_item -> ('a * 'b) -> ('a * 'b) list t -> ('a * 'b) list t
+  val hd: 'a list t -> 'a t
+
+    (** last alias cons-ed will be processed first *)
+  val fold_flatten: (domain_item -> 'a -> 'b -> 'b) -> 'a list t -> 'b -> 'b
+end
+
+  (** to be raised when a choice is invalid due to some given parameter (e.g.
+   * wrong number of Cic.term arguments received) *)
+exception Invalid_choice
 
 type codomain_item =
   string *  (* description *)
-  (environment -> string -> Cic.term list -> Cic.term)
+  (singleton_environment -> string -> Cic.term list -> Cic.term)
     (* environment, literal number, arguments as needed *)
 
-and environment = codomain_item Environment.t
+and environment = codomain_item list Environment.t
+
+and singleton_environment = codomain_item Environment.t
+
+(* a simple case of extension of a disambiguation environment *)
+val singleton_env_of_list:
+  (string * string * Cic.term) list -> singleton_environment ->
+    singleton_environment
+
+val env_of_list:
+  (string * string * Cic.term) list -> environment ->
+    environment
 
 module type Callbacks =
   sig
+
     val interactive_user_uri_choice :
       selection_mode:[`SINGLE | `MULTIPLE] ->
       ?ok:string ->
       ?enable_button_for_non_vars:bool ->
-      title:string -> msg:string -> id:string -> string list -> string list
-    val interactive_interpretation_choice :
+      title:string -> msg:string -> id:string -> UriManager.uri list ->
+       UriManager.uri list
+
+      val interactive_interpretation_choice :
       (string * string) list list -> int list
-    val input_or_locate_uri : title:string -> UriManager.uri
+
+    (** @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
   end
 
 val string_of_domain_item: domain_item -> string
 val string_of_domain: domain_item list -> string
 
+(** {3 type shortands} *)
+
+type term = CicNotationPt.term
+type tactic = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactic
+type tactical = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactical
+
+type script_entry =
+  | Command of tactical
+  | Comment of CicNotationPt.location * string
+type script = CicNotationPt.location * script_entry list
+
+val empty_environment: environment
+
+val dummy_floc: Lexing.position * Lexing.position
+