]> matita.cs.unibo.it Git - helm.git/commitdiff
added intros n
authorAndrea Asperti <andrea.asperti@unibo.it>
Mon, 30 May 2005 15:57:07 +0000 (15:57 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Mon, 30 May 2005 15:57:07 +0000 (15:57 +0000)
helm/ocaml/tactics/primitiveTactics.ml
helm/ocaml/tactics/primitiveTactics.mli

index c6dc1bf4a4169b60ed5eb769d2ac4918a82f541c..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
@@ -368,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)
@@ -379,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']
index e06e9cf580f8a6720f0646b68be2635b2dbf5f27..0ab82af2a8d612c3b6db745d63e87a8b1ed0b37a 100644 (file)
@@ -39,6 +39,7 @@ val apply_tac:
 val exact_tac:
   term: Cic.term -> ProofEngineTypes.tactic
 val intros_tac:
+  ?howmany:int ->
   ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> unit ->
    ProofEngineTypes.tactic
 val cut_tac:
@@ -55,5 +56,8 @@ val elim_intros_simpl_tac:
 val elim_intros_tac:
   term: Cic.term -> ProofEngineTypes.tactic 
 
+val elim_intros_tac:
+  term: Cic.term -> ProofEngineTypes.tactic 
+
 val change_tac:
   what: Cic.term -> with_what: Cic.term -> ProofEngineTypes.tactic