author | quigley |
Wed, 20 Apr 2005 16:03:17 +0200 | |
changeset 15779 | aed221aff642 |
parent 15672 | 32aea1e31eb8 |
child 15797 | a63605582573 |
permissions | -rw-r--r-- |
250 | 1 |
(* Title: Pure/thm.ML |
0 | 2 |
ID: $Id$ |
250 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
4 |
Copyright 1994 University of Cambridge |
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
5 |
|
1160 | 6 |
The core of Isabelle's Meta Logic: certified types and terms, meta |
10486 | 7 |
theorems, meta rules (including lifting and resolution). |
0 | 8 |
*) |
9 |
||
6089 | 10 |
signature BASIC_THM = |
1503 | 11 |
sig |
1160 | 12 |
(*certified types*) |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
13 |
type ctyp |
1238 | 14 |
val rep_ctyp : ctyp -> {sign: Sign.sg, T: typ} |
15 |
val typ_of : ctyp -> typ |
|
16 |
val ctyp_of : Sign.sg -> typ -> ctyp |
|
17 |
val read_ctyp : Sign.sg -> string -> ctyp |
|
1160 | 18 |
|
19 |
(*certified terms*) |
|
20 |
type cterm |
|
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
21 |
exception CTERM of string |
4270 | 22 |
val rep_cterm : cterm -> {sign: Sign.sg, t: term, T: typ, maxidx: int} |
4288 | 23 |
val crep_cterm : cterm -> {sign: Sign.sg, t: term, T: ctyp, maxidx: int} |
9461 | 24 |
val sign_of_cterm : cterm -> Sign.sg |
1238 | 25 |
val term_of : cterm -> term |
26 |
val cterm_of : Sign.sg -> term -> cterm |
|
2671 | 27 |
val ctyp_of_term : cterm -> ctyp |
1238 | 28 |
val read_cterm : Sign.sg -> string * typ -> cterm |
29 |
val cterm_fun : (term -> term) -> (cterm -> cterm) |
|
1703
e22ad43bab5f
moved dest_cimplies to drule.ML; added adjust_maxidx
clasohm
parents:
1659
diff
changeset
|
30 |
val adjust_maxidx : cterm -> cterm |
1238 | 31 |
val read_def_cterm : |
1160 | 32 |
Sign.sg * (indexname -> typ option) * (indexname -> sort option) -> |
33 |
string list -> bool -> string * typ -> cterm * (indexname * typ) list |
|
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
34 |
val read_def_cterms : |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
35 |
Sign.sg * (indexname -> typ option) * (indexname -> sort option) -> |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
36 |
string list -> bool -> (string * typ)list |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
37 |
-> cterm list * (indexname * typ)list |
1160 | 38 |
|
6089 | 39 |
type tag (* = string * string list *) |
1529 | 40 |
|
1160 | 41 |
(*meta theorems*) |
42 |
type thm |
|
11518 | 43 |
val rep_thm : thm -> {sign: Sign.sg, der: bool * Proofterm.proof, maxidx: int, |
2386 | 44 |
shyps: sort list, hyps: term list, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
45 |
tpairs: (term * term) list, prop: term} |
11518 | 46 |
val crep_thm : thm -> {sign: Sign.sg, der: bool * Proofterm.proof, maxidx: int, |
2386 | 47 |
shyps: sort list, hyps: cterm list, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
48 |
tpairs: (cterm * cterm) list, prop: cterm} |
6089 | 49 |
exception THM of string * int * thm list |
50 |
type 'a attribute (* = 'a * thm -> 'a * thm *) |
|
3994 | 51 |
val eq_thm : thm * thm -> bool |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
52 |
val sign_of_thm : thm -> Sign.sg |
12803 | 53 |
val prop_of : thm -> term |
13528 | 54 |
val proof_of : thm -> Proofterm.proof |
4254 | 55 |
val transfer_sg : Sign.sg -> thm -> thm |
3895 | 56 |
val transfer : theory -> thm -> thm |
1238 | 57 |
val tpairs_of : thm -> (term * term) list |
58 |
val prems_of : thm -> term list |
|
59 |
val nprems_of : thm -> int |
|
60 |
val concl_of : thm -> term |
|
61 |
val cprop_of : thm -> cterm |
|
62 |
val extra_shyps : thm -> sort list |
|
63 |
val strip_shyps : thm -> thm |
|
15672 | 64 |
val get_axiom_i : theory -> string -> thm |
3812 | 65 |
val get_axiom : theory -> xstring -> thm |
6368 | 66 |
val def_name : string -> string |
4847 | 67 |
val get_def : theory -> xstring -> thm |
1238 | 68 |
val axioms_of : theory -> (string * thm) list |
1160 | 69 |
|
70 |
(*meta rules*) |
|
1238 | 71 |
val assume : cterm -> thm |
1416 | 72 |
val compress : thm -> thm |
1238 | 73 |
val implies_intr : cterm -> thm -> thm |
74 |
val implies_elim : thm -> thm -> thm |
|
75 |
val forall_intr : cterm -> thm -> thm |
|
76 |
val forall_elim : cterm -> thm -> thm |
|
77 |
val reflexive : cterm -> thm |
|
78 |
val symmetric : thm -> thm |
|
79 |
val transitive : thm -> thm -> thm |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
80 |
val beta_conversion : bool -> cterm -> thm |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
81 |
val eta_conversion : cterm -> thm |
1238 | 82 |
val abstract_rule : string -> cterm -> thm -> thm |
83 |
val combination : thm -> thm -> thm |
|
84 |
val equal_intr : thm -> thm -> thm |
|
85 |
val equal_elim : thm -> thm -> thm |
|
86 |
val implies_intr_hyps : thm -> thm |
|
4270 | 87 |
val flexflex_rule : thm -> thm Seq.seq |
1238 | 88 |
val instantiate : |
1160 | 89 |
(indexname * ctyp) list * (cterm * cterm) list -> thm -> thm |
1238 | 90 |
val trivial : cterm -> thm |
6368 | 91 |
val class_triv : Sign.sg -> class -> thm |
1238 | 92 |
val varifyT : thm -> thm |
12500 | 93 |
val varifyT' : string list -> thm -> thm * (string * indexname) list |
1238 | 94 |
val freezeT : thm -> thm |
95 |
val dest_state : thm * int -> |
|
1160 | 96 |
(term * term) list * term list * term * term |
1238 | 97 |
val lift_rule : (thm * int) -> thm -> thm |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
98 |
val incr_indexes : int -> thm -> thm |
4270 | 99 |
val assumption : int -> thm -> thm Seq.seq |
1238 | 100 |
val eq_assumption : int -> thm -> thm |
2671 | 101 |
val rotate_rule : int -> int -> thm -> thm |
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
102 |
val permute_prems : int -> int -> thm -> thm |
1160 | 103 |
val rename_params_rule: string list * int -> thm -> thm |
1238 | 104 |
val bicompose : bool -> bool * thm * int -> |
4270 | 105 |
int -> thm -> thm Seq.seq |
1238 | 106 |
val biresolution : bool -> (bool * thm) list -> |
4270 | 107 |
int -> thm -> thm Seq.seq |
15672 | 108 |
val invoke_oracle_i : theory -> string -> Sign.sg * Object.T -> thm |
4999 | 109 |
val invoke_oracle : theory -> xstring -> Sign.sg * Object.T -> thm |
250 | 110 |
end; |
0 | 111 |
|
6089 | 112 |
signature THM = |
113 |
sig |
|
114 |
include BASIC_THM |
|
15087 | 115 |
val dest_ctyp : ctyp -> ctyp list |
10767
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
wenzelm
parents:
10486
diff
changeset
|
116 |
val dest_comb : cterm -> cterm * cterm |
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
wenzelm
parents:
10486
diff
changeset
|
117 |
val dest_abs : string option -> cterm -> cterm * cterm |
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
wenzelm
parents:
10486
diff
changeset
|
118 |
val capply : cterm -> cterm -> cterm |
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
wenzelm
parents:
10486
diff
changeset
|
119 |
val cabs : cterm -> cterm -> cterm |
8299 | 120 |
val major_prem_of : thm -> term |
7534 | 121 |
val no_prems : thm -> bool |
6089 | 122 |
val no_attributes : 'a -> 'a * 'b attribute list |
123 |
val apply_attributes : ('a * thm) * 'a attribute list -> ('a * thm) |
|
124 |
val applys_attributes : ('a * thm list) * 'a attribute list -> ('a * thm list) |
|
125 |
val get_name_tags : thm -> string * tag list |
|
126 |
val put_name_tags : string * tag list -> thm -> thm |
|
127 |
val name_of_thm : thm -> string |
|
128 |
val tags_of_thm : thm -> tag list |
|
129 |
val name_thm : string * thm -> thm |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
130 |
val rename_boundvars : term -> term -> thm -> thm |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
131 |
val cterm_match : cterm * cterm -> |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
132 |
(indexname * ctyp) list * (cterm * cterm) list |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
133 |
val cterm_first_order_match : cterm * cterm -> |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
134 |
(indexname * ctyp) list * (cterm * cterm) list |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
135 |
val cterm_incr_indexes : int -> cterm -> cterm |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
136 |
val terms_of_tpairs : (term * term) list -> term list |
6089 | 137 |
end; |
138 |
||
3550 | 139 |
structure Thm: THM = |
0 | 140 |
struct |
250 | 141 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
142 |
(*** Certified terms and types ***) |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
143 |
|
250 | 144 |
(** certified types **) |
145 |
||
146 |
(*certified typs under a signature*) |
|
147 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
148 |
datatype ctyp = Ctyp of {sign_ref: Sign.sg_ref, T: typ}; |
250 | 149 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
150 |
fun rep_ctyp (Ctyp {sign_ref, T}) = {sign = Sign.deref sign_ref, T = T}; |
250 | 151 |
fun typ_of (Ctyp {T, ...}) = T; |
152 |
||
153 |
fun ctyp_of sign T = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
154 |
Ctyp {sign_ref = Sign.self_ref sign, T = Sign.certify_typ sign T}; |
250 | 155 |
|
156 |
fun read_ctyp sign s = |
|
15531 | 157 |
Ctyp {sign_ref = Sign.self_ref sign, T = Sign.read_typ (sign, K NONE) s}; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
158 |
|
15087 | 159 |
fun dest_ctyp (Ctyp {sign_ref, T = Type (s, Ts)}) = |
160 |
map (fn T => Ctyp {sign_ref = sign_ref, T = T}) Ts |
|
161 |
| dest_ctyp ct = [ct]; |
|
162 |
||
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
163 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
164 |
|
250 | 165 |
(** certified terms **) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
166 |
|
250 | 167 |
(*certified terms under a signature, with checked typ and maxidx of Vars*) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
168 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
169 |
datatype cterm = Cterm of {sign_ref: Sign.sg_ref, t: term, T: typ, maxidx: int}; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
170 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
171 |
fun rep_cterm (Cterm {sign_ref, t, T, maxidx}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
172 |
{sign = Sign.deref sign_ref, t = t, T = T, maxidx = maxidx}; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
173 |
|
4288 | 174 |
fun crep_cterm (Cterm {sign_ref, t, T, maxidx}) = |
175 |
{sign = Sign.deref sign_ref, t = t, T = Ctyp {sign_ref = sign_ref, T = T}, |
|
176 |
maxidx = maxidx}; |
|
177 |
||
9461 | 178 |
fun sign_of_cterm (Cterm {sign_ref, ...}) = Sign.deref sign_ref; |
179 |
||
250 | 180 |
fun term_of (Cterm {t, ...}) = t; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
181 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
182 |
fun ctyp_of_term (Cterm {sign_ref, T, ...}) = Ctyp {sign_ref = sign_ref, T = T}; |
2671 | 183 |
|
250 | 184 |
(*create a cterm by checking a "raw" term with respect to a signature*) |
185 |
fun cterm_of sign tm = |
|
14828 | 186 |
let val (t, T, maxidx) = Sign.certify_term (Sign.pp sign) sign tm |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
187 |
in Cterm {sign_ref = Sign.self_ref sign, t = t, T = T, maxidx = maxidx} |
1394
a1d2735f5ade
New function read_cterms is a combination of read_def_cterm and
paulson
parents:
1258
diff
changeset
|
188 |
end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
189 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
190 |
fun cterm_fun f (Cterm {sign_ref, t, ...}) = cterm_of (Sign.deref sign_ref) (f t); |
250 | 191 |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
192 |
|
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
193 |
exception CTERM of string; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
194 |
|
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
195 |
(*Destruct application in cterms*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
196 |
fun dest_comb (Cterm {sign_ref, T, maxidx, t = A $ B}) = |
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
197 |
let val typeA = fastype_of A; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
198 |
val typeB = |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
199 |
case typeA of Type("fun",[S,T]) => S |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
200 |
| _ => error "Function type expected in dest_comb"; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
201 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
202 |
(Cterm {sign_ref=sign_ref, maxidx=maxidx, t=A, T=typeA}, |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
203 |
Cterm {sign_ref=sign_ref, maxidx=maxidx, t=B, T=typeB}) |
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
204 |
end |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
205 |
| dest_comb _ = raise CTERM "dest_comb"; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
206 |
|
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
207 |
(*Destruct abstraction in cterms*) |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
208 |
fun dest_abs a (Cterm {sign_ref, T as Type("fun",[_,S]), maxidx, t=Abs(x,ty,M)}) = |
15570 | 209 |
let val (y,N) = variant_abs (getOpt (a,x),ty,M) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
210 |
in (Cterm {sign_ref = sign_ref, T = ty, maxidx = 0, t = Free(y,ty)}, |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
211 |
Cterm {sign_ref = sign_ref, T = S, maxidx = maxidx, t = N}) |
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
212 |
end |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
213 |
| dest_abs _ _ = raise CTERM "dest_abs"; |
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
214 |
|
2147 | 215 |
(*Makes maxidx precise: it is often too big*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
216 |
fun adjust_maxidx (ct as Cterm {sign_ref, T, t, maxidx, ...}) = |
2147 | 217 |
if maxidx = ~1 then ct |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
218 |
else Cterm {sign_ref = sign_ref, T = T, maxidx = maxidx_of_term t, t = t}; |
1703
e22ad43bab5f
moved dest_cimplies to drule.ML; added adjust_maxidx
clasohm
parents:
1659
diff
changeset
|
219 |
|
1516
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
220 |
(*Form cterm out of a function and an argument*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
221 |
fun capply (Cterm {t=f, sign_ref=sign_ref1, T=Type("fun",[dty,rty]), maxidx=maxidx1}) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
222 |
(Cterm {t=x, sign_ref=sign_ref2, T, maxidx=maxidx2}) = |
8291 | 223 |
if T = dty then |
15087 | 224 |
Cterm{t = if maxidx1 >= 0 andalso maxidx2 >= 0 then Sign.nodup_vars (f $ x) |
225 |
else f $ x, (*no new Vars: no expensive check!*) |
|
226 |
sign_ref=Sign.merge_refs(sign_ref1,sign_ref2), T=rty, |
|
8291 | 227 |
maxidx=Int.max(maxidx1, maxidx2)} |
1516
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
228 |
else raise CTERM "capply: types don't agree" |
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
229 |
| capply _ _ = raise CTERM "capply: first arg is not a function" |
250 | 230 |
|
15264
a881ad2e9edc
Changed function cabs to also allow abstraction over Vars.
berghofe
parents:
15087
diff
changeset
|
231 |
fun cabs (Cterm {t=t1, sign_ref=sign_ref1, T=T1, maxidx=maxidx1}) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
232 |
(Cterm {t=t2, sign_ref=sign_ref2, T=T2, maxidx=maxidx2}) = |
15264
a881ad2e9edc
Changed function cabs to also allow abstraction over Vars.
berghofe
parents:
15087
diff
changeset
|
233 |
Cterm {t=Sign.nodup_vars (lambda t1 t2), sign_ref=Sign.merge_refs(sign_ref1,sign_ref2), |
a881ad2e9edc
Changed function cabs to also allow abstraction over Vars.
berghofe
parents:
15087
diff
changeset
|
234 |
T = T1 --> T2, maxidx=Int.max(maxidx1, maxidx2)} |
a881ad2e9edc
Changed function cabs to also allow abstraction over Vars.
berghofe
parents:
15087
diff
changeset
|
235 |
handle TERM _ => raise CTERM "cabs: first arg is not a variable"; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
236 |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
237 |
(*Matching of cterms*) |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
238 |
fun gen_cterm_match mtch |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
239 |
(Cterm {sign_ref = sign_ref1, maxidx = maxidx1, t = t1, ...}, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
240 |
Cterm {sign_ref = sign_ref2, maxidx = maxidx2, t = t2, ...}) = |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
241 |
let |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
242 |
val sign_ref = Sign.merge_refs (sign_ref1, sign_ref2); |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
243 |
val tsig = Sign.tsig_of (Sign.deref sign_ref); |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
244 |
val (Tinsts, tinsts) = mtch tsig (t1, t2); |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
245 |
val maxidx = Int.max (maxidx1, maxidx2); |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
246 |
val vars = map dest_Var (term_vars t1); |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
247 |
fun mk_cTinsts (ixn, T) = (ixn, Ctyp {sign_ref = sign_ref, T = T}); |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
248 |
fun mk_ctinsts (ixn, t) = |
15570 | 249 |
let val T = typ_subst_TVars Tinsts (valOf (assoc (vars, ixn))) |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
250 |
in |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
251 |
(Cterm {sign_ref = sign_ref, maxidx = maxidx, T = T, t = Var (ixn, T)}, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
252 |
Cterm {sign_ref = sign_ref, maxidx = maxidx, T = T, t = t}) |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
253 |
end; |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
254 |
in (map mk_cTinsts Tinsts, map mk_ctinsts tinsts) end; |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
255 |
|
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
256 |
val cterm_match = gen_cterm_match Pattern.match; |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
257 |
val cterm_first_order_match = gen_cterm_match Pattern.first_order_match; |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
258 |
|
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
259 |
(*Incrementing indexes*) |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
260 |
fun cterm_incr_indexes i (ct as Cterm {sign_ref, maxidx, t, T}) = |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
261 |
if i < 0 then raise CTERM "negative increment" else |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
262 |
if i = 0 then ct else |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
263 |
Cterm {sign_ref = sign_ref, maxidx = maxidx + i, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
264 |
t = Logic.incr_indexes ([], i) t, T = Term.incr_tvar i T}; |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
265 |
|
2509 | 266 |
|
267 |
||
574 | 268 |
(** read cterms **) (*exception ERROR*) |
250 | 269 |
|
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
270 |
(*read terms, infer types, certify terms*) |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
271 |
fun read_def_cterms (sign, types, sorts) used freeze sTs = |
250 | 272 |
let |
8608 | 273 |
val (ts', tye) = Sign.read_def_terms (sign, types, sorts) used freeze sTs; |
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
274 |
val cts = map (cterm_of sign) ts' |
2979 | 275 |
handle TYPE (msg, _, _) => error msg |
2386 | 276 |
| TERM (msg, _) => error msg; |
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
277 |
in (cts, tye) end; |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
278 |
|
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
279 |
(*read term, infer types, certify term*) |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
280 |
fun read_def_cterm args used freeze aT = |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
281 |
let val ([ct],tye) = read_def_cterms args used freeze [aT] |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
282 |
in (ct,tye) end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
283 |
|
15531 | 284 |
fun read_cterm sign = #1 o read_def_cterm (sign, K NONE, K NONE) [] true; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
285 |
|
250 | 286 |
|
6089 | 287 |
(*tags provide additional comment, apart from the axiom/theorem name*) |
288 |
type tag = string * string list; |
|
289 |
||
2509 | 290 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
291 |
(*** Meta theorems ***) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
292 |
|
11518 | 293 |
structure Pt = Proofterm; |
294 |
||
0 | 295 |
datatype thm = Thm of |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
296 |
{sign_ref: Sign.sg_ref, (*mutable reference to signature*) |
11518 | 297 |
der: bool * Pt.proof, (*derivation*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
298 |
maxidx: int, (*maximum index of any Var or TVar*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
299 |
shyps: sort list, (*sort hypotheses*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
300 |
hyps: term list, (*hypotheses*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
301 |
tpairs: (term * term) list, (*flex-flex pairs*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
302 |
prop: term}; (*conclusion*) |
0 | 303 |
|
15570 | 304 |
fun terms_of_tpairs tpairs = List.concat (map (op @ o pairself single) tpairs); |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
305 |
|
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
306 |
fun attach_tpairs tpairs prop = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
307 |
Logic.list_implies (map Logic.mk_equals tpairs, prop); |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
308 |
|
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
309 |
fun rep_thm (Thm {sign_ref, der, maxidx, shyps, hyps, tpairs, prop}) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
310 |
{sign = Sign.deref sign_ref, der = der, maxidx = maxidx, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
311 |
shyps = shyps, hyps = hyps, tpairs = tpairs, prop = prop}; |
0 | 312 |
|
1529 | 313 |
(*Version of rep_thm returning cterms instead of terms*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
314 |
fun crep_thm (Thm {sign_ref, der, maxidx, shyps, hyps, tpairs, prop}) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
315 |
let fun ctermf max t = Cterm{sign_ref=sign_ref, t=t, T=propT, maxidx=max}; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
316 |
in {sign = Sign.deref sign_ref, der = der, maxidx = maxidx, shyps = shyps, |
1529 | 317 |
hyps = map (ctermf ~1) hyps, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
318 |
tpairs = map (pairself (ctermf maxidx)) tpairs, |
1529 | 319 |
prop = ctermf maxidx prop} |
1517 | 320 |
end; |
321 |
||
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
322 |
(*errors involving theorems*) |
0 | 323 |
exception THM of string * int * thm list; |
324 |
||
6089 | 325 |
(*attributes subsume any kind of rules or addXXXs modifiers*) |
326 |
type 'a attribute = 'a * thm -> 'a * thm; |
|
327 |
||
328 |
fun no_attributes x = (x, []); |
|
329 |
fun apply_attributes (x_th, atts) = Library.apply atts x_th; |
|
330 |
fun applys_attributes (x_ths, atts) = foldl_map (Library.apply atts) x_ths; |
|
331 |
||
3994 | 332 |
fun eq_thm (th1, th2) = |
333 |
let |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
334 |
val {sign = sg1, shyps = shyps1, hyps = hyps1, tpairs = tpairs1, prop = prop1, ...} = |
9031 | 335 |
rep_thm th1; |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
336 |
val {sign = sg2, shyps = shyps2, hyps = hyps2, tpairs = tpairs2, prop = prop2, ...} = |
9031 | 337 |
rep_thm th2; |
3994 | 338 |
in |
9031 | 339 |
Sign.joinable (sg1, sg2) andalso |
14791 | 340 |
Sorts.eq_set_sort (shyps1, shyps2) andalso |
3994 | 341 |
aconvs (hyps1, hyps2) andalso |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
342 |
aconvs (terms_of_tpairs tpairs1, terms_of_tpairs tpairs2) andalso |
3994 | 343 |
prop1 aconv prop2 |
344 |
end; |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
345 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
346 |
fun sign_of_thm (Thm {sign_ref, ...}) = Sign.deref sign_ref; |
12803 | 347 |
fun prop_of (Thm {prop, ...}) = prop; |
13528 | 348 |
fun proof_of (Thm {der = (_, proof), ...}) = proof; |
0 | 349 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
350 |
(*merge signatures of two theorems; raise exception if incompatible*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
351 |
fun merge_thm_sgs |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
352 |
(th1 as Thm {sign_ref = sgr1, ...}, th2 as Thm {sign_ref = sgr2, ...}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
353 |
Sign.merge_refs (sgr1, sgr2) handle TERM (msg, _) => raise THM (msg, 0, [th1, th2]); |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
354 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
355 |
(*transfer thm to super theory (non-destructive)*) |
4254 | 356 |
fun transfer_sg sign' thm = |
3895 | 357 |
let |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
358 |
val Thm {sign_ref, der, maxidx, shyps, hyps, tpairs, prop} = thm; |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
359 |
val sign = Sign.deref sign_ref; |
3895 | 360 |
in |
4254 | 361 |
if Sign.eq_sg (sign, sign') then thm |
362 |
else if Sign.subsig (sign, sign') then |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
363 |
Thm {sign_ref = Sign.self_ref sign', der = der, maxidx = maxidx, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
364 |
shyps = shyps, hyps = hyps, tpairs = tpairs, prop = prop} |
3895 | 365 |
else raise THM ("transfer: not a super theory", 0, [thm]) |
366 |
end; |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
367 |
|
6390 | 368 |
val transfer = transfer_sg o Theory.sign_of; |
4254 | 369 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
370 |
(*maps object-rule to tpairs*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
371 |
fun tpairs_of (Thm {tpairs, ...}) = tpairs; |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
372 |
|
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
373 |
(*maps object-rule to premises*) |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
374 |
fun prems_of (Thm {prop, ...}) = |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
375 |
Logic.strip_imp_prems prop; |
0 | 376 |
|
377 |
(*counts premises in a rule*) |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
378 |
fun nprems_of (Thm {prop, ...}) = |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
379 |
Logic.count_prems (prop, 0); |
0 | 380 |
|
8299 | 381 |
fun major_prem_of thm = |
382 |
(case prems_of thm of |
|
11692 | 383 |
prem :: _ => Logic.strip_assums_concl prem |
8299 | 384 |
| [] => raise THM ("major_prem_of: rule with no premises", 0, [thm])); |
385 |
||
7534 | 386 |
fun no_prems thm = nprems_of thm = 0; |
387 |
||
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
388 |
(*maps object-rule to conclusion*) |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
389 |
fun concl_of (Thm {prop, ...}) = Logic.strip_imp_concl prop; |
0 | 390 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
391 |
(*the statement of any thm is a cterm*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
392 |
fun cprop_of (Thm {sign_ref, maxidx, prop, ...}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
393 |
Cterm {sign_ref = sign_ref, maxidx = maxidx, T = propT, t = prop}; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
394 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
395 |
|
0 | 396 |
|
1238 | 397 |
(** sort contexts of theorems **) |
398 |
||
399 |
(* basic utils *) |
|
400 |
||
2163 | 401 |
(*accumulate sorts suppressing duplicates; these are coded low levelly |
1238 | 402 |
to improve efficiency a bit*) |
403 |
||
404 |
fun add_typ_sorts (Type (_, Ts), Ss) = add_typs_sorts (Ts, Ss) |
|
14791 | 405 |
| add_typ_sorts (TFree (_, S), Ss) = Sorts.ins_sort(S,Ss) |
406 |
| add_typ_sorts (TVar (_, S), Ss) = Sorts.ins_sort(S,Ss) |
|
1238 | 407 |
and add_typs_sorts ([], Ss) = Ss |
408 |
| add_typs_sorts (T :: Ts, Ss) = add_typs_sorts (Ts, add_typ_sorts (T, Ss)); |
|
409 |
||
410 |
fun add_term_sorts (Const (_, T), Ss) = add_typ_sorts (T, Ss) |
|
411 |
| add_term_sorts (Free (_, T), Ss) = add_typ_sorts (T, Ss) |
|
412 |
| add_term_sorts (Var (_, T), Ss) = add_typ_sorts (T, Ss) |
|
413 |
| add_term_sorts (Bound _, Ss) = Ss |
|
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
414 |
| add_term_sorts (Abs (_,T,t), Ss) = add_term_sorts (t, add_typ_sorts (T,Ss)) |
1238 | 415 |
| add_term_sorts (t $ u, Ss) = add_term_sorts (t, add_term_sorts (u, Ss)); |
416 |
||
417 |
fun add_terms_sorts ([], Ss) = Ss |
|
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
418 |
| add_terms_sorts (t::ts, Ss) = add_terms_sorts (ts, add_term_sorts (t,Ss)); |
1238 | 419 |
|
8407
d522ad1809e9
Envir now uses Vartab instead of association lists.
berghofe
parents:
8299
diff
changeset
|
420 |
fun env_codT (Envir.Envir {iTs, ...}) = map snd (Vartab.dest iTs); |
1258 | 421 |
|
8407
d522ad1809e9
Envir now uses Vartab instead of association lists.
berghofe
parents:
8299
diff
changeset
|
422 |
fun add_env_sorts (Envir.Envir {iTs, asol, ...}, Ss) = |
d522ad1809e9
Envir now uses Vartab instead of association lists.
berghofe
parents:
8299
diff
changeset
|
423 |
Vartab.foldl (add_term_sorts o swap o apsnd snd) |
d522ad1809e9
Envir now uses Vartab instead of association lists.
berghofe
parents:
8299
diff
changeset
|
424 |
(Vartab.foldl (add_typ_sorts o swap o apsnd snd) (Ss, iTs), asol); |
1258 | 425 |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
426 |
fun add_insts_sorts ((iTs, is), Ss) = |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
427 |
add_typs_sorts (map snd iTs, add_terms_sorts (map snd is, Ss)); |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
428 |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
429 |
fun add_thm_sorts (Thm {hyps, tpairs, prop, ...}, Ss) = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
430 |
add_terms_sorts (hyps @ terms_of_tpairs tpairs, add_term_sorts (prop, Ss)); |
1238 | 431 |
|
432 |
fun add_thms_shyps ([], Ss) = Ss |
|
433 |
| add_thms_shyps (Thm {shyps, ...} :: ths, Ss) = |
|
14791 | 434 |
add_thms_shyps (ths, Sorts.union_sort (shyps, Ss)); |
1238 | 435 |
|
436 |
||
437 |
(*get 'dangling' sort constraints of a thm*) |
|
438 |
fun extra_shyps (th as Thm {shyps, ...}) = |
|
14791 | 439 |
Sorts.rems_sort (shyps, add_thm_sorts (th, [])); |
1238 | 440 |
|
441 |
||
442 |
(* fix_shyps *) |
|
443 |
||
15570 | 444 |
fun all_sorts_nonempty sign_ref = isSome (Sign.universal_witness (Sign.deref sign_ref)); |
7642 | 445 |
|
1238 | 446 |
(*preserve sort contexts of rule premises and substituted types*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
447 |
fun fix_shyps thms Ts (thm as Thm {sign_ref, der, maxidx, hyps, tpairs, prop, ...}) = |
7642 | 448 |
Thm |
449 |
{sign_ref = sign_ref, |
|
450 |
der = der, (*no new derivation, as other rules call this*) |
|
451 |
maxidx = maxidx, |
|
452 |
shyps = |
|
453 |
if all_sorts_nonempty sign_ref then [] |
|
454 |
else add_thm_sorts (thm, add_typs_sorts (Ts, add_thms_shyps (thms, []))), |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
455 |
hyps = hyps, tpairs = tpairs, prop = prop} |
1238 | 456 |
|
457 |
||
7642 | 458 |
(* strip_shyps *) |
1238 | 459 |
|
7642 | 460 |
(*remove extra sorts that are non-empty by virtue of type signature information*) |
461 |
fun strip_shyps (thm as Thm {shyps = [], ...}) = thm |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
462 |
| strip_shyps (thm as Thm {sign_ref, der, maxidx, shyps, hyps, tpairs, prop}) = |
7642 | 463 |
let |
464 |
val sign = Sign.deref sign_ref; |
|
1238 | 465 |
|
7642 | 466 |
val present_sorts = add_thm_sorts (thm, []); |
14791 | 467 |
val extra_shyps = Sorts.rems_sort (shyps, present_sorts); |
7642 | 468 |
val witnessed_shyps = Sign.witness_sorts sign present_sorts extra_shyps; |
469 |
in |
|
470 |
Thm {sign_ref = sign_ref, der = der, maxidx = maxidx, |
|
14791 | 471 |
shyps = Sorts.rems_sort (shyps, map #2 witnessed_shyps), |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
472 |
hyps = hyps, tpairs = tpairs, prop = prop} |
7642 | 473 |
end; |
1238 | 474 |
|
475 |
||
476 |
||
1529 | 477 |
(** Axioms **) |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
478 |
|
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
479 |
(*look up the named axiom in the theory*) |
15672 | 480 |
fun get_axiom_i theory name = |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
481 |
let |
15531 | 482 |
fun get_ax [] = NONE |
1529 | 483 |
| get_ax (thy :: thys) = |
4847 | 484 |
let val {sign, axioms, ...} = Theory.rep_theory thy in |
485 |
(case Symtab.lookup (axioms, name) of |
|
15531 | 486 |
SOME t => |
487 |
SOME (fix_shyps [] [] |
|
4847 | 488 |
(Thm {sign_ref = Sign.self_ref sign, |
11518 | 489 |
der = Pt.infer_derivs' I |
490 |
(false, Pt.axm_proof name t), |
|
4847 | 491 |
maxidx = maxidx_of_term t, |
492 |
shyps = [], |
|
493 |
hyps = [], |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
494 |
tpairs = [], |
4847 | 495 |
prop = t})) |
15531 | 496 |
| NONE => get_ax thys) |
1529 | 497 |
end; |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
498 |
in |
4847 | 499 |
(case get_ax (theory :: Theory.ancestors_of theory) of |
15531 | 500 |
SOME thm => thm |
501 |
| NONE => raise THEORY ("No axiom " ^ quote name, [theory])) |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
502 |
end; |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
503 |
|
15672 | 504 |
fun get_axiom thy = get_axiom_i thy o Sign.intern (Theory.sign_of thy) Theory.axiomK; |
505 |
||
6368 | 506 |
fun def_name name = name ^ "_def"; |
507 |
fun get_def thy = get_axiom thy o def_name; |
|
4847 | 508 |
|
1529 | 509 |
|
776
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
510 |
(*return additional axioms of this theory node*) |
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
511 |
fun axioms_of thy = |
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
512 |
map (fn (s, _) => (s, get_axiom thy s)) |
6390 | 513 |
(Symtab.dest (#axioms (Theory.rep_theory thy))); |
776
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
514 |
|
6089 | 515 |
|
516 |
(* name and tags -- make proof objects more readable *) |
|
517 |
||
12923 | 518 |
fun get_name_tags (Thm {hyps, prop, der = (_, prf), ...}) = |
519 |
Pt.get_name_tags hyps prop prf; |
|
4018 | 520 |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
521 |
fun put_name_tags x (Thm {sign_ref, der = (ora, prf), maxidx, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
522 |
shyps, hyps, tpairs = [], prop}) = Thm {sign_ref = sign_ref, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
523 |
der = (ora, Pt.thm_proof (Sign.deref sign_ref) x hyps prop prf), |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
524 |
maxidx = maxidx, shyps = shyps, hyps = hyps, tpairs = [], prop = prop} |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
525 |
| put_name_tags _ thm = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
526 |
raise THM ("put_name_tags: unsolved flex-flex constraints", 0, [thm]); |
6089 | 527 |
|
528 |
val name_of_thm = #1 o get_name_tags; |
|
529 |
val tags_of_thm = #2 o get_name_tags; |
|
530 |
||
531 |
fun name_thm (name, thm) = put_name_tags (name, tags_of_thm thm) thm; |
|
0 | 532 |
|
533 |
||
1529 | 534 |
(*Compression of theorems -- a separate rule, not integrated with the others, |
535 |
as it could be slow.*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
536 |
fun compress (Thm {sign_ref, der, maxidx, shyps, hyps, tpairs, prop}) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
537 |
Thm {sign_ref = sign_ref, |
2386 | 538 |
der = der, (*No derivation recorded!*) |
539 |
maxidx = maxidx, |
|
540 |
shyps = shyps, |
|
541 |
hyps = map Term.compress_term hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
542 |
tpairs = map (pairself Term.compress_term) tpairs, |
2386 | 543 |
prop = Term.compress_term prop}; |
564 | 544 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
545 |
|
2509 | 546 |
|
1529 | 547 |
(*** Meta rules ***) |
0 | 548 |
|
2147 | 549 |
(*Check that term does not contain same var with different typing/sorting. |
550 |
If this check must be made, recalculate maxidx in hope of preventing its |
|
551 |
recurrence.*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
552 |
fun nodup_vars (thm as Thm{sign_ref, der, maxidx, shyps, hyps, tpairs, prop}) s = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
553 |
let |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
554 |
val prop' = attach_tpairs tpairs prop; |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
555 |
val _ = Sign.nodup_vars prop' |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
556 |
in Thm {sign_ref = sign_ref, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
557 |
der = der, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
558 |
maxidx = maxidx_of_term prop', |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
559 |
shyps = shyps, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
560 |
hyps = hyps, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
561 |
tpairs = tpairs, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
562 |
prop = prop} |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
563 |
end handle TYPE(msg,Ts,ts) => raise TYPE(s^": "^msg,Ts,ts); |
1495
b8b54847c77f
Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents:
1493
diff
changeset
|
564 |
|
8291 | 565 |
|
1220 | 566 |
(** 'primitive' rules **) |
567 |
||
568 |
(*discharge all assumptions t from ts*) |
|
0 | 569 |
val disch = gen_rem (op aconv); |
570 |
||
1220 | 571 |
(*The assumption rule A|-A in a theory*) |
5344 | 572 |
fun assume raw_ct : thm = |
573 |
let val ct as Cterm {sign_ref, t=prop, T, maxidx} = adjust_maxidx raw_ct |
|
250 | 574 |
in if T<>propT then |
575 |
raise THM("assume: assumptions must have type prop", 0, []) |
|
0 | 576 |
else if maxidx <> ~1 then |
250 | 577 |
raise THM("assume: assumptions may not contain scheme variables", |
578 |
maxidx, []) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
579 |
else Thm{sign_ref = sign_ref, |
11518 | 580 |
der = Pt.infer_derivs' I (false, Pt.Hyp prop), |
2386 | 581 |
maxidx = ~1, |
582 |
shyps = add_term_sorts(prop,[]), |
|
583 |
hyps = [prop], |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
584 |
tpairs = [], |
2386 | 585 |
prop = prop} |
0 | 586 |
end; |
587 |
||
1220 | 588 |
(*Implication introduction |
3529 | 589 |
[A] |
590 |
: |
|
591 |
B |
|
1220 | 592 |
------- |
593 |
A ==> B |
|
594 |
*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
595 |
fun implies_intr cA (thB as Thm{sign_ref,der,maxidx,hyps,shyps,tpairs,prop}) : thm = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
596 |
let val Cterm {sign_ref=sign_refA, t=A, T, maxidx=maxidxA} = cA |
0 | 597 |
in if T<>propT then |
250 | 598 |
raise THM("implies_intr: assumptions must have type prop", 0, [thB]) |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
599 |
else |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
600 |
Thm{sign_ref = Sign.merge_refs (sign_ref,sign_refA), |
11518 | 601 |
der = Pt.infer_derivs' (Pt.implies_intr_proof A) der, |
2386 | 602 |
maxidx = Int.max(maxidxA, maxidx), |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
603 |
shyps = add_term_sorts (A, shyps), |
2386 | 604 |
hyps = disch(hyps,A), |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
605 |
tpairs = tpairs, |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
606 |
prop = implies$A$prop} |
0 | 607 |
handle TERM _ => |
608 |
raise THM("implies_intr: incompatible signatures", 0, [thB]) |
|
609 |
end; |
|
610 |
||
1529 | 611 |
|
1220 | 612 |
(*Implication elimination |
613 |
A ==> B A |
|
614 |
------------ |
|
615 |
B |
|
616 |
*) |
|
0 | 617 |
fun implies_elim thAB thA : thm = |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
618 |
let val Thm{maxidx=maxA, der=derA, hyps=hypsA, shyps=shypsA, tpairs=tpairsA, prop=propA, ...} = thA |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
619 |
and Thm{der, maxidx, hyps, shyps, tpairs, prop, ...} = thAB; |
250 | 620 |
fun err(a) = raise THM("implies_elim: "^a, 0, [thAB,thA]) |
0 | 621 |
in case prop of |
250 | 622 |
imp$A$B => |
623 |
if imp=implies andalso A aconv propA |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
624 |
then |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
625 |
Thm{sign_ref= merge_thm_sgs(thAB,thA), |
11612 | 626 |
der = Pt.infer_derivs (curry Pt.%%) der derA, |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
627 |
maxidx = Int.max(maxA,maxidx), |
14791 | 628 |
shyps = Sorts.union_sort (shypsA, shyps), |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
629 |
hyps = union_term(hypsA,hyps), (*dups suppressed*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
630 |
tpairs = tpairsA @ tpairs, |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
631 |
prop = B} |
250 | 632 |
else err("major premise") |
633 |
| _ => err("major premise") |
|
0 | 634 |
end; |
250 | 635 |
|
1220 | 636 |
(*Forall introduction. The Free or Var x must not be free in the hypotheses. |
637 |
A |
|
638 |
----- |
|
639 |
!!x.A |
|
640 |
*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
641 |
fun forall_intr cx (th as Thm{sign_ref,der,maxidx,hyps,tpairs,prop,...}) = |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
642 |
let val x = term_of cx; |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
643 |
fun result a T = fix_shyps [th] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
644 |
(Thm{sign_ref = sign_ref, |
11518 | 645 |
der = Pt.infer_derivs' (Pt.forall_intr_proof x a) der, |
2386 | 646 |
maxidx = maxidx, |
647 |
shyps = [], |
|
648 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
649 |
tpairs = tpairs, |
2386 | 650 |
prop = all(T) $ Abs(a, T, abstract_over (x,prop))}) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
651 |
fun check_occs x ts = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
652 |
if exists (apl(x, Logic.occs)) ts |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
653 |
then raise THM("forall_intr: variable free in assumptions", 0, [th]) |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
654 |
else () |
0 | 655 |
in case x of |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
656 |
Free(a,T) => (check_occs x (hyps @ terms_of_tpairs tpairs); result a T) |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
657 |
| Var((a,_),T) => (check_occs x (terms_of_tpairs tpairs); result a T) |
0 | 658 |
| _ => raise THM("forall_intr: not a variable", 0, [th]) |
659 |
end; |
|
660 |
||
1220 | 661 |
(*Forall elimination |
662 |
!!x.A |
|
663 |
------ |
|
664 |
A[t/x] |
|
665 |
*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
666 |
fun forall_elim ct (th as Thm{sign_ref,der,maxidx,hyps,tpairs,prop,...}) : thm = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
667 |
let val Cterm {sign_ref=sign_reft, t, T, maxidx=maxt} = ct |
0 | 668 |
in case prop of |
2386 | 669 |
Const("all",Type("fun",[Type("fun",[qary,_]),_])) $ A => |
670 |
if T<>qary then |
|
671 |
raise THM("forall_elim: type mismatch", 0, [th]) |
|
672 |
else let val thm = fix_shyps [th] [] |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
673 |
(Thm{sign_ref= Sign.merge_refs(sign_ref,sign_reft), |
15531 | 674 |
der = Pt.infer_derivs' (Pt.% o rpair (SOME t)) der, |
2386 | 675 |
maxidx = Int.max(maxidx, maxt), |
676 |
shyps = [], |
|
677 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
678 |
tpairs = tpairs, |
2386 | 679 |
prop = betapply(A,t)}) |
680 |
in if maxt >= 0 andalso maxidx >= 0 |
|
8291 | 681 |
then nodup_vars thm "forall_elim" |
2386 | 682 |
else thm (*no new Vars: no expensive check!*) |
683 |
end |
|
2147 | 684 |
| _ => raise THM("forall_elim: not quantified", 0, [th]) |
0 | 685 |
end |
686 |
handle TERM _ => |
|
250 | 687 |
raise THM("forall_elim: incompatible signatures", 0, [th]); |
0 | 688 |
|
689 |
||
1220 | 690 |
(* Equality *) |
0 | 691 |
|
692 |
(*The reflexivity rule: maps t to the theorem t==t *) |
|
250 | 693 |
fun reflexive ct = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
694 |
let val Cterm {sign_ref, t, T, maxidx} = ct |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
695 |
in Thm{sign_ref= sign_ref, |
11518 | 696 |
der = Pt.infer_derivs' I (false, Pt.reflexive), |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
697 |
shyps = add_term_sorts (t, []), |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
698 |
hyps = [], |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
699 |
maxidx = maxidx, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
700 |
tpairs = [], |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
701 |
prop = Logic.mk_equals(t,t)} |
0 | 702 |
end; |
703 |
||
704 |
(*The symmetry rule |
|
1220 | 705 |
t==u |
706 |
---- |
|
707 |
u==t |
|
708 |
*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
709 |
fun symmetric (th as Thm{sign_ref,der,maxidx,shyps,hyps,tpairs,prop}) = |
0 | 710 |
case prop of |
11518 | 711 |
(eq as Const("==", Type (_, [T, _]))) $ t $ u => |
1238 | 712 |
(*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
713 |
Thm{sign_ref = sign_ref, |
11518 | 714 |
der = Pt.infer_derivs' Pt.symmetric der, |
2386 | 715 |
maxidx = maxidx, |
716 |
shyps = shyps, |
|
717 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
718 |
tpairs = tpairs, |
2386 | 719 |
prop = eq$u$t} |
0 | 720 |
| _ => raise THM("symmetric", 0, [th]); |
721 |
||
722 |
(*The transitive rule |
|
1220 | 723 |
t1==u u==t2 |
724 |
-------------- |
|
725 |
t1==t2 |
|
726 |
*) |
|
0 | 727 |
fun transitive th1 th2 = |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
728 |
let val Thm{der=der1, maxidx=max1, hyps=hyps1, shyps=shyps1, tpairs=tpairs1, prop=prop1,...} = th1 |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
729 |
and Thm{der=der2, maxidx=max2, hyps=hyps2, shyps=shyps2, tpairs=tpairs2, prop=prop2,...} = th2; |
0 | 730 |
fun err(msg) = raise THM("transitive: "^msg, 0, [th1,th2]) |
731 |
in case (prop1,prop2) of |
|
11518 | 732 |
((eq as Const("==", Type (_, [T, _]))) $ t1 $ u, Const("==",_) $ u' $ t2) => |
1634 | 733 |
if not (u aconv u') then err"middle term" |
734 |
else let val thm = |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
735 |
Thm{sign_ref= merge_thm_sgs(th1,th2), |
11518 | 736 |
der = Pt.infer_derivs (Pt.transitive u T) der1 der2, |
2147 | 737 |
maxidx = Int.max(max1,max2), |
14791 | 738 |
shyps = Sorts.union_sort (shyps1, shyps2), |
2386 | 739 |
hyps = union_term(hyps1,hyps2), |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
740 |
tpairs = tpairs1 @ tpairs2, |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
741 |
prop = eq$t1$t2} |
2139
2c59b204b540
Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents:
2047
diff
changeset
|
742 |
in if max1 >= 0 andalso max2 >= 0 |
8291 | 743 |
then nodup_vars thm "transitive" |
2147 | 744 |
else thm (*no new Vars: no expensive check!*) |
2139
2c59b204b540
Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents:
2047
diff
changeset
|
745 |
end |
0 | 746 |
| _ => err"premises" |
747 |
end; |
|
748 |
||
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
749 |
(*Beta-conversion: maps (%x.t)(u) to the theorem (%x.t)(u) == t[u/x] |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
750 |
Fully beta-reduces the term if full=true |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
751 |
*) |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
752 |
fun beta_conversion full ct = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
753 |
let val Cterm {sign_ref, t, T, maxidx} = ct |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
754 |
in Thm |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
755 |
{sign_ref = sign_ref, |
11518 | 756 |
der = Pt.infer_derivs' I (false, Pt.reflexive), |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
757 |
maxidx = maxidx, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
758 |
shyps = add_term_sorts (t, []), |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
759 |
hyps = [], |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
760 |
tpairs = [], |
10486 | 761 |
prop = Logic.mk_equals (t, if full then Envir.beta_norm t |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
762 |
else case t of |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
763 |
Abs(_, _, bodt) $ u => subst_bound (u, bodt) |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
764 |
| _ => raise THM ("beta_conversion: not a redex", 0, []))} |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
765 |
end; |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
766 |
|
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
767 |
fun eta_conversion ct = |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
768 |
let val Cterm {sign_ref, t, T, maxidx} = ct |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
769 |
in Thm |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
770 |
{sign_ref = sign_ref, |
11518 | 771 |
der = Pt.infer_derivs' I (false, Pt.reflexive), |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
772 |
maxidx = maxidx, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
773 |
shyps = add_term_sorts (t, []), |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
774 |
hyps = [], |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
775 |
tpairs = [], |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
776 |
prop = Logic.mk_equals (t, Pattern.eta_contract t)} |
0 | 777 |
end; |
778 |
||
779 |
(*The abstraction rule. The Free or Var x must not be free in the hypotheses. |
|
780 |
The bound variable will be named "a" (since x will be something like x320) |
|
1220 | 781 |
t == u |
782 |
------------ |
|
783 |
%x.t == %x.u |
|
784 |
*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
785 |
fun abstract_rule a cx (th as Thm{sign_ref,der,maxidx,hyps,shyps,tpairs,prop}) = |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
786 |
let val x = term_of cx; |
250 | 787 |
val (t,u) = Logic.dest_equals prop |
788 |
handle TERM _ => |
|
789 |
raise THM("abstract_rule: premise not an equality", 0, [th]) |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
790 |
fun result T = |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
791 |
Thm{sign_ref = sign_ref, |
11518 | 792 |
der = Pt.infer_derivs' (Pt.abstract_rule x a) der, |
2386 | 793 |
maxidx = maxidx, |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
794 |
shyps = add_typ_sorts (T, shyps), |
2386 | 795 |
hyps = hyps, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
796 |
tpairs = tpairs, |
2386 | 797 |
prop = Logic.mk_equals(Abs(a, T, abstract_over (x,t)), |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
798 |
Abs(a, T, abstract_over (x,u)))} |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
799 |
fun check_occs x ts = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
800 |
if exists (apl(x, Logic.occs)) ts |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
801 |
then raise THM("abstract_rule: variable free in assumptions", 0, [th]) |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
802 |
else () |
0 | 803 |
in case x of |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
804 |
Free(_,T) => (check_occs x (hyps @ terms_of_tpairs tpairs); result T) |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
805 |
| Var(_,T) => (check_occs x (terms_of_tpairs tpairs); result T) |
0 | 806 |
| _ => raise THM("abstract_rule: not a variable", 0, [th]) |
807 |
end; |
|
808 |
||
809 |
(*The combination rule |
|
3529 | 810 |
f == g t == u |
811 |
-------------- |
|
812 |
f(t) == g(u) |
|
1220 | 813 |
*) |
0 | 814 |
fun combination th1 th2 = |
1529 | 815 |
let val Thm{der=der1, maxidx=max1, shyps=shyps1, hyps=hyps1, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
816 |
tpairs=tpairs1, prop=prop1,...} = th1 |
1529 | 817 |
and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
818 |
tpairs=tpairs2, prop=prop2,...} = th2 |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
819 |
fun chktypes fT tT = |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
820 |
(case fT of |
2386 | 821 |
Type("fun",[T1,T2]) => |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
822 |
if T1 <> tT then |
2386 | 823 |
raise THM("combination: types", 0, [th1,th2]) |
824 |
else () |
|
825 |
| _ => raise THM("combination: not function type", 0, |
|
826 |
[th1,th2])) |
|
1495
b8b54847c77f
Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents:
1493
diff
changeset
|
827 |
in case (prop1,prop2) of |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
828 |
(Const ("==", Type ("fun", [fT, _])) $ f $ g, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
829 |
Const ("==", Type ("fun", [tT, _])) $ t $ u) => |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
830 |
let val _ = chktypes fT tT |
2386 | 831 |
val thm = (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
832 |
Thm{sign_ref = merge_thm_sgs(th1,th2), |
11518 | 833 |
der = Pt.infer_derivs |
834 |
(Pt.combination f g t u fT) der1 der2, |
|
2386 | 835 |
maxidx = Int.max(max1,max2), |
14791 | 836 |
shyps = Sorts.union_sort(shyps1,shyps2), |
2386 | 837 |
hyps = union_term(hyps1,hyps2), |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
838 |
tpairs = tpairs1 @ tpairs2, |
2386 | 839 |
prop = Logic.mk_equals(f$t, g$u)} |
2139
2c59b204b540
Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents:
2047
diff
changeset
|
840 |
in if max1 >= 0 andalso max2 >= 0 |
8291 | 841 |
then nodup_vars thm "combination" |
2386 | 842 |
else thm (*no new Vars: no expensive check!*) |
2139
2c59b204b540
Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents:
2047
diff
changeset
|
843 |
end |
0 | 844 |
| _ => raise THM("combination: premises", 0, [th1,th2]) |
845 |
end; |
|
846 |
||
847 |
||
848 |
(* Equality introduction |
|
3529 | 849 |
A ==> B B ==> A |
850 |
---------------- |
|
851 |
A == B |
|
1220 | 852 |
*) |
0 | 853 |
fun equal_intr th1 th2 = |
11518 | 854 |
let val Thm{der=der1, maxidx=max1, shyps=shyps1, hyps=hyps1, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
855 |
tpairs=tpairs1, prop=prop1,...} = th1 |
1529 | 856 |
and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
857 |
tpairs=tpairs2, prop=prop2,...} = th2; |
1529 | 858 |
fun err(msg) = raise THM("equal_intr: "^msg, 0, [th1,th2]) |
859 |
in case (prop1,prop2) of |
|
860 |
(Const("==>",_) $ A $ B, Const("==>",_) $ B' $ A') => |
|
2386 | 861 |
if A aconv A' andalso B aconv B' |
862 |
then |
|
863 |
(*no fix_shyps*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
864 |
Thm{sign_ref = merge_thm_sgs(th1,th2), |
11518 | 865 |
der = Pt.infer_derivs (Pt.equal_intr A B) der1 der2, |
2386 | 866 |
maxidx = Int.max(max1,max2), |
14791 | 867 |
shyps = Sorts.union_sort(shyps1,shyps2), |
2386 | 868 |
hyps = union_term(hyps1,hyps2), |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
869 |
tpairs = tpairs1 @ tpairs2, |
2386 | 870 |
prop = Logic.mk_equals(A,B)} |
871 |
else err"not equal" |
|
1529 | 872 |
| _ => err"premises" |
873 |
end; |
|
874 |
||
875 |
||
876 |
(*The equal propositions rule |
|
3529 | 877 |
A == B A |
1529 | 878 |
--------- |
879 |
B |
|
880 |
*) |
|
881 |
fun equal_elim th1 th2 = |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
882 |
let val Thm{der=der1, maxidx=max1, hyps=hyps1, tpairs=tpairs1, prop=prop1,...} = th1 |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
883 |
and Thm{der=der2, maxidx=max2, hyps=hyps2, tpairs=tpairs2, prop=prop2,...} = th2; |
1529 | 884 |
fun err(msg) = raise THM("equal_elim: "^msg, 0, [th1,th2]) |
885 |
in case prop1 of |
|
886 |
Const("==",_) $ A $ B => |
|
887 |
if not (prop2 aconv A) then err"not equal" else |
|
888 |
fix_shyps [th1, th2] [] |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
889 |
(Thm{sign_ref= merge_thm_sgs(th1,th2), |
11518 | 890 |
der = Pt.infer_derivs (Pt.equal_elim A B) der1 der2, |
2386 | 891 |
maxidx = Int.max(max1,max2), |
892 |
shyps = [], |
|
893 |
hyps = union_term(hyps1,hyps2), |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
894 |
tpairs = tpairs1 @ tpairs2, |
2386 | 895 |
prop = B}) |
1529 | 896 |
| _ => err"major premise" |
897 |
end; |
|
0 | 898 |
|
1220 | 899 |
|
900 |
||
0 | 901 |
(**** Derived rules ****) |
902 |
||
1503 | 903 |
(*Discharge all hypotheses. Need not verify cterms or call fix_shyps. |
0 | 904 |
Repeated hypotheses are discharged only once; fold cannot do this*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
905 |
fun implies_intr_hyps (Thm{sign_ref, der, maxidx, shyps, hyps=A::As, tpairs, prop}) = |
1238 | 906 |
implies_intr_hyps (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
907 |
(Thm{sign_ref = sign_ref, |
11518 | 908 |
der = Pt.infer_derivs' (Pt.implies_intr_proof A) der, |
2386 | 909 |
maxidx = maxidx, |
910 |
shyps = shyps, |
|
1529 | 911 |
hyps = disch(As,A), |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
912 |
tpairs = tpairs, |
2386 | 913 |
prop = implies$A$prop}) |
0 | 914 |
| implies_intr_hyps th = th; |
915 |
||
916 |
(*Smash" unifies the list of term pairs leaving no flex-flex pairs. |
|
250 | 917 |
Instantiates the theorem and deletes trivial tpairs. |
0 | 918 |
Resulting sequence may contain multiple elements if the tpairs are |
919 |
not all flex-flex. *) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
920 |
fun flexflex_rule (th as Thm{sign_ref, der, maxidx, hyps, tpairs, prop, ...}) = |
250 | 921 |
let fun newthm env = |
1529 | 922 |
if Envir.is_empty env then th |
923 |
else |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
924 |
let val ntpairs = map (pairself (Envir.norm_term env)) tpairs; |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
925 |
val newprop = Envir.norm_term env prop; |
250 | 926 |
(*Remove trivial tpairs, of the form t=t*) |
15570 | 927 |
val distpairs = List.filter (not o op aconv) ntpairs |
1220 | 928 |
in fix_shyps [th] (env_codT env) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
929 |
(Thm{sign_ref = sign_ref, |
11518 | 930 |
der = Pt.infer_derivs' (Pt.norm_proof' env) der, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
931 |
maxidx = maxidx_of_terms (newprop :: |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
932 |
terms_of_tpairs distpairs), |
2386 | 933 |
shyps = [], |
934 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
935 |
tpairs = distpairs, |
2386 | 936 |
prop = newprop}) |
250 | 937 |
end; |
4270 | 938 |
in Seq.map newthm |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
939 |
(Unify.smash_unifiers(Sign.deref sign_ref, Envir.empty maxidx, tpairs)) |
0 | 940 |
end; |
941 |
||
942 |
(*Instantiation of Vars |
|
1220 | 943 |
A |
944 |
------------------- |
|
945 |
A[t1/v1,....,tn/vn] |
|
946 |
*) |
|
0 | 947 |
|
6928 | 948 |
local |
949 |
||
0 | 950 |
(*Check that all the terms are Vars and are distinct*) |
951 |
fun instl_ok ts = forall is_Var ts andalso null(findrep ts); |
|
952 |
||
6928 | 953 |
fun prt_typing sg_ref t T = |
954 |
let val sg = Sign.deref sg_ref in |
|
955 |
Pretty.block [Sign.pretty_term sg t, Pretty.str " ::", Pretty.brk 1, Sign.pretty_typ sg T] |
|
956 |
end; |
|
957 |
||
0 | 958 |
(*For instantiate: process pair of cterms, merge theories*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
959 |
fun add_ctpair ((ct,cu), (sign_ref,tpairs)) = |
6928 | 960 |
let |
961 |
val Cterm {sign_ref=sign_reft, t=t, T= T, ...} = ct |
|
962 |
and Cterm {sign_ref=sign_refu, t=u, T= U, ...} = cu; |
|
963 |
val sign_ref_merged = Sign.merge_refs (sign_ref, Sign.merge_refs (sign_reft, sign_refu)); |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
964 |
in |
6928 | 965 |
if T=U then (sign_ref_merged, (t,u)::tpairs) |
966 |
else raise TYPE (Pretty.string_of (Pretty.block [Pretty.str "instantiate: type conflict", |
|
967 |
Pretty.fbrk, prt_typing sign_ref_merged t T, |
|
968 |
Pretty.fbrk, prt_typing sign_ref_merged u U]), [T,U], [t,u]) |
|
0 | 969 |
end; |
970 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
971 |
fun add_ctyp ((v,ctyp), (sign_ref',vTs)) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
972 |
let val Ctyp {T,sign_ref} = ctyp |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
973 |
in (Sign.merge_refs(sign_ref,sign_ref'), (v,T)::vTs) end; |
0 | 974 |
|
6928 | 975 |
in |
976 |
||
0 | 977 |
(*Left-to-right replacements: ctpairs = [...,(vi,ti),...]. |
978 |
Instantiates distinct Vars by terms of same type. |
|
8129
29e239c7b8c2
Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents:
8066
diff
changeset
|
979 |
No longer normalizes the new theorem! *) |
1529 | 980 |
fun instantiate ([], []) th = th |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
981 |
| instantiate (vcTs,ctpairs) (th as Thm{sign_ref,der,maxidx,hyps,shyps,tpairs=dpairs,prop}) = |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
982 |
let val (newsign_ref,tpairs) = foldr add_ctpair (sign_ref,[]) ctpairs; |
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
983 |
val (newsign_ref,vTs) = foldr add_ctyp (newsign_ref,[]) vcTs; |
14828 | 984 |
fun subst t = |
985 |
subst_atomic tpairs (Sign.inst_term_tvars (Sign.deref newsign_ref) vTs t); |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
986 |
val newprop = subst prop; |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
987 |
val newdpairs = map (pairself subst) dpairs; |
1220 | 988 |
val newth = |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
989 |
(Thm{sign_ref = newsign_ref, |
11518 | 990 |
der = Pt.infer_derivs' (Pt.instantiate vTs tpairs) der, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
991 |
maxidx = maxidx_of_terms (newprop :: |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
992 |
terms_of_tpairs newdpairs), |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
993 |
shyps = add_insts_sorts ((vTs, tpairs), shyps), |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
994 |
hyps = hyps, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
995 |
tpairs = newdpairs, |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
996 |
prop = newprop}) |
250 | 997 |
in if not(instl_ok(map #1 tpairs)) |
193 | 998 |
then raise THM("instantiate: variables not distinct", 0, [th]) |
999 |
else if not(null(findrep(map #1 vTs))) |
|
1000 |
then raise THM("instantiate: type variables not distinct", 0, [th]) |
|
8291 | 1001 |
else nodup_vars newth "instantiate" |
0 | 1002 |
end |
6928 | 1003 |
handle TERM _ => raise THM("instantiate: incompatible signatures", 0, [th]) |
1004 |
| TYPE (msg, _, _) => raise THM (msg, 0, [th]); |
|
1005 |
||
1006 |
end; |
|
1007 |
||
0 | 1008 |
|
1009 |
(*The trivial implication A==>A, justified by assume and forall rules. |
|
1010 |
A can contain Vars, not so for assume! *) |
|
250 | 1011 |
fun trivial ct : thm = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1012 |
let val Cterm {sign_ref, t=A, T, maxidx} = ct |
250 | 1013 |
in if T<>propT then |
1014 |
raise THM("trivial: the term must have type prop", 0, []) |
|
1238 | 1015 |
else fix_shyps [] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1016 |
(Thm{sign_ref = sign_ref, |
15531 | 1017 |
der = Pt.infer_derivs' I (false, Pt.AbsP ("H", NONE, Pt.PBound 0)), |
2386 | 1018 |
maxidx = maxidx, |
1019 |
shyps = [], |
|
1020 |
hyps = [], |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1021 |
tpairs = [], |
2386 | 1022 |
prop = implies$A$A}) |
0 | 1023 |
end; |
1024 |
||
1503 | 1025 |
(*Axiom-scheme reflecting signature contents: "OFCLASS(?'a::c, c_class)" *) |
6368 | 1026 |
fun class_triv sign c = |
1027 |
let val Cterm {sign_ref, t, maxidx, ...} = |
|
1028 |
cterm_of sign (Logic.mk_inclass (TVar (("'a", 0), [c]), c)) |
|
1029 |
handle TERM (msg, _) => raise THM ("class_triv: " ^ msg, 0, []); |
|
399
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1030 |
in |
1238 | 1031 |
fix_shyps [] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1032 |
(Thm {sign_ref = sign_ref, |
11518 | 1033 |
der = Pt.infer_derivs' I |
15531 | 1034 |
(false, Pt.PAxm ("ProtoPure.class_triv:" ^ c, t, SOME [])), |
2386 | 1035 |
maxidx = maxidx, |
1036 |
shyps = [], |
|
1037 |
hyps = [], |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1038 |
tpairs = [], |
2386 | 1039 |
prop = t}) |
399
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1040 |
end; |
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1041 |
|
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1042 |
|
6786 | 1043 |
(* Replace all TFrees not fixed or in the hyps by new TVars *) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1044 |
fun varifyT' fixed (Thm{sign_ref,der,maxidx,shyps,hyps,tpairs,prop}) = |
12500 | 1045 |
let |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
1046 |
val tfrees = foldr add_term_tfree_names fixed hyps; |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1047 |
val prop1 = attach_tpairs tpairs prop; |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1048 |
val (prop2, al) = Type.varify (prop1, tfrees); |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1049 |
val (ts, prop3) = Logic.strip_prems (length tpairs, [], prop2) |
1634 | 1050 |
in let val thm = (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1051 |
Thm{sign_ref = sign_ref, |
11518 | 1052 |
der = Pt.infer_derivs' (Pt.varify_proof prop tfrees) der, |
2386 | 1053 |
maxidx = Int.max(0,maxidx), |
1054 |
shyps = shyps, |
|
1055 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1056 |
tpairs = rev (map Logic.dest_equals ts), |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1057 |
prop = prop3} |
12500 | 1058 |
in (nodup_vars thm "varifyT", al) end |
8291 | 1059 |
(* this nodup_vars check can be removed if thms are guaranteed not to contain |
1060 |
duplicate TVars with different sorts *) |
|
0 | 1061 |
end; |
1062 |
||
12500 | 1063 |
val varifyT = #1 o varifyT' []; |
6786 | 1064 |
|
0 | 1065 |
(* Replace all TVars by new TFrees *) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1066 |
fun freezeT(Thm{sign_ref,der,maxidx,shyps,hyps,tpairs,prop}) = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1067 |
let |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1068 |
val prop1 = attach_tpairs tpairs prop; |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1069 |
val (prop2, _) = Type.freeze_thaw prop1; |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1070 |
val (ts, prop3) = Logic.strip_prems (length tpairs, [], prop2) |
1238 | 1071 |
in (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1072 |
Thm{sign_ref = sign_ref, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1073 |
der = Pt.infer_derivs' (Pt.freezeT prop1) der, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1074 |
maxidx = maxidx_of_term prop2, |
2386 | 1075 |
shyps = shyps, |
1076 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1077 |
tpairs = rev (map Logic.dest_equals ts), |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1078 |
prop = prop3} |
1220 | 1079 |
end; |
0 | 1080 |
|
1081 |
||
1082 |
(*** Inference rules for tactics ***) |
|
1083 |
||
1084 |
(*Destruct proof state into constraints, other goals, goal(i), rest *) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1085 |
fun dest_state (state as Thm{prop,tpairs,...}, i) = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1086 |
(case Logic.strip_prems(i, [], prop) of |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1087 |
(B::rBs, C) => (tpairs, rev rBs, B, C) |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1088 |
| _ => raise THM("dest_state", i, [state])) |
0 | 1089 |
handle TERM _ => raise THM("dest_state", i, [state]); |
1090 |
||
309 | 1091 |
(*Increment variables and parameters of orule as required for |
0 | 1092 |
resolution with goal i of state. *) |
1093 |
fun lift_rule (state, i) orule = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1094 |
let val Thm{shyps=sshyps, prop=sprop, maxidx=smax, sign_ref=ssign_ref,...} = state |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1095 |
val (Bi::_, _) = Logic.strip_prems(i, [], sprop) |
1529 | 1096 |
handle TERM _ => raise THM("lift_rule", i, [orule,state]) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1097 |
val ct_Bi = Cterm {sign_ref=ssign_ref, maxidx=smax, T=propT, t=Bi} |
1529 | 1098 |
val (lift_abs,lift_all) = Logic.lift_fns(Bi,smax+1) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1099 |
val (Thm{sign_ref, der, maxidx,shyps,hyps,tpairs,prop}) = orule |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1100 |
val (As, B) = Logic.strip_horn prop |
1238 | 1101 |
in (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1102 |
Thm{sign_ref = merge_thm_sgs(state,orule), |
11518 | 1103 |
der = Pt.infer_derivs' (Pt.lift_proof Bi (smax+1) prop) der, |
2386 | 1104 |
maxidx = maxidx+smax+1, |
14791 | 1105 |
shyps = Sorts.union_sort(sshyps,shyps), |
1106 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1107 |
tpairs = map (pairself lift_abs) tpairs, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1108 |
prop = Logic.list_implies (map lift_all As, lift_all B)} |
0 | 1109 |
end; |
1110 |
||
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1111 |
fun incr_indexes i (thm as Thm {sign_ref, der, maxidx, shyps, hyps, tpairs, prop}) = |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1112 |
if i < 0 then raise THM ("negative increment", 0, [thm]) else |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1113 |
if i = 0 then thm else |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1114 |
Thm {sign_ref = sign_ref, |
11518 | 1115 |
der = Pt.infer_derivs' (Pt.map_proof_terms |
1116 |
(Logic.incr_indexes ([], i)) (incr_tvar i)) der, |
|
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1117 |
maxidx = maxidx + i, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1118 |
shyps = shyps, |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1119 |
hyps = hyps, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1120 |
tpairs = map (pairself (Logic.incr_indexes ([], i))) tpairs, |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1121 |
prop = Logic.incr_indexes ([], i) prop}; |
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1122 |
|
0 | 1123 |
(*Solve subgoal Bi of proof state B1...Bn/C by assumption. *) |
1124 |
fun assumption i state = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1125 |
let val Thm{sign_ref,der,maxidx,hyps,prop,...} = state; |
0 | 1126 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
11518 | 1127 |
fun newth n (env as Envir.Envir{maxidx, ...}, tpairs) = |
1220 | 1128 |
fix_shyps [state] (env_codT env) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1129 |
(Thm{sign_ref = sign_ref, |
11518 | 1130 |
der = Pt.infer_derivs' |
1131 |
((if Envir.is_empty env then I else (Pt.norm_proof' env)) o |
|
1132 |
Pt.assumption_proof Bs Bi n) der, |
|
2386 | 1133 |
maxidx = maxidx, |
1134 |
shyps = [], |
|
1135 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1136 |
tpairs = if Envir.is_empty env then tpairs else |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1137 |
map (pairself (Envir.norm_term env)) tpairs, |
2386 | 1138 |
prop = |
1139 |
if Envir.is_empty env then (*avoid wasted normalizations*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1140 |
Logic.list_implies (Bs, C) |
2386 | 1141 |
else (*normalize the new rule fully*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1142 |
Envir.norm_term env (Logic.list_implies (Bs, C))}); |
11518 | 1143 |
fun addprfs [] _ = Seq.empty |
1144 |
| addprfs ((t,u)::apairs) n = Seq.make (fn()=> Seq.pull |
|
1145 |
(Seq.mapp (newth n) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1146 |
(Unify.unifiers(Sign.deref sign_ref,Envir.empty maxidx, (t,u)::tpairs)) |
11518 | 1147 |
(addprfs apairs (n+1)))) |
15454 | 1148 |
in addprfs (Logic.assum_pairs (~1,Bi)) 1 end; |
0 | 1149 |
|
250 | 1150 |
(*Solve subgoal Bi of proof state B1...Bn/C by assumption. |
0 | 1151 |
Checks if Bi's conclusion is alpha-convertible to one of its assumptions*) |
1152 |
fun eq_assumption i state = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1153 |
let val Thm{sign_ref,der,maxidx,hyps,prop,...} = state; |
0 | 1154 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
15454 | 1155 |
in (case find_index (op aconv) (Logic.assum_pairs (~1,Bi)) of |
11518 | 1156 |
(~1) => raise THM("eq_assumption", 0, [state]) |
1157 |
| n => fix_shyps [state] [] |
|
1158 |
(Thm{sign_ref = sign_ref, |
|
1159 |
der = Pt.infer_derivs' |
|
1160 |
(Pt.assumption_proof Bs Bi (n+1)) der, |
|
1161 |
maxidx = maxidx, |
|
1162 |
shyps = [], |
|
1163 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1164 |
tpairs = tpairs, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1165 |
prop = Logic.list_implies (Bs, C)})) |
0 | 1166 |
end; |
1167 |
||
1168 |
||
2671 | 1169 |
(*For rotate_tac: fast rotation of assumptions of subgoal i*) |
1170 |
fun rotate_rule k i state = |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1171 |
let val Thm{sign_ref,der,maxidx,hyps,prop,shyps,...} = state; |
2671 | 1172 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
8066
54d37e491ac2
SOUNDNESS BUG FIX for rotate_rule. The original code did not expect
paulson
parents:
7921
diff
changeset
|
1173 |
val params = Term.strip_all_vars Bi |
54d37e491ac2
SOUNDNESS BUG FIX for rotate_rule. The original code did not expect
paulson
parents:
7921
diff
changeset
|
1174 |
and rest = Term.strip_all_body Bi |
54d37e491ac2
SOUNDNESS BUG FIX for rotate_rule. The original code did not expect
paulson
parents:
7921
diff
changeset
|
1175 |
val asms = Logic.strip_imp_prems rest |
54d37e491ac2
SOUNDNESS BUG FIX for rotate_rule. The original code did not expect
paulson
parents:
7921
diff
changeset
|
1176 |
and concl = Logic.strip_imp_concl rest |
2671 | 1177 |
val n = length asms |
11563 | 1178 |
val m = if k<0 then n+k else k |
1179 |
val Bi' = if 0=m orelse m=n then Bi |
|
2671 | 1180 |
else if 0<m andalso m<n |
13629 | 1181 |
then let val (ps,qs) = splitAt(m,asms) |
1182 |
in list_all(params, Logic.list_implies(qs @ ps, concl)) |
|
1183 |
end |
|
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1184 |
else raise THM("rotate_rule", k, [state]) |
7264 | 1185 |
in (*no fix_shyps*) |
1186 |
Thm{sign_ref = sign_ref, |
|
11563 | 1187 |
der = Pt.infer_derivs' (Pt.rotate_proof Bs Bi m) der, |
2671 | 1188 |
maxidx = maxidx, |
1189 |
shyps = shyps, |
|
1190 |
hyps = hyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1191 |
tpairs = tpairs, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1192 |
prop = Logic.list_implies (Bs @ [Bi'], C)} |
2671 | 1193 |
end; |
1194 |
||
1195 |
||
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1196 |
(*Rotates a rule's premises to the left by k, leaving the first j premises |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1197 |
unchanged. Does nothing if k=0 or if k equals n-j, where n is the |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1198 |
number of premises. Useful with etac and underlies tactic/defer_tac*) |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1199 |
fun permute_prems j k rl = |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1200 |
let val Thm{sign_ref,der,maxidx,hyps,tpairs,prop,shyps} = rl |
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1201 |
val prems = Logic.strip_imp_prems prop |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1202 |
and concl = Logic.strip_imp_concl prop |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1203 |
val moved_prems = List.drop(prems, j) |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1204 |
and fixed_prems = List.take(prems, j) |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1205 |
handle Subscript => raise THM("permute_prems:j", j, [rl]) |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1206 |
val n_j = length moved_prems |
11563 | 1207 |
val m = if k<0 then n_j + k else k |
1208 |
val prop' = if 0 = m orelse m = n_j then prop |
|
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1209 |
else if 0<m andalso m<n_j |
13629 | 1210 |
then let val (ps,qs) = splitAt(m,moved_prems) |
1211 |
in Logic.list_implies(fixed_prems @ qs @ ps, concl) end |
|
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1212 |
else raise THM("permute_prems:k", k, [rl]) |
7264 | 1213 |
in (*no fix_shyps*) |
1214 |
Thm{sign_ref = sign_ref, |
|
11563 | 1215 |
der = Pt.infer_derivs' (Pt.permute_prems_prf prems j m) der, |
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1216 |
maxidx = maxidx, |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1217 |
shyps = shyps, |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1218 |
hyps = hyps, |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1219 |
tpairs = tpairs, |
11563 | 1220 |
prop = prop'} |
7248
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1221 |
end; |
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1222 |
|
322151fe6f02
new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents:
7070
diff
changeset
|
1223 |
|
0 | 1224 |
(** User renaming of parameters in a subgoal **) |
1225 |
||
1226 |
(*Calls error rather than raising an exception because it is intended |
|
1227 |
for top-level use -- exception handling would not make sense here. |
|
1228 |
The names in cs, if distinct, are used for the innermost parameters; |
|
1229 |
preceding parameters may be renamed to make all params distinct.*) |
|
1230 |
fun rename_params_rule (cs, i) state = |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1231 |
let val Thm{sign_ref,der,maxidx,hyps,shyps,...} = state |
0 | 1232 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
1233 |
val iparams = map #1 (Logic.strip_params Bi) |
|
1234 |
val short = length iparams - length cs |
|
250 | 1235 |
val newnames = |
1236 |
if short<0 then error"More names than abstractions!" |
|
15570 | 1237 |
else variantlist(Library.take (short,iparams), cs) @ cs |
3037
99ed078e6ae7
rename_params_rule used to check if the new name clashed with a free name in
nipkow
parents:
3012
diff
changeset
|
1238 |
val freenames = map (#1 o dest_Free) (term_frees Bi) |
0 | 1239 |
val newBi = Logic.list_rename_params (newnames, Bi) |
250 | 1240 |
in |
0 | 1241 |
case findrep cs of |
3565
c64410e701fb
Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents:
3558
diff
changeset
|
1242 |
c::_ => (warning ("Can't rename. Bound variables not distinct: " ^ c); |
c64410e701fb
Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents:
3558
diff
changeset
|
1243 |
state) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1569
diff
changeset
|
1244 |
| [] => (case cs inter_string freenames of |
3565
c64410e701fb
Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents:
3558
diff
changeset
|
1245 |
a::_ => (warning ("Can't rename. Bound/Free variable clash: " ^ a); |
c64410e701fb
Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents:
3558
diff
changeset
|
1246 |
state) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1247 |
| [] => Thm{sign_ref = sign_ref, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1248 |
der = der, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1249 |
maxidx = maxidx, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1250 |
shyps = shyps, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1251 |
hyps = hyps, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1252 |
tpairs = tpairs, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1253 |
prop = Logic.list_implies (Bs @ [newBi], C)}) |
0 | 1254 |
end; |
1255 |
||
12982 | 1256 |
|
0 | 1257 |
(*** Preservation of bound variable names ***) |
1258 |
||
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1259 |
fun rename_boundvars pat obj (thm as Thm {sign_ref, der, maxidx, hyps, shyps, tpairs, prop}) = |
12982 | 1260 |
(case Term.rename_abs pat obj prop of |
15531 | 1261 |
NONE => thm |
1262 |
| SOME prop' => Thm |
|
12982 | 1263 |
{sign_ref = sign_ref, |
1264 |
der = der, |
|
1265 |
maxidx = maxidx, |
|
1266 |
hyps = hyps, |
|
1267 |
shyps = shyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1268 |
tpairs = tpairs, |
12982 | 1269 |
prop = prop'}); |
10416
5b33e732e459
- Moved rewriting functions to meta_simplifier.ML
berghofe
parents:
10348
diff
changeset
|
1270 |
|
0 | 1271 |
|
250 | 1272 |
(* strip_apply f A(,B) strips off all assumptions/parameters from A |
0 | 1273 |
introduced by lifting over B, and applies f to remaining part of A*) |
1274 |
fun strip_apply f = |
|
1275 |
let fun strip(Const("==>",_)$ A1 $ B1, |
|
250 | 1276 |
Const("==>",_)$ _ $ B2) = implies $ A1 $ strip(B1,B2) |
1277 |
| strip((c as Const("all",_)) $ Abs(a,T,t1), |
|
1278 |
Const("all",_) $ Abs(_,_,t2)) = c$Abs(a,T,strip(t1,t2)) |
|
1279 |
| strip(A,_) = f A |
|
0 | 1280 |
in strip end; |
1281 |
||
1282 |
(*Use the alist to rename all bound variables and some unknowns in a term |
|
1283 |
dpairs = current disagreement pairs; tpairs = permanent ones (flexflex); |
|
1284 |
Preserves unknowns in tpairs and on lhs of dpairs. *) |
|
1285 |
fun rename_bvs([],_,_,_) = I |
|
1286 |
| rename_bvs(al,dpairs,tpairs,B) = |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
1287 |
let val vars = foldr add_term_vars [] |
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
1288 |
(map fst dpairs @ map fst tpairs @ map snd tpairs) |
250 | 1289 |
(*unknowns appearing elsewhere be preserved!*) |
1290 |
val vids = map (#1 o #1 o dest_Var) vars; |
|
1291 |
fun rename(t as Var((x,i),T)) = |
|
1292 |
(case assoc(al,x) of |
|
15531 | 1293 |
SOME(y) => if x mem_string vids orelse y mem_string vids then t |
250 | 1294 |
else Var((y,i),T) |
15531 | 1295 |
| NONE=> t) |
0 | 1296 |
| rename(Abs(x,T,t)) = |
15570 | 1297 |
Abs(getOpt(assoc_string(al,x),x), T, rename t) |
0 | 1298 |
| rename(f$t) = rename f $ rename t |
1299 |
| rename(t) = t; |
|
250 | 1300 |
fun strip_ren Ai = strip_apply rename (Ai,B) |
0 | 1301 |
in strip_ren end; |
1302 |
||
1303 |
(*Function to rename bounds/unknowns in the argument, lifted over B*) |
|
1304 |
fun rename_bvars(dpairs, tpairs, B) = |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
1305 |
rename_bvs(foldr Term.match_bvars [] dpairs, dpairs, tpairs, B); |
0 | 1306 |
|
1307 |
||
1308 |
(*** RESOLUTION ***) |
|
1309 |
||
721
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1310 |
(** Lifting optimizations **) |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1311 |
|
0 | 1312 |
(*strip off pairs of assumptions/parameters in parallel -- they are |
1313 |
identical because of lifting*) |
|
250 | 1314 |
fun strip_assums2 (Const("==>", _) $ _ $ B1, |
1315 |
Const("==>", _) $ _ $ B2) = strip_assums2 (B1,B2) |
|
0 | 1316 |
| strip_assums2 (Const("all",_)$Abs(a,T,t1), |
250 | 1317 |
Const("all",_)$Abs(_,_,t2)) = |
0 | 1318 |
let val (B1,B2) = strip_assums2 (t1,t2) |
1319 |
in (Abs(a,T,B1), Abs(a,T,B2)) end |
|
1320 |
| strip_assums2 BB = BB; |
|
1321 |
||
1322 |
||
721
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1323 |
(*Faster normalization: skip assumptions that were lifted over*) |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1324 |
fun norm_term_skip env 0 t = Envir.norm_term env t |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1325 |
| norm_term_skip env n (Const("all",_)$Abs(a,T,t)) = |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1326 |
let val Envir.Envir{iTs, ...} = env |
8407
d522ad1809e9
Envir now uses Vartab instead of association lists.
berghofe
parents:
8299
diff
changeset
|
1327 |
val T' = typ_subst_TVars_Vartab iTs T |
1238 | 1328 |
(*Must instantiate types of parameters because they are flattened; |
721
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1329 |
this could be a NEW parameter*) |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1330 |
in all T' $ Abs(a, T', norm_term_skip env n t) end |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1331 |
| norm_term_skip env n (Const("==>", _) $ A $ B) = |
1238 | 1332 |
implies $ A $ norm_term_skip env (n-1) B |
721
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1333 |
| norm_term_skip env n t = error"norm_term_skip: too few assumptions??"; |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1334 |
|
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1335 |
|
0 | 1336 |
(*Composition of object rule r=(A1...Am/B) with proof state s=(B1...Bn/C) |
250 | 1337 |
Unifies B with Bi, replacing subgoal i (1 <= i <= n) |
0 | 1338 |
If match then forbid instantiations in proof state |
1339 |
If lifted then shorten the dpair using strip_assums2. |
|
1340 |
If eres_flg then simultaneously proves A1 by assumption. |
|
250 | 1341 |
nsubgoal is the number of new subgoals (written m above). |
0 | 1342 |
Curried so that resolution calls dest_state only once. |
1343 |
*) |
|
4270 | 1344 |
local exception COMPOSE |
0 | 1345 |
in |
250 | 1346 |
fun bicompose_aux match (state, (stpairs, Bs, Bi, C), lifted) |
0 | 1347 |
(eres_flg, orule, nsubgoal) = |
1529 | 1348 |
let val Thm{der=sder, maxidx=smax, shyps=sshyps, hyps=shyps, ...} = state |
1349 |
and Thm{der=rder, maxidx=rmax, shyps=rshyps, hyps=rhyps, |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1350 |
tpairs=rtpairs, prop=rprop,...} = orule |
1529 | 1351 |
(*How many hyps to skip over during normalization*) |
1238 | 1352 |
and nlift = Logic.count_prems(strip_all_body Bi, |
1353 |
if eres_flg then ~1 else 0) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1354 |
val sign_ref = merge_thm_sgs(state,orule); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1355 |
val sign = Sign.deref sign_ref; |
0 | 1356 |
(** Add new theorem with prop = '[| Bs; As |] ==> C' to thq **) |
11518 | 1357 |
fun addth A (As, oldAs, rder', n) ((env as Envir.Envir {maxidx, ...}, tpairs), thq) = |
250 | 1358 |
let val normt = Envir.norm_term env; |
1359 |
(*perform minimal copying here by examining env*) |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1360 |
val (ntpairs, normp) = |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1361 |
if Envir.is_empty env then (tpairs, (Bs @ As, C)) |
250 | 1362 |
else |
1363 |
let val ntps = map (pairself normt) tpairs |
|
2147 | 1364 |
in if Envir.above (smax, env) then |
1238 | 1365 |
(*no assignments in state; normalize the rule only*) |
1366 |
if lifted |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1367 |
then (ntps, (Bs @ map (norm_term_skip env nlift) As, C)) |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1368 |
else (ntps, (Bs @ map normt As, C)) |
1529 | 1369 |
else if match then raise COMPOSE |
250 | 1370 |
else (*normalize the new rule fully*) |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1371 |
(ntps, (map normt (Bs @ As), normt C)) |
250 | 1372 |
end |
1258 | 1373 |
val th = (*tuned fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1374 |
Thm{sign_ref = sign_ref, |
11518 | 1375 |
der = Pt.infer_derivs |
1376 |
((if Envir.is_empty env then I |
|
1377 |
else if Envir.above (smax, env) then |
|
1378 |
(fn f => fn der => f (Pt.norm_proof' env der)) |
|
1379 |
else |
|
1380 |
curry op oo (Pt.norm_proof' env)) |
|
1381 |
(Pt.bicompose_proof Bs oldAs As A n)) rder' sder, |
|
2386 | 1382 |
maxidx = maxidx, |
14791 | 1383 |
shyps = add_env_sorts (env, Sorts.union_sort(rshyps,sshyps)), |
2386 | 1384 |
hyps = union_term(rhyps,shyps), |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1385 |
tpairs = ntpairs, |
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1386 |
prop = Logic.list_implies normp} |
11518 | 1387 |
in Seq.cons(th, thq) end handle COMPOSE => thq; |
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1388 |
val (rAs,B) = Logic.strip_prems(nsubgoal, [], rprop) |
0 | 1389 |
handle TERM _ => raise THM("bicompose: rule", 0, [orule,state]); |
1390 |
(*Modify assumptions, deleting n-th if n>0 for e-resolution*) |
|
1391 |
fun newAs(As0, n, dpairs, tpairs) = |
|
11518 | 1392 |
let val (As1, rder') = |
1393 |
if !Logic.auto_rename orelse not lifted then (As0, rder) |
|
1394 |
else (map (rename_bvars(dpairs,tpairs,B)) As0, |
|
1395 |
Pt.infer_derivs' (Pt.map_proof_terms |
|
1396 |
(rename_bvars (dpairs, tpairs, Bound 0)) I) rder); |
|
1397 |
in (map (Logic.flatten_params n) As1, As1, rder', n) |
|
250 | 1398 |
handle TERM _ => |
1399 |
raise THM("bicompose: 1st premise", 0, [orule]) |
|
0 | 1400 |
end; |
2147 | 1401 |
val env = Envir.empty(Int.max(rmax,smax)); |
0 | 1402 |
val BBi = if lifted then strip_assums2(B,Bi) else (B,Bi); |
1403 |
val dpairs = BBi :: (rtpairs@stpairs); |
|
1404 |
(*elim-resolution: try each assumption in turn. Initially n=1*) |
|
11518 | 1405 |
fun tryasms (_, _, _, []) = Seq.empty |
1406 |
| tryasms (A, As, n, (t,u)::apairs) = |
|
4270 | 1407 |
(case Seq.pull(Unify.unifiers(sign, env, (t,u)::dpairs)) of |
15531 | 1408 |
NONE => tryasms (A, As, n+1, apairs) |
1409 |
| cell as SOME((_,tpairs),_) => |
|
15454 | 1410 |
Seq.it_right (addth A (newAs(As, n, [BBi,(u,t)], tpairs))) |
1411 |
(Seq.make(fn()=> cell), |
|
1412 |
Seq.make(fn()=> Seq.pull (tryasms(A, As, n+1, apairs))))) |
|
0 | 1413 |
fun eres [] = raise THM("bicompose: no premises", 0, [orule,state]) |
15531 | 1414 |
| eres (A1::As) = tryasms(SOME A1, As, 1, Logic.assum_pairs(nlift+1,A1)) |
0 | 1415 |
(*ordinary resolution*) |
15531 | 1416 |
fun res(NONE) = Seq.empty |
1417 |
| res(cell as SOME((_,tpairs),_)) = |
|
1418 |
Seq.it_right (addth NONE (newAs(rev rAs, 0, [BBi], tpairs))) |
|
4270 | 1419 |
(Seq.make (fn()=> cell), Seq.empty) |
0 | 1420 |
in if eres_flg then eres(rev rAs) |
4270 | 1421 |
else res(Seq.pull(Unify.unifiers(sign, env, dpairs))) |
0 | 1422 |
end; |
7528 | 1423 |
end; |
0 | 1424 |
|
1425 |
||
1426 |
fun bicompose match arg i state = |
|
1427 |
bicompose_aux match (state, dest_state(state,i), false) arg; |
|
1428 |
||
1429 |
(*Quick test whether rule is resolvable with the subgoal with hyps Hs |
|
1430 |
and conclusion B. If eres_flg then checks 1st premise of rule also*) |
|
1431 |
fun could_bires (Hs, B, eres_flg, rule) = |
|
1432 |
let fun could_reshyp (A1::_) = exists (apl(A1,could_unify)) Hs |
|
250 | 1433 |
| could_reshyp [] = false; (*no premise -- illegal*) |
1434 |
in could_unify(concl_of rule, B) andalso |
|
1435 |
(not eres_flg orelse could_reshyp (prems_of rule)) |
|
0 | 1436 |
end; |
1437 |
||
1438 |
(*Bi-resolution of a state with a list of (flag,rule) pairs. |
|
1439 |
Puts the rule above: rule/state. Renames vars in the rules. *) |
|
250 | 1440 |
fun biresolution match brules i state = |
0 | 1441 |
let val lift = lift_rule(state, i); |
250 | 1442 |
val (stpairs, Bs, Bi, C) = dest_state(state,i) |
1443 |
val B = Logic.strip_assums_concl Bi; |
|
1444 |
val Hs = Logic.strip_assums_hyp Bi; |
|
1445 |
val comp = bicompose_aux match (state, (stpairs, Bs, Bi, C), true); |
|
4270 | 1446 |
fun res [] = Seq.empty |
250 | 1447 |
| res ((eres_flg, rule)::brules) = |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13629
diff
changeset
|
1448 |
if !Pattern.trace_unify_fail orelse |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13629
diff
changeset
|
1449 |
could_bires (Hs, B, eres_flg, rule) |
4270 | 1450 |
then Seq.make (*delay processing remainder till needed*) |
15531 | 1451 |
(fn()=> SOME(comp (eres_flg, lift rule, nprems_of rule), |
250 | 1452 |
res brules)) |
1453 |
else res brules |
|
4270 | 1454 |
in Seq.flat (res brules) end; |
0 | 1455 |
|
1456 |
||
2509 | 1457 |
(*** Oracles ***) |
1458 |
||
15672 | 1459 |
fun invoke_oracle_i thy name = |
3812 | 1460 |
let |
6390 | 1461 |
val {sign = sg, oracles, ...} = Theory.rep_theory thy; |
3812 | 1462 |
val oracle = |
1463 |
(case Symtab.lookup (oracles, name) of |
|
15531 | 1464 |
NONE => raise THM ("Unknown oracle: " ^ name, 0, []) |
1465 |
| SOME (f, _) => f); |
|
3812 | 1466 |
in |
1467 |
fn (sign, exn) => |
|
1468 |
let |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1469 |
val sign_ref' = Sign.merge_refs (Sign.self_ref sg, Sign.self_ref sign); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1470 |
val sign' = Sign.deref sign_ref'; |
14828 | 1471 |
val (prop, T, maxidx) = |
1472 |
Sign.certify_term (Sign.pp sign') sign' (oracle (sign', exn)); |
|
3812 | 1473 |
in |
1474 |
if T <> propT then |
|
1475 |
raise THM ("Oracle's result must have type prop: " ^ name, 0, []) |
|
1476 |
else fix_shyps [] [] |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1477 |
(Thm {sign_ref = sign_ref', |
11518 | 1478 |
der = (true, Pt.oracle_proof name prop), |
3812 | 1479 |
maxidx = maxidx, |
1480 |
shyps = [], |
|
1481 |
hyps = [], |
|
13658
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
berghofe
parents:
13642
diff
changeset
|
1482 |
tpairs = [], |
3812 | 1483 |
prop = prop}) |
1484 |
end |
|
1485 |
end; |
|
1486 |
||
15672 | 1487 |
fun invoke_oracle thy = |
1488 |
invoke_oracle_i thy o Sign.intern (Theory.sign_of thy) Theory.oracleK; |
|
1489 |
||
1539 | 1490 |
|
0 | 1491 |
end; |
1503 | 1492 |
|
6089 | 1493 |
|
1494 |
structure BasicThm: BASIC_THM = Thm; |
|
1495 |
open BasicThm; |