From: Claudio Sacerdoti Coen Date: Sat, 30 Jun 2007 12:16:20 +0000 (+0000) Subject: BU Conversion was not generated for Rels fixed. I wonder why... X-Git-Tag: 0.4.95@7852~381 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=a248d4909ad56df55e861720847c94abb7eaaba3;p=helm.git BU Conversion was not generated for Rels fixed. I wonder why... --- diff --git a/components/acic_content/acic2content.ml b/components/acic_content/acic2content.ml index 99bab2de4..f27b881ba 100644 --- a/components/acic_content/acic2content.ml +++ b/components/acic_content/acic2content.ml @@ -118,7 +118,11 @@ let test_for_lifting ~ids_to_inner_types ~ids_to_inner_sorts= let module C2A = Cic2acic in (* atomic terms are never lifted, according to my policy *) function - C.ARel (id,_,_,_) -> false + C.ARel (id,_,_,_) -> + (try + ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized; + true; + with Not_found -> false) | C.AVar (id,_,_) -> (try ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;