]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/components/ng_disambiguation/disambiguateChoices.ml
- acic_content ==> content
[helm.git] / matita / components / ng_disambiguation / disambiguateChoices.ml
index 6d4d63b704e367c0c64cf3f0989d8c68de527031..3da5f9baa54d1756dec10e8d0ad87d659c582fe0 100644 (file)
@@ -74,7 +74,7 @@ let mk_choice  ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref (dsc, args, appl
            "The notation " ^ dsc ^ " expects more arguments")))
     in
      let combined =
-      TermAcicContent.instantiate_appl_pattern 
+      Interpretations.instantiate_appl_pattern 
         ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref env' appl_pattern
      in
       match rest with
@@ -82,11 +82,11 @@ let mk_choice  ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref (dsc, args, appl
        | _::_ -> mk_appl (combined::rest))
 
 let lookup_symbol_by_dsc ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref symbol dsc =
-  let interpretations = TermAcicContent.lookup_interpretations ~sorted:false symbol in
+  let interpretations = Interpretations.lookup_interpretations ~sorted:false symbol in
   try
     mk_choice ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref
       (List.find (fun (dsc', _, _) -> dsc = dsc') interpretations)
-  with TermAcicContent.Interpretation_not_found | Not_found ->
+  with Interpretations.Interpretation_not_found | Not_found ->
     raise (Choice_not_found (lazy (sprintf "Symbol %s, dsc %s" symbol dsc)))
 
 let cic_lookup_symbol_by_dsc = lookup_symbol_by_dsc