]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/cic_disambiguation/disambiguateChoices.ml
- matitacLib: better handling of the callbacks for the dump operation
[helm.git] / helm / software / components / cic_disambiguation / disambiguateChoices.ml
index b540033dcfe67ed68f2b7bc2fc3ba3b3b6f788f8..bc82e60ffa921156f319f91b2c3e08b27b0795f2 100644 (file)
@@ -75,11 +75,10 @@ let mk_choice  ~mk_appl ~mk_implicit ~term_of_uri (dsc, args, appl_pattern)=
        | _::_ -> mk_appl (combined::rest))
 
 let lookup_symbol_by_dsc ~mk_appl ~mk_implicit ~term_of_uri symbol dsc =
+  let interpretations = TermAcicContent.lookup_interpretations ~sorted:false symbol in
   try
     mk_choice ~mk_appl ~mk_implicit ~term_of_uri 
-      (List.find
-        (fun (dsc', _, _) -> dsc = dsc')
-        (TermAcicContent.lookup_interpretations symbol))
+      (List.find (fun (dsc', _, _) -> dsc = dsc') interpretations)
   with TermAcicContent.Interpretation_not_found | Not_found ->
     raise (Choice_not_found (lazy (sprintf "Symbol %s, dsc %s" symbol dsc)))