]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_disambiguation/disambiguate_types.mli
snapshot, almost working
[helm.git] / helm / ocaml / cic_disambiguation / disambiguate_types.mli
index fc6b0e742291402f3e69b4bea085d772e4b6292b..525a7e33f8a1f1bb044d4e00190e7b0f6d0b25f5 100644 (file)
  * http://helm.cs.unibo.it/
  *)
 
-type interpretation_domain_item =
+type domain_item =
  | Id of string               (* literal *)
  | Symbol of string * int     (* literal, instance num *)
- | Num of string * int        (* literal, instance num *)
+ | Num of int                 (* instance num *)
 
-and interpretation_codomain_item =
+module Domain:      Set.S with type elt = domain_item
+module Environment: Map.S with type key = domain_item
+
+type codomain_item =
   string *  (* description *)
-  (interpretation -> Cic.term list -> Cic.term)
+  (environment -> string -> Cic.term list -> Cic.term)
+    (* environment, literal number, arguments as needed *)
+
+and environment = codomain_item Environment.t
+
+module type Callbacks =
+  sig
+    val output_html : ?append_NL:bool -> Ui_logger.html_msg -> unit
+    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 :
+      (string * string) list list -> int
+    val input_or_locate_uri : title:string -> UriManager.uri
+  end
 
-and interpretation = interpretation_domain_item -> interpretation_codomain_item
+val string_of_domain_item: domain_item -> string
+val string_of_domain: Domain.t -> string