X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fng_disambiguation%2FdisambiguateChoices.ml;h=94643b3b003a98729ac02613d5d803a6478377e5;hb=f6b7c6ae353e014761a3d24dbc87e00d828d7f2d;hp=071f1e00ea0bd1d3e59b1f2d3658675bd7cb1b9f;hpb=42aa528129728611cae9da02904886522b08f94a;p=helm.git diff --git a/matita/components/ng_disambiguation/disambiguateChoices.ml b/matita/components/ng_disambiguation/disambiguateChoices.ml index 071f1e00e..94643b3b0 100644 --- a/matita/components/ng_disambiguation/disambiguateChoices.ml +++ b/matita/components/ng_disambiguation/disambiguateChoices.ml @@ -42,7 +42,7 @@ let nlookup_num_by_dsc dsc = List.find (has_description dsc) !nnum_choices with Not_found -> raise (Choice_not_found (lazy ("Num with dsc " ^ dsc))) -let mk_choice ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref (dsc, args, appl_pattern)= +let mk_choice ~mk_appl ~mk_implicit ~term_of_nref (dsc, args, appl_pattern)= dsc, `Sym_interp (fun cic_args -> @@ -66,16 +66,16 @@ let mk_choice ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref (dsc, args, appl in let combined = Interpretations.instantiate_appl_pattern - ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref env' appl_pattern + ~mk_appl ~mk_implicit ~term_of_nref env' appl_pattern in match rest with [] -> combined | _::_ -> mk_appl (combined::rest)) -let lookup_symbol_by_dsc ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref symbol dsc = +let lookup_symbol_by_dsc ~mk_appl ~mk_implicit ~term_of_nref symbol dsc = let interpretations = Interpretations.lookup_interpretations ~sorted:false symbol in try - mk_choice ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref + mk_choice ~mk_appl ~mk_implicit ~term_of_nref (List.find (fun (dsc', _, _) -> dsc = dsc') interpretations) with Interpretations.Interpretation_not_found | Not_found -> raise (Choice_not_found (lazy (sprintf "Symbol %s, dsc %s" symbol dsc)))