X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_disambiguation%2FdisambiguateTypes.mli;h=ccde1a4e85690dc66374e93a67deffc9558f8fc7;hb=7a72e5c5129c814e567f03e14d752eff4086fb52;hp=525a7e33f8a1f1bb044d4e00190e7b0f6d0b25f5;hpb=6459acbd4bb69475cfaa0b37a9771ced94193667;p=helm.git diff --git a/helm/ocaml/cic_disambiguation/disambiguateTypes.mli b/helm/ocaml/cic_disambiguation/disambiguateTypes.mli index 525a7e33f..ccde1a4e8 100644 --- a/helm/ocaml/cic_disambiguation/disambiguateTypes.mli +++ b/helm/ocaml/cic_disambiguation/disambiguateTypes.mli @@ -28,7 +28,7 @@ type domain_item = | Symbol of string * int (* literal, instance num *) | Num of int (* instance num *) -module Domain: Set.S with type elt = domain_item +(* module Domain: Set.S with type elt = domain_item *) module Environment: Map.S with type key = domain_item type codomain_item = @@ -40,17 +40,27 @@ 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 + (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 -> UriManager.uri end val string_of_domain_item: domain_item -> string -val string_of_domain: Domain.t -> string +val string_of_domain: domain_item list -> string + +(** {3 type shortands} *) + +type term = CicAst.term +type tactic = (term, string) TacticAst.tactic +type tactical = (term, string) TacticAst.tactical