aboutsummaryrefslogtreecommitdiff
path: root/contrib/first-order/rules.ml
blob: 5e2e0a72d6ad5228b82d42072dff65cd1de05ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
(***********************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team    *)
(* <O___,, *        INRIA-Rocquencourt  &  LRI-CNRS-Orsay              *)
(*   \VV/  *************************************************************)
(*    //   *      This file is distributed under the terms of the      *)
(*         *       GNU Lesser General Public License Version 2.1       *)
(***********************************************************************)

(* $Id$ *)

open Util
open Names
open Term
open Tacmach
open Tactics
open Tacticals
open Termops
open Reductionops
open Declarations
open Formula
open Sequent
open Unify

type hptac= Sequent.t -> (Sequent.t -> tactic) -> counter -> tactic

type lhptac= identifier -> hptac
  
let wrap n b seq tacrec metagen gls=
  let nc=pf_hyps gls in
  let rec aux i nc=
    if i<=0 then seq else 
      match nc with
	  []->anomaly "Not the expected number of hyps"
	| (id,_,typ)::q-> (add_left (id,typ) (aux (i-1) q) metagen) in
  let seq1=
    if b then
      (change_right (pf_concl gls) (aux n nc) metagen)
    else
      (aux n nc) in
    tacrec seq1 gls
      
let axiom_tac t seq=
  try exact_no_check (mkVar (find_left t seq)) 
  with Not_found->tclFAIL 0 "No axiom link" 

let and_tac seq tacrec metagen=
  tclTHEN simplest_split (wrap 0 true seq tacrec metagen)

let left_and_tac ind id seq tacrec metagen=
  let n=(construct_nhyps ind).(0) in  
    tclTHENLIST 
      [simplest_elim (mkVar id);
       clear [id]; 
       tclDO n intro;
       wrap n false seq tacrec metagen]

let or_tac seq tacrec metagen=
  any_constructor (Some (tclSOLVE [wrap 0 true seq tacrec metagen]))

let left_or_tac ind id seq tacrec metagen=
  let v=construct_nhyps ind in  
  let f n=
    tclTHENLIST
      [clear [id];
       tclDO n intro;
       wrap n false seq tacrec metagen] in
    tclTHENSV
      (simplest_elim (mkVar id))
      (Array.map f v)

let forall_tac seq tacrec metagen=
  tclTHEN intro (wrap 0 true seq tacrec metagen)

let left_forall_tac i dom atoms id seq tacrec metagen=
  let insts=find_instances i atoms seq in
    if insts=[] then 
      tclTHENS (cut dom) 
	[tclTHENLIST
	   [intro;
	    (fun gls->generalize 
	       [mkApp(mkVar id,[|mkVar (Tacmach.pf_nth_hyp_id gls 1)|])] gls);
	    intro;
	    tclSOLVE [wrap 1 false seq tacrec metagen]]
	;tclIDTAC]
    else
      let tac t=
	tclTHENLIST 
	  [generalize [mkApp(mkVar id,[|t|])];
	   intro; 
	   tclSOLVE [wrap 1 false seq tacrec metagen]] in
	tclFIRST (List.map tac insts)
	  
let arrow_tac seq tacrec metagen=
  tclTHEN intro (wrap 1 true seq tacrec metagen)
    
let exists_tac i dom atoms seq tacrec metagen=
  let insts=find_instances i atoms seq in
    if insts=[] then 
      tclTHENS (cut dom) 
	[tclTHENLIST
	   [intro;
	    (fun gls->
	       split (Rawterm.ImplicitBindings 
			[mkVar (Tacmach.pf_nth_hyp_id gls 1)]) gls);
	       tclSOLVE [wrap 0 false seq tacrec metagen]]
	    ;tclIDTAC]
	 else
	   let tac t=
	     tclTHEN (split (Rawterm.ImplicitBindings [t]))
	       (tclSOLVE [wrap 0 true seq tacrec metagen]) in
	     tclFIRST (List.map tac insts)
	       
let left_exists_tac id seq tacrec metagen=
  tclTHENLIST
    [simplest_elim (mkVar id);
     clear [id];
     tclDO 2 intro;
     (wrap 1 false seq tacrec metagen)]

let ll_arrow_tac a b c id seq tacrec metagen=
  let cc=mkProd(Anonymous,a,(lift 1 b)) in
  let d=mkLambda (Anonymous,b,
		  mkApp ((mkVar id),
			 [|mkLambda (Anonymous,(lift 1 a),(mkRel 2))|])) in
    tclTHENS (cut c)
      [tclTHENLIST
	 [intro;
	  clear [id];
	  wrap 1 false seq tacrec metagen];
       tclTHENS (cut cc) 
         [exact_no_check (mkVar id); 
	  tclTHENLIST 
	    [generalize [d];
	     intro;
	     clear [id];
	     tclSOLVE [wrap 1 true seq tacrec metagen]]]]

let ll_atom_tac a id seq tacrec metagen=
  try 
    tclTHENLIST
      [generalize [mkApp(mkVar id,[|mkVar (find_left a seq)|])];
       clear [id];
       intro;
       wrap 1 false seq tacrec metagen] 
  with Not_found->tclFAIL 0 "No link" 

let ll_false_tac id seq tacrec metagen=
  tclTHEN (clear [id]) (wrap 0 false seq tacrec metagen)

let left_false_tac id=
  simplest_elim (mkVar id)

(*We use this function for and, or, exists*)

let ll_ind_tac ind largs id seq tacrec metagen gl= 
  (try
     let rcs=ind_hyps ind largs in
     let vargs=Array.of_list largs in
	     (* construire le terme  H->B, le generaliser etc *)   
     let myterm i=
       let rc=rcs.(i) in
       let p=List.length rc in
       let cstr=mkApp ((mkConstruct (ind,(i+1))),vargs) in
       let vars=Array.init p (fun j->mkRel (p-j)) in
       let capply=mkApp ((lift p cstr),vars) in
       let head=mkApp ((lift p (mkVar id)),[|capply|]) in
	 Sign.it_mkLambda_or_LetIn head rc in
       let lp=Array.length rcs in
       let newhyps=List.map myterm (interval 0 (lp-1)) in
	 tclTHENLIST 
	   [generalize newhyps;
	    clear [id];
	    tclDO lp intro;
	    wrap lp false seq tacrec metagen]
   with Invalid_argument _ ->tclFAIL 0 "") gl

let ll_forall_tac prod id seq tacrec metagen=
  tclTHENS (cut prod)
    [tclTHENLIST
       [(fun gls->generalize 
	   [mkApp(mkVar id,[|mkVar (Tacmach.pf_nth_hyp_id gls 1)|])] gls);
	clear [id];
	intro;
	tclSOLVE [wrap 1 false seq tacrec metagen]];
       tclSOLVE [wrap 0 true seq tacrec metagen]]