]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/disambiguation/disambiguateTypes.mli
housekeeping:
[helm.git] / helm / software / components / disambiguation / disambiguateTypes.mli
index 15f9d8d30bec0545beb7b40b73e406bbc7480c36..43cfc2316120c2fd05f15e492284d7af439ed5b6 100644 (file)
@@ -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,5 @@ 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
-*)