1 (* Copyright (C) 2002, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
26 let absurd_tac ~term =
27 let absurd_tac ~term status =
28 let (proof, goal) = status in
30 let module U = UriManager in
31 let module P = PrimitiveTactics in
32 let _,metasenv,_,_ = proof in
33 let _,context,ty = CicUtil.lookup_meta goal metasenv in
35 CicTypeChecker.type_of_aux' metasenv context term CicUniv.empty_ugraph in
36 if (ty_term = (C.Sort C.Prop)) (* ma questo controllo serve?? *)
37 then ProofEngineTypes.apply_tactic
40 C.Appl [(C.Const (HelmLibraryObjects.Logic.absurd_URI , [] )) ;
44 else raise (ProofEngineTypes.Fail "Absurd: Not a Proposition")
46 ProofEngineTypes.mk_tactic (absurd_tac ~term)
49 let contradiction_tac =
50 let contradiction_tac status =
52 let module U = UriManager in
53 let module P = PrimitiveTactics in
54 let module T = Tacticals in
56 ProofEngineTypes.apply_tactic (
58 ~start:(P.intros_tac ())
62 (EliminationTactics.elim_type_tac
64 (C.MutInd (HelmLibraryObjects.Logic.false_URI, 0, [])))
65 ~continuation: VariousTactics.assumption_tac))
68 (ProofEngineTypes.Fail "Assumption: No such assumption") -> raise (ProofEngineTypes.Fail "Contradiction: No such assumption")
69 (* sarebbe piu' elegante se Assumtion sollevasse un'eccezione tutta sua che questa cattura, magari con l'aiuto di try_tactics *)
71 ProofEngineTypes.mk_tactic contradiction_tac
74 (* Questa era in fourierR.ml
75 (* !!!!! fix !!!!!!!!!! *)
76 let contradiction_tac (proof,goal)=
78 ~start:(PrimitiveTactics.intros_tac ~name:"bo?" ) (*inutile sia questo che quello prima della chiamata*)
79 ~continuation:(Tacticals.then_
80 ~start:(VariousTactics.elim_type_tac ~term:_False)
81 ~continuation:(assumption_tac))