X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftactics%2FvariousTactics.ml;h=bc6d522b983171aa0adc1ad8018b7d34eb46acbf;hb=08791e80816548121e81e04d3ead8c9a5171d033;hp=1f2e6b13c9bd312db7ec309b2d88cf1b045533c2;hpb=bb19a912c9d3d470163e88722e3abbd548b8bdb9;p=helm.git diff --git a/helm/ocaml/tactics/variousTactics.ml b/helm/ocaml/tactics/variousTactics.ml index 1f2e6b13c..bc6d522b9 100644 --- a/helm/ocaml/tactics/variousTactics.ml +++ b/helm/ocaml/tactics/variousTactics.ml @@ -96,15 +96,27 @@ let generalize_tac None -> None | Some term -> Some (CicMetaSubst.apply_subst subst term) in let u,typ,term = - match terms_with_context, term with - [], None -> - raise UnableToDetectTheTermThatMustBeGeneralizedYouMustGiveItExplicitly - | _, Some term - | (_,term)::_, None -> - let typ,u = - CicTypeChecker.type_of_aux' ~subst metasenv context term u - in - u,typ,term + let context_of_t,t = + match terms_with_context, term with + [], None -> + raise + UnableToDetectTheTermThatMustBeGeneralizedYouMustGiveItExplicitly + | _, Some t -> context,t + | (context_of_t,t)::_, None -> context_of_t,t + in + let t,subst,metasenv' = + try + CicMetaSubst.delift_rels [] metasenv + (List.length context_of_t - List.length context) t + with + CicMetaSubst.DeliftingARelWouldCaptureAFreeVariable -> + raise TheSelectedTermsMustLiveInTheGoalContext in + (*CSC: I am not sure about the following two assertions; + maybe I need to propagate the new subst and metasenv *) + assert (subst = []); + assert (metasenv' = metasenv); + let typ,u = CicTypeChecker.type_of_aux' ~subst metasenv context t u in + u,typ,t in (* We need to check: 1. whether they live in the context of the goal; @@ -118,15 +130,17 @@ let generalize_tac List.fold_left (fun u (context_of_t,t) -> (* 1 *) - begin + let t,subst,metasenv' = try - ignore - (CicMetaSubst.delift_rels [] metasenv - (List.length context_of_t - List.length context) t) + CicMetaSubst.delift_rels [] metasenv + (List.length context_of_t - List.length context) t with CicMetaSubst.DeliftingARelWouldCaptureAFreeVariable -> - raise TheSelectedTermsMustLiveInTheGoalContext - end; + raise TheSelectedTermsMustLiveInTheGoalContext in + (*CSC: I am not sure about the following two assertions; + maybe I need to propagate the new subst and metasenv *) + assert (subst = []); + assert (metasenv' = metasenv); (* 2 *) let b,u1 = CicReduction.are_convertible ~subst context term t u in if not b then