]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/negationTactics.ml
Rearranged tactics in VariousTactics into new modules EliminationTactics,
[helm.git] / helm / gTopLevel / negationTactics.ml
1 (* Copyright (C) 2002, HELM Team.
2  *
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  *
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  *
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26
27 let absurd_tac ~term ~status:((proof,goal) as status) =
28   let module C = Cic in
29   let module U = UriManager in
30   let module P = PrimitiveTactics in
31    let _,metasenv,_,_ = proof in
32     let _,context,ty = List.find (function (m,_,_) -> m=goal) metasenv in
33      if ((CicTypeChecker.type_of_aux' metasenv context term) = (C.Sort C.Prop))
34       then P.apply_tac 
35               ~term:(C.Appl [(C.Const ((U.uri_of_string "cic:/Coq/Init/Logic/absurd.con") , [] )) ; term ; ty]) ~status
36       else raise (ProofEngineTypes.Fail "Absurd: Not a Proposition")
37 ;;
38
39
40 let contradiction_tac ~status =
41   let module C = Cic in
42   let module U = UriManager in
43   let module P = PrimitiveTactics in
44   let module T = Tacticals in
45    T.then_
46       ~start: P.intros_tac
47       ~continuation:(
48         T.then_
49            ~start: (EliminationTactics.elim_type_tac 
50                      ~term:(C.MutInd (U.uri_of_string "cic:/Coq/Init/Logic/False.ind") 0 [] ))
51            ~continuation: VariousTactics.assumption_tac)
52     ~status
53 ;;
54
55 (* Questa era in fourierR.ml
56 (* !!!!! fix !!!!!!!!!! *)
57 let contradiction_tac ~status:(proof,goal)=
58         Tacticals.then_
59                 ~start:(PrimitiveTactics.intros_tac ~name:"bo?" ) (*inutile sia questo che quello prima  della chiamata*)
60                 ~continuation:(Tacticals.then_
61                         ~start:(VariousTactics.elim_type_tac ~term:_False)
62                         ~continuation:(assumption_tac))
63         ~status:(proof,goal)
64 ;;
65 *)
66
67