X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fdisambiguation%2FdisambiguateTypes.mli;h=c3601eae5858c81ca9451667738a08329290972a;hb=05fe6622703b84fde385b0caa19ff9e9886c482d;hp=15f9d8d30bec0545beb7b40b73e406bbc7480c36;hpb=9a9c5b863f68367119450ae7b806d454ba1265e3;p=helm.git diff --git a/helm/software/components/disambiguation/disambiguateTypes.mli b/helm/software/components/disambiguation/disambiguateTypes.mli index 15f9d8d30..c3601eae5 100644 --- a/helm/software/components/disambiguation/disambiguateTypes.mli +++ b/helm/software/components/disambiguation/disambiguateTypes.mli @@ -33,10 +33,6 @@ module Environment: sig include Map.S with type key = domain_item val cons: ('b -> 'a) -> domain_item -> 'b -> 'b list t -> '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. @@ -48,11 +44,6 @@ type 'term codomain_item = [`Num_interp of string -> 'term |`Sym_interp of 'term list -> 'term] -and 'term environment = 'term codomain_item Environment.t - -type 'term multiple_environment = - 'term codomain_item list Environment.t - type interactive_user_uri_choice_type = selection_mode:[`SINGLE | `MULTIPLE] -> ?ok:string -> @@ -66,29 +57,4 @@ type interactive_interpretation_choice_type = string -> int -> type input_or_locate_uri_type = title:string -> ?id:string -> unit -> UriManager.uri option -module type Callbacks = - sig - - val interactive_user_uri_choice : interactive_user_uri_choice_type - - val interactive_interpretation_choice : - interactive_interpretation_choice_type - - val input_or_locate_uri: input_or_locate_uri_type - 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 -*)