]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/tactics/variousTactics.ml
Added module DiscriminationTactics with brand new tactics Injection and
[helm.git] / helm / ocaml / tactics / variousTactics.ml
index f0a3070f7ffd2652e436e8eecb365010310b5667..390d97fb774b306baa0ea183612ea75ea1c961f7 100644 (file)
@@ -50,68 +50,43 @@ let assumption_tac ~status:((proof,goal) as status) =
 
 (* ANCORA DA DEBUGGARE *)
 
+exception AllSelectedTermsMustBeConvertible;;
+
 (* serve una funzione che cerchi nel ty dal basso a partire da term, i lambda
 e li aggiunga nel context, poi si conta la lunghezza di questo nuovo
 contesto e si lifta di tot... COSA SIGNIFICA TUTTO CIO'?????? *)
 
-let generalize_tac ~term ~status:((proof,goal) as status) =
+let generalize_tac
+ ?(mk_fresh_name_callback = ProofEngineHelpers.mk_fresh_name)
+ terms ~status:((proof,goal) as status)
+=
   let module C = Cic in
   let module P = PrimitiveTactics in
   let module T = Tacticals in
    let _,metasenv,_,_ = proof in
-    let _,context,ty = List.find (function (m,_,_) -> m=goal) metasenv in
-(*
-     let found = false in
-     let rec new_context context ty = 
-      if ty == term then let found = true in context
-       else match ty with
-             C.Rel _
-           | C.Var _ 
-           | C.Meta _ (* ???? *)
-           | C.Sort s 
-           | C.Implicit -> context                   
-           | C.Cast (val,typ) -> 
-              let tmp_context = new_context context val in 
-               tmp_context @ (new_context tmp_context typ)
-           | C.Prod (binder, source, target) -> 
-           | C.Lambda (binder, source, target) -> 
-              let tmp_context = new_context context source in 
-               tmp_context @ (new_context tmp_context binder)
-           | C.LetIn (binder, term, target) ->
-           | C.Appl applist -> 
-              let rec aux context = 
-               match applist with 
-                  [] -> context
-                | hd::tl -> 
-                   let tmp_context = (new_context context hd)
-                   in aux tmp_context tl 
-              in aux context applist
-           | C.Const (uri, exp_named_subst)
-           | C.MutInd (uri, typeno, exp_named_subst)
-           | C.MutConstruct (uri, typeno, consno, exp_named_subst) -> 
-              match exp_named_subst with
-                 [] -> context
-               | (uri,t)::_ -> new_context context (type_of_aux' context t)
-               | _ -> assert false
-           | C.MutCase (uri, typeno, outtype, iterm, patterns) 
-           | C.Fix (funno, funlist) 
-           | C.CoFix (funno, funlist) ->
-              match funlist with
-                 [] -> context (* caso possibile? *)
-               | (name, index, type, body)::_ -> 
-                  let tmp_context = ~
-     in
-*)
+   let _,context,ty = List.find (function (m,_,_) -> m=goal) metasenv in
+    let typ =
+     match terms with
+        [] -> assert false
+      | he::tl ->
+         (* We need to check that all the convertibility of all the terms *)
+         List.iter
+          (function t ->
+            if not (CicReduction.are_convertible context he t) then 
+             raise AllSelectedTermsMustBeConvertible
+          ) tl ;
+         (CicTypeChecker.type_of_aux' metasenv context he)
+    in
      T.thens 
       ~start:
         (P.cut_tac 
          (C.Prod(
-           (C.Name "dummy_for_gen"), 
-           (CicTypeChecker.type_of_aux' metasenv context term),
+           (mk_fresh_name_callback context C.Anonymous typ), 
+           typ,
            (ProofEngineReduction.replace_lifting_csc 1
              ~equality:(==) 
-             ~what:term 
-             ~with_what:(C.Rel 1) (* C.Name "dummy_for_gen" *)  
+             ~what:terms
+             ~with_what:(List.map (function _ -> C.Rel 1) terms)
              ~where:ty)
          )))
       ~continuations: [(P.apply_tac ~term:(C.Rel 1)) ; T.id_tac]
@@ -119,70 +94,3 @@ let generalize_tac ~term ~status:((proof,goal) as status) =
 ;;
 
 
-(* IN FASE DI IMPLEMENTAZIONE *)
-
-let decide_equality_tac =
-(* il goal e' un termine della forma t1=t2\/~t1=t2; la tattica decide se l'uguaglianza
-e' vera o no e lo risolve *)
-  Tacticals.id_tac
-;;
-
-
-let compare_tac ~term ~status:((proof, goal) as status) =
-(* term is in the form t1=t2; the tactic leaves two goals: in the first you have to          *)
-(* demonstrate the goal with the additional hyp that t1=t2, in the second the hyp is ~t1=t2  *)
-  let module C = Cic in
-  let module U = UriManager in
-  let module P = PrimitiveTactics in
-  let module T = Tacticals in
-   let _,metasenv,_,_ = proof in
-    let _,context,gty = List.find (function (m,_,_) -> m=goal) metasenv in
-     let termty = (CicTypeChecker.type_of_aux' metasenv context term) in
-      match termty with
-         (C.Appl [(C.MutInd (uri, 0, [])); _; t1; t2]) when (uri = (U.uri_of_string "cic:/Coq/Init/Logic/eq.ind")) ->
-          
-          let term' = (* (t1=t2)\/~(t1=t2) *)
-           C.Appl [
-            (C.MutInd ((U.uri_of_string "cic:/Coq/Init/Logic/or.ind"), 0, [])) ; 
-            term ; 
-            C.Appl [
-             (C.MutInd ((U.uri_of_string "cic:/Coq/Init/Logic/eq.ind"), 1, [])) ; 
-             t1 ; 
-             C.Appl [C.Const ((U.uri_of_string "cic:/Coq/Init/Logic/not.con"), []) ; t2]
-            ]
-           ] 
-          in
-            T.thens 
-               ~start:(P.cut_tac term')
-               ~continuations:[
-                 T.then_ ~start:(P.intros_tac ()) ~continuation:(P.elim_intros_simpl_tac ~term:(C.Rel 1)) ; 
-                 decide_equality_tac]  
-      | (C.Appl [(C.MutInd (uri, 0, [])); _; t1; t2]) when (uri = (U.uri_of_string "cic:/Coq/Init/Logic_Type/eqT.ind")) ->
-          let term' = (* (t1=t2) \/ ~(t1=t2) *)
-           C.Appl [
-            (C.MutInd ((U.uri_of_string "cic:/Coq/Init/Logic/or.ind"), 0, [])) ; 
-            term ; 
-            C.Appl [
-             (C.MutInd ((U.uri_of_string "cic:/Coq/Init/Logic_Type/eqT.ind"), 1, [])) ; 
-             t1 ; 
-             C.Appl [C.Const ((U.uri_of_string "cic:/Coq/Init/Logic/not.con"), []) ; t2]
-            ]
-           ] 
-          in
-            T.thens 
-               ~start:(P.cut_tac term')
-               ~continuations:[
-                 T.then_ ~start:(P.intros_tac ()) ~continuation:(P.elim_intros_simpl_tac ~term:(C.Rel 1)) ; 
-                 decide_equality_tac]  
-      | _ -> raise (ProofEngineTypes.Fail "Compare: Not an equality") 
-;;
-
-
-let discriminate_tac ~term ~status:((proof, goal) as status) =
-  let module C = Cic in
-  let module U = UriManager in
-  let module P = PrimitiveTactics in
-  let module T = Tacticals in
-   T.id_tac 
-;;
-