]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/declarative.ml
Bug fixed: the conversion was done with the wront argument (a sort of typo).
[helm.git] / helm / software / components / tactics / declarative.ml
index c7e5579f8038a80a5929f261ed8d45a657c09ebd..75f56f2b683bdc9f53fe6c5769ec0b7a8dec81cb 100644 (file)
@@ -51,18 +51,30 @@ let by_term_we_proved ~dbd t ty id ty' =
      None -> Tactics.auto ~dbd ~params:[]
    | Some t -> Tactics.apply t
  in
-  let continuation =
-   match ty' with
-      None -> Tacticals.id_tac
-    | Some ty' ->
-        Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
-         (fun _ metasenv ugraph -> ty',metasenv,ugraph)
-  in
-   Tacticals.thens
-   ~start:
-     (Tactics.cut ty
-       ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
-   ~continuations:[ continuation ; just ]
+  match id with
+     None ->
+      (match ty' with
+          None -> assert false
+        | Some ty' ->
+           Tacticals.then_
+            ~start:(Tactics.change
+              ~pattern:(ProofEngineTypes.conclusion_pattern None)
+              (fun _ metasenv ugraph -> ty,metasenv,ugraph))
+            ~continuation:just
+      )
+   | Some id ->
+       let continuation =
+        match ty' with
+           None -> Tacticals.id_tac
+         | Some ty' ->
+             Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
+              (fun _ metasenv ugraph -> ty',metasenv,ugraph)
+       in
+        Tacticals.thens
+        ~start:
+          (Tactics.cut ty
+            ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
+        ~continuations:[ continuation ; just ]
 ;;
 
 let bydone ~dbd t =
@@ -75,30 +87,38 @@ let bydone ~dbd t =
 ;;
 
 let we_need_to_prove t id ty =
- let aux status =
-  let cont,cutted =
-   match ty with
-      None -> Tacticals.id_tac,t
-    | Some ty ->
-       Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
-        (fun _ metasenv ugraph -> t,metasenv,ugraph), ty in
-  let proof,goals =
-   ProofEngineTypes.apply_tactic
-    (Tacticals.thens
-      ~start:
-       (Tactics.cut cutted
-         ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
-      ~continuations:[cont])
-    status
-  in
-   let goals' =
-    match goals with
-       [fst; snd] -> [snd; fst]
-     | _ -> assert false
-   in
-    proof,goals'
- in
-  ProofEngineTypes.mk_tactic aux
+ match id with
+    None ->
+     (match ty with
+         None -> Tacticals.id_tac (*BUG: check missing here *)
+       | Some ty ->
+          Tactics.change ~pattern:(ProofEngineTypes.conclusion_pattern None)
+           (fun _ metasenv ugraph -> ty,metasenv,ugraph))
+  | Some id ->
+     let aux status =
+      let cont,cutted =
+       match ty with
+          None -> Tacticals.id_tac,t
+        | Some ty ->
+           Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
+             (fun _ metasenv ugraph -> t,metasenv,ugraph), ty in
+      let proof,goals =
+       ProofEngineTypes.apply_tactic
+        (Tacticals.thens
+          ~start:
+           (Tactics.cut cutted
+             ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
+          ~continuations:[cont])
+        status
+      in
+       let goals' =
+        match goals with
+           [fst; snd] -> [snd; fst]
+         | _ -> assert false
+       in
+        proof,goals'
+     in
+      ProofEngineTypes.mk_tactic aux
 ;;
 
 let existselim t id1 t1 id2 t2 =