]> matita.cs.unibo.it Git - helm.git/commitdiff
termAcicContent is logic independent (despite its name) thus it
authorEnrico Tassi <enrico.tassi@inria.fr>
Tue, 9 Jun 2009 14:56:01 +0000 (14:56 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Tue, 9 Jun 2009 14:56:01 +0000 (14:56 +0000)
needs also term_of_nref

helm/software/components/acic_content/termAcicContent.ml
helm/software/components/cic_disambiguation/disambiguateChoices.ml
helm/software/components/grafite_parser/grafiteDisambiguate.ml

index 0c0b0232829ff10619d71bd9985fb535e91e9a71..0af74d261701e01a0918040451dc5599e61f19b1 100644 (file)
@@ -497,7 +497,7 @@ let remove_interpretation id =
 let init () = List.iter (fun f -> f []) !load_patterns32s
 
 let instantiate_appl_pattern 
-  ~mk_appl ~mk_implicit ~term_of_uri env appl_pattern 
+  ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref env appl_pattern 
 =
   let lookup name =
     try List.assoc name env
@@ -507,7 +507,7 @@ let instantiate_appl_pattern
   in
   let rec aux = function
     | Ast.UriPattern uri -> term_of_uri uri
-    | Ast.NRefPattern _ -> assert false
+    | Ast.NRefPattern nref -> term_of_nref nref
     | Ast.ImplicitPattern -> mk_implicit false
     | Ast.VarPattern name -> lookup name
     | Ast.ApplPattern terms -> mk_appl (List.map aux terms)
index bc82e60ffa921156f319f91b2c3e08b27b0795f2..f0c7b373ff9da2f8b1082f7a163dfed780c4e453 100644 (file)
@@ -44,7 +44,7 @@ let lookup_num_by_dsc dsc =
     List.find (has_description dsc) !num_choices
   with Not_found -> raise (Choice_not_found (lazy ("Num with dsc " ^  dsc)))
 
-let mk_choice  ~mk_appl ~mk_implicit ~term_of_uri (dsc, args, appl_pattern)=
+let mk_choice  ~mk_appl ~mk_implicit ~term_of_uri ~term_of_nref (dsc, args, appl_pattern)=
   dsc,
   `Sym_interp
   (fun cic_args ->
@@ -68,16 +68,16 @@ let mk_choice  ~mk_appl ~mk_implicit ~term_of_uri (dsc, args, appl_pattern)=
     in
      let combined =
       TermAcicContent.instantiate_appl_pattern 
-        ~mk_appl ~mk_implicit ~term_of_uri env' appl_pattern
+        ~mk_appl ~mk_implicit ~term_of_uri ~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 symbol dsc =
+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
   try
-    mk_choice ~mk_appl ~mk_implicit ~term_of_uri 
+    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 ->
     raise (Choice_not_found (lazy (sprintf "Symbol %s, dsc %s" symbol dsc)))
@@ -87,5 +87,5 @@ let cic_lookup_symbol_by_dsc = lookup_symbol_by_dsc
      | true -> Cic.Implicit (Some `Type)
      | false -> Cic.Implicit None)
   ~mk_appl:(function (Cic.Appl l)::tl -> Cic.Appl (l@tl) | l -> Cic.Appl l)
-  ~term_of_uri:CicUtil.term_of_uri
+  ~term_of_uri:CicUtil.term_of_uri ~term_of_nref:(fun _ -> assert false)
 ;;
index e94507a86bc28a7286be49d1bcad1474752bebd5..9c12d1173c6c9b212e021f52b71e24b1d7ea863b 100644 (file)
@@ -78,6 +78,7 @@ let ncic_mk_choice = function
            (NCic.Appl l)::tl -> NCic.Appl (l@tl) | l -> NCic.Appl l)
         ~term_of_uri:(fun uri ->
            fst (OCic2NCic.convert_term uri (CicUtil.term_of_uri uri)))
+        ~term_of_nref:(fun nref -> NCic.Const nref)
        name dsc
   | LexiconAst.Number_alias (_, dsc) -> 
        let desc,f = DisambiguateChoices.lookup_num_by_dsc dsc in