]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/tactics/primitiveTactics.ml
added intros n
[helm.git] / helm / ocaml / tactics / primitiveTactics.ml
index d7b910fcec94bc15619728c6baaf0c21352999dd..b0159afe5dea45f7d299ee4d17dd7cc37b786225 100644 (file)
@@ -37,29 +37,37 @@ exception WrongUriToVariable of string
 (* and [bo] = Lambda/LetIn [context].(Meta [newmeta])       *)
 (* So, lambda_abstract is the core of the implementation of *)
 (* the Intros tactic.                                       *)
-let lambda_abstract metasenv context newmeta ty mk_fresh_name =
+(* howmany = -1 means Intros, howmany > 0 means Intros n    *)
+let lambda_abstract ?(howmany=(-1)) metasenv context newmeta ty mk_fresh_name =
  let module C = Cic in
-  let rec collect_context context =
-   function
-      C.Cast (te,_)   -> collect_context context te
-    | C.Prod (n,s,t)  ->
-       let n' = mk_fresh_name metasenv context n ~typ:s in
-        let (context',ty,bo) =
-         collect_context ((Some (n',(C.Decl s)))::context) t
+  let rec collect_context context howmany ty =
+   match howmany with
+   | 0 ->  
+        let irl =
+          CicMkImplicit.identity_relocation_list_for_metavariable context
         in
-         (context',ty,C.Lambda(n',s,bo))
-    | C.LetIn (n,s,t) ->
-       let (context',ty,bo) =
-        collect_context ((Some (n,(C.Def (s,None))))::context) t
-       in
-        (context',ty,C.LetIn(n,s,bo))
-    | _ as t ->
-      let irl =
-        CicMkImplicit.identity_relocation_list_for_metavariable context
-      in
-       context, t, (C.Meta (newmeta,irl))
+         context, ty, (C.Meta (newmeta,irl))
+   | _ -> 
+      match ty with 
+        C.Cast (te,_)   -> collect_context context howmany te 
+      | C.Prod (n,s,t)  ->
+         let n' = mk_fresh_name metasenv context n ~typ:s in
+          let (context',ty,bo) =
+           collect_context ((Some (n',(C.Decl s)))::context) (howmany - 1) t 
+          in
+           (context',ty,C.Lambda(n',s,bo))
+      | C.LetIn (n,s,t) ->
+         let (context',ty,bo) =
+          collect_context ((Some (n,(C.Def (s,None))))::context) (howmany - 1) t
+         in
+          (context',ty,C.LetIn(n,s,bo))
+      | _ as t ->
+        let irl =
+          CicMkImplicit.identity_relocation_list_for_metavariable context
+        in
+         context, t, (C.Meta (newmeta,irl))
   in
-   collect_context context ty
+   collect_context context howmany ty 
 
 let eta_expand metasenv context t arg =
  let module T = CicTypeChecker in
@@ -162,7 +170,7 @@ let new_metasenv_for_apply newmeta proof context ty =
  let module C = Cic in
  let module S = CicSubstitution in
   let rec aux newmeta ty =
-   let ty' = CicReduction.whd context ty in 
+   let ty' = (*CicReduction.whd context*) ty in 
    match ty' with
       C.Cast (he,_) -> aux newmeta he
 (* CSC: patch to generate ?1 : ?2 : Type in place of ?1 : Type to simulate ?1 :< Type
@@ -259,6 +267,19 @@ let
     new_fresh_meta,newmetasenvfragment,exp_named_subst',exp_named_subst_diff
 ;;
 
+let new_metasenv_and_unify_and_t newmeta' metasenv' proof context term' ty termty =
+  let (consthead,newmetas,arguments,_) =
+    new_metasenv_for_apply newmeta' proof context termty
+  in
+  let newmetasenv = metasenv'@newmetas in
+  let subst,newmetasenv',_ = 
+    CicUnification.fo_unif newmetasenv context consthead ty CicUniv.empty_ugraph
+  in
+  let t = 
+    if List.length newmetas = 0 then term' else Cic.Appl (term'::arguments)
+  in
+  subst,newmetasenv',t
+
 let apply_tac_verbose ~term (proof, goal) =
   (* Assumption: The term "term" must be closed in the current context *)
  let module T = CicTypeChecker in
@@ -300,47 +321,39 @@ let apply_tac_verbose ~term (proof, goal) =
      | _ -> [],newmeta,[],term
    in
    let metasenv' = metasenv@newmetasenvfragment in
-   let termty,_ = (* TASSI:FIXME *)
+   let termty,_ = 
      CicTypeChecker.type_of_aux' metasenv' context term CicUniv.empty_ugraph in
    let termty =
      CicSubstitution.subst_vars exp_named_subst_diff termty
    in
-    (* newmeta is the lowest index of the new metas introduced *)
-    let (consthead,newmetas,arguments,_) =
-     new_metasenv_for_apply newmeta' proof context termty
-    in
-     let newmetasenv = metasenv'@newmetas in
-      let subst,newmetasenv',_ = (* TASSI:FIXME *)
-        CicUnification.fo_unif newmetasenv context consthead ty 
-         CicUniv.empty_ugraph
-      in
-       let in_subst_domain i = List.exists (function (j,_) -> i=j) subst in
-       let apply_subst = CicMetaSubst.apply_subst subst in
-        let old_uninstantiatedmetas,new_uninstantiatedmetas =
-         (* subst_in doesn't need the context. Hence the underscore. *)
-         let subst_in _ = CicMetaSubst.apply_subst subst in
-          classify_metas newmeta in_subst_domain subst_in newmetasenv'
-        in
-         let bo' =
-          apply_subst
-           (if List.length newmetas = 0 then
-             term'
-            else
-             Cic.Appl (term'::arguments)
-           )
-         in
-         let newmetasenv'' = new_uninstantiatedmetas@old_uninstantiatedmetas in
-         let subst_in =
-           (* if we just apply the subtitution, the type is irrelevant:
+   let subst,newmetasenv',t = 
+     try
+       new_metasenv_and_unify_and_t newmeta' metasenv' proof context term' ty
+         termty
+     with CicUnification.UnificationFailure _ -> 
+       new_metasenv_and_unify_and_t newmeta' metasenv' proof context term' ty
+         (CicReduction.whd context termty)
+   in
+   let in_subst_domain i = List.exists (function (j,_) -> i=j) subst in
+   let apply_subst = CicMetaSubst.apply_subst subst in
+   let old_uninstantiatedmetas,new_uninstantiatedmetas =
+     (* subst_in doesn't need the context. Hence the underscore. *)
+     let subst_in _ = CicMetaSubst.apply_subst subst in
+     classify_metas newmeta in_subst_domain subst_in newmetasenv'
+   in
+   let bo' = apply_subst t in
+   let newmetasenv'' = new_uninstantiatedmetas@old_uninstantiatedmetas in
+   let subst_in =
+     (* if we just apply the subtitution, the type is irrelevant:
              we may use Implicit, since it will be dropped *)
-           CicMetaSubst.apply_subst 
-            ((metano,(context, bo', Cic.Implicit None))::subst)
-         in
-         let (newproof, newmetasenv''') =
-           subst_meta_and_metasenv_in_proof
-             proof metano subst_in newmetasenv''
-         in
-           (subst_in,(newproof, List.map (function (i,_,_) -> i) new_uninstantiatedmetas))
+     CicMetaSubst.apply_subst ((metano,(context,bo',Cic.Implicit None))::subst)
+   in
+   let (newproof, newmetasenv''') = 
+     subst_meta_and_metasenv_in_proof proof metano subst_in newmetasenv''
+   in
+     (subst_in,
+       (newproof, 
+          List.map (function (i,_,_) -> i) new_uninstantiatedmetas))
 
 let apply_tac ~term status = snd (apply_tac_verbose ~term status)
 
@@ -363,7 +376,7 @@ let apply_tac ~term =
  in
   mk_tactic (apply_tac ~term)
 
-let intros_tac ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[]) ()=
+let intros_tac ?howmany ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[]) ()=
  let intros_tac
   ?(mk_fresh_name_callback = (FreshNamesGenerator.mk_fresh_name ~subst:[])) ()
   (proof, goal)
@@ -374,7 +387,7 @@ let intros_tac ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~sub
    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
     let newmeta = new_meta_of_proof ~proof in
      let (context',ty',bo') =
-      lambda_abstract metasenv context newmeta ty mk_fresh_name_callback
+      lambda_abstract ?howmany metasenv context newmeta ty mk_fresh_name_callback
      in
       let (newproof, _) =
         subst_meta_in_proof proof metano bo' [newmeta,context',ty']
@@ -553,6 +566,11 @@ let elim_tac ~term =
   mk_tactic (elim_tac ~term)
 ;;
 
+let elim_intros_tac ~term =
+ Tacticals.then_ ~start:(elim_tac ~term)
+  ~continuation:(intros_tac ())
+;;
+
 (* The simplification is performed only on the conclusion *)
 let elim_intros_simpl_tac ~term =
  Tacticals.then_ ~start:(elim_tac ~term)