X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FgTopLevel%2FprimitiveTactics.ml;h=ccd8ccfe0ad63eddcd5c572092a78fd11d2ece72;hb=3fcde61beded58d18775c13906b9741ba4735864;hp=eba2d571ff8d4fc26ed633f375f3be1fd89872cd;hpb=9597e7e79ce0606671f8aa170951d119419780ad;p=helm.git diff --git a/helm/gTopLevel/primitiveTactics.ml b/helm/gTopLevel/primitiveTactics.ml index eba2d571f..ccd8ccfe0 100644 --- a/helm/gTopLevel/primitiveTactics.ml +++ b/helm/gTopLevel/primitiveTactics.ml @@ -43,11 +43,7 @@ let lambda_abstract context newmeta ty mknames = function C.Cast (te,_) -> collect_context context te | C.Prod (n,s,t) -> - let n' = - match n with - C.Name _ -> n - | C.Anonymous -> C.Name (mknames ()) - in + let n' = C.Name (mknames n) in let (context',ty,bo) = collect_context ((Some (n',(C.Decl s)))::context) t in @@ -305,13 +301,15 @@ let apply_tac ~term ~status = with CicUnification.UnificationFailed as e -> raise (Fail (Printexc.to_string e)) -let intros_tac ~mknames ~status:(proof, goal) = +let intros_tac ~status:(proof, goal) = let module C = Cic in let module R = CicReduction in let (_,metasenv,_,_) = proof in let metano,context,ty = List.find (function (m,_,_) -> m=goal) metasenv in let newmeta = new_meta ~proof in - let (context',ty',bo') = lambda_abstract context newmeta ty mknames in + let (context',ty',bo') = + lambda_abstract context newmeta ty (ProofEngineHelpers.fresh_name) + in let (newproof, _) = subst_meta_in_proof proof metano bo' [newmeta,context',ty'] in @@ -502,15 +500,16 @@ da subst1!!!! Dovrei rimuoverle o sono innocue?*) List.map (function (i,_,_) -> i) new_uninstantiatedmetas) ;; -let elim_simpl_intros_tac ~term = +(* The simplification is performed only on the conclusion *) +let elim_intros_simpl_tac ~term = Tacticals.then_ ~start:(elim_tac ~term) ~continuation: - (Tacticals.then_ - ~start:(ReductionTactics.simpl_tac ~also_in_hypotheses:false ~term:None) - ~continuation:(intros_tac ~mknames:(function () -> "FOO"))) + (Tacticals.thens + ~start:intros_tac + ~continuations: + [ReductionTactics.simpl_tac ~also_in_hypotheses:false ~term:None]) ;; - exception NotConvertible (*CSC: Bug (or feature?). [with_what] is parsed in the context of the goal, *)