]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/negationTactics.ml
test branch
[helm.git] / helm / ocaml / tactics / 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 (* $Id$ *)
27
28 let absurd_tac ~term =
29  let absurd_tac ~term status =
30   let (proof, goal) = status in
31   let module C = Cic in
32   let module U = UriManager in
33   let module P = PrimitiveTactics in
34   let _,metasenv,_,_ = proof in
35   let _,context,ty = CicUtil.lookup_meta goal metasenv in
36   let ty_term,_ = 
37     CicTypeChecker.type_of_aux' metasenv context term CicUniv.empty_ugraph in
38     if (ty_term = (C.Sort C.Prop)) (* ma questo controllo serve?? *)
39     then ProofEngineTypes.apply_tactic 
40       (P.apply_tac 
41          ~term:(
42            C.Appl [(C.Const (LibraryObjects.absurd_URI (), [] )) ; 
43                    term ; ty])
44       ) 
45       status
46     else raise (ProofEngineTypes.Fail (lazy "Absurd: Not a Proposition"))
47  in
48    ProofEngineTypes.mk_tactic (absurd_tac ~term)
49 ;;
50
51 (* FG: METTERE I NOMI ANCHE QUI? CSC: in teoria si', per la intros*)
52 let contradiction_tac =
53  let contradiction_tac status =
54   let module C = Cic in
55   let module U = UriManager in
56   let module P = PrimitiveTactics in
57   let module T = Tacticals in
58    try
59     ProofEngineTypes.apply_tactic (
60      T.then_
61       ~start:(P.intros_tac ())
62       ~continuation:(
63          T.then_
64            ~start:
65              (EliminationTactics.elim_type_tac 
66                 (C.MutInd (LibraryObjects.false_URI (), 0, [])))
67            ~continuation: VariousTactics.assumption_tac))
68     status
69    with 
70     ProofEngineTypes.Fail msg when Lazy.force msg = "Assumption: No such assumption" -> raise (ProofEngineTypes.Fail (lazy "Contradiction: No such assumption"))
71     (* sarebbe piu' elegante se Assumtion sollevasse un'eccezione tutta sua che questa cattura, magari con l'aiuto di try_tactics *)
72  in 
73   ProofEngineTypes.mk_tactic contradiction_tac
74 ;;
75
76 (* Questa era in fourierR.ml
77 (* !!!!! fix !!!!!!!!!! *)
78 let contradiction_tac (proof,goal)=
79         Tacticals.then_
80                 ~start:(PrimitiveTactics.intros_tac ~name:"bo?" ) (*inutile sia questo che quello prima  della chiamata*)
81                 ~continuation:(Tacticals.then_
82                         ~start:(VariousTactics.elim_type_tac ~term:_False)
83                         ~continuation:(assumption_tac))
84         (proof,goal)
85 ;;
86 *)
87
88