author | wenzelm |
Wed, 26 Nov 1997 16:38:04 +0100 | |
changeset 4288 | 3f5e8c4aa84d |
parent 4281 | 6c6073b13600 |
child 4315 | f4bc2f6ee5e0 |
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 |
1529 | 7 |
theorems, meta rules (including resolution and simplification). |
0 | 8 |
*) |
9 |
||
250 | 10 |
signature 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} |
1238 | 24 |
val term_of : cterm -> term |
25 |
val cterm_of : Sign.sg -> term -> cterm |
|
2671 | 26 |
val ctyp_of_term : cterm -> ctyp |
1238 | 27 |
val read_cterm : Sign.sg -> string * typ -> cterm |
28 |
val cterm_fun : (term -> term) -> (cterm -> cterm) |
|
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
29 |
val dest_comb : cterm -> cterm * cterm |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
30 |
val dest_abs : cterm -> cterm * cterm |
1703
e22ad43bab5f
moved dest_cimplies to drule.ML; added adjust_maxidx
clasohm
parents:
1659
diff
changeset
|
31 |
val adjust_maxidx : cterm -> cterm |
1516
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
32 |
val capply : cterm -> cterm -> cterm |
1517 | 33 |
val cabs : cterm -> cterm -> cterm |
1238 | 34 |
val read_def_cterm : |
1160 | 35 |
Sign.sg * (indexname -> typ option) * (indexname -> sort option) -> |
36 |
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
|
37 |
val read_def_cterms : |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
38 |
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
|
39 |
string list -> bool -> (string * typ)list |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
40 |
-> cterm list * (indexname * typ)list |
1160 | 41 |
|
2671 | 42 |
(*proof terms [must DUPLICATE declaration as a specification]*) |
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
43 |
datatype deriv_kind = MinDeriv | ThmDeriv | FullDeriv; |
2386 | 44 |
val keep_derivs : deriv_kind ref |
1529 | 45 |
datatype rule = |
2386 | 46 |
MinProof |
4182 | 47 |
| Oracle of string * Sign.sg * object |
48 |
| Axiom of string |
|
2671 | 49 |
| Theorem of string |
50 |
| Assume of cterm |
|
51 |
| Implies_intr of cterm |
|
1529 | 52 |
| Implies_intr_shyps |
53 |
| Implies_intr_hyps |
|
54 |
| Implies_elim |
|
2671 | 55 |
| Forall_intr of cterm |
56 |
| Forall_elim of cterm |
|
57 |
| Reflexive of cterm |
|
1529 | 58 |
| Symmetric |
59 |
| Transitive |
|
2671 | 60 |
| Beta_conversion of cterm |
1529 | 61 |
| Extensional |
2671 | 62 |
| Abstract_rule of string * cterm |
1529 | 63 |
| Combination |
64 |
| Equal_intr |
|
65 |
| Equal_elim |
|
2671 | 66 |
| Trivial of cterm |
67 |
| Lift_rule of cterm * int |
|
68 |
| Assumption of int * Envir.env option |
|
69 |
| Rotate_rule of int * int |
|
70 |
| Instantiate of (indexname * ctyp) list * (cterm * cterm) list |
|
71 |
| Bicompose of bool * bool * int * int * Envir.env |
|
72 |
| Flexflex_rule of Envir.env |
|
4182 | 73 |
| Class_triv of class |
1529 | 74 |
| VarifyT |
75 |
| FreezeT |
|
2671 | 76 |
| RewriteC of cterm |
77 |
| CongC of cterm |
|
78 |
| Rewrite_cterm of cterm |
|
79 |
| Rename_params_rule of string list * int; |
|
1529 | 80 |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
81 |
type deriv (* = rule mtree *) |
1529 | 82 |
|
1160 | 83 |
(*meta theorems*) |
84 |
type thm |
|
85 |
exception THM of string * int * thm list |
|
1529 | 86 |
val rep_thm : thm -> {sign: Sign.sg, der: deriv, maxidx: int, |
2386 | 87 |
shyps: sort list, hyps: term list, |
88 |
prop: term} |
|
1529 | 89 |
val crep_thm : thm -> {sign: Sign.sg, der: deriv, maxidx: int, |
2386 | 90 |
shyps: sort list, hyps: cterm list, |
91 |
prop: cterm} |
|
3994 | 92 |
val eq_thm : thm * thm -> bool |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
93 |
val sign_of_thm : thm -> Sign.sg |
4254 | 94 |
val transfer_sg : Sign.sg -> thm -> thm |
3895 | 95 |
val transfer : theory -> thm -> thm |
1238 | 96 |
val tpairs_of : thm -> (term * term) list |
97 |
val prems_of : thm -> term list |
|
98 |
val nprems_of : thm -> int |
|
99 |
val concl_of : thm -> term |
|
100 |
val cprop_of : thm -> cterm |
|
101 |
val extra_shyps : thm -> sort list |
|
3061 | 102 |
val force_strip_shyps : bool ref (* FIXME tmp (since 1995/08/01) *) |
1238 | 103 |
val strip_shyps : thm -> thm |
104 |
val implies_intr_shyps: thm -> thm |
|
3812 | 105 |
val get_axiom : theory -> xstring -> thm |
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
106 |
val name_thm : string * thm -> thm |
4018 | 107 |
val name_of_thm : thm -> string |
1238 | 108 |
val axioms_of : theory -> (string * thm) list |
1160 | 109 |
|
110 |
(*meta rules*) |
|
1238 | 111 |
val assume : cterm -> thm |
1416 | 112 |
val compress : thm -> thm |
1238 | 113 |
val implies_intr : cterm -> thm -> thm |
114 |
val implies_elim : thm -> thm -> thm |
|
115 |
val forall_intr : cterm -> thm -> thm |
|
116 |
val forall_elim : cterm -> thm -> thm |
|
117 |
val reflexive : cterm -> thm |
|
118 |
val symmetric : thm -> thm |
|
119 |
val transitive : thm -> thm -> thm |
|
120 |
val beta_conversion : cterm -> thm |
|
121 |
val extensional : thm -> thm |
|
122 |
val abstract_rule : string -> cterm -> thm -> thm |
|
123 |
val combination : thm -> thm -> thm |
|
124 |
val equal_intr : thm -> thm -> thm |
|
125 |
val equal_elim : thm -> thm -> thm |
|
126 |
val implies_intr_hyps : thm -> thm |
|
4270 | 127 |
val flexflex_rule : thm -> thm Seq.seq |
1238 | 128 |
val instantiate : |
1160 | 129 |
(indexname * ctyp) list * (cterm * cterm) list -> thm -> thm |
1238 | 130 |
val trivial : cterm -> thm |
131 |
val class_triv : theory -> class -> thm |
|
132 |
val varifyT : thm -> thm |
|
133 |
val freezeT : thm -> thm |
|
134 |
val dest_state : thm * int -> |
|
1160 | 135 |
(term * term) list * term list * term * term |
1238 | 136 |
val lift_rule : (thm * int) -> thm -> thm |
4270 | 137 |
val assumption : int -> thm -> thm Seq.seq |
1238 | 138 |
val eq_assumption : int -> thm -> thm |
2671 | 139 |
val rotate_rule : int -> int -> thm -> thm |
1160 | 140 |
val rename_params_rule: string list * int -> thm -> thm |
1238 | 141 |
val bicompose : bool -> bool * thm * int -> |
4270 | 142 |
int -> thm -> thm Seq.seq |
1238 | 143 |
val biresolution : bool -> (bool * thm) list -> |
4270 | 144 |
int -> thm -> thm Seq.seq |
1160 | 145 |
|
146 |
(*meta simplification*) |
|
3550 | 147 |
exception SIMPLIFIER of string * thm |
1160 | 148 |
type meta_simpset |
3550 | 149 |
val dest_mss : meta_simpset -> |
150 |
{simps: thm list, congs: thm list, procs: (string * cterm list) list} |
|
1238 | 151 |
val empty_mss : meta_simpset |
3550 | 152 |
val merge_mss : meta_simpset * meta_simpset -> meta_simpset |
1238 | 153 |
val add_simps : meta_simpset * thm list -> meta_simpset |
154 |
val del_simps : meta_simpset * thm list -> meta_simpset |
|
155 |
val mss_of : thm list -> meta_simpset |
|
156 |
val add_congs : meta_simpset * thm list -> meta_simpset |
|
2626 | 157 |
val del_congs : meta_simpset * thm list -> meta_simpset |
2509 | 158 |
val add_simprocs : meta_simpset * |
3577
9715b6e3ec5f
added prems argument to simplification procedures;
wenzelm
parents:
3565
diff
changeset
|
159 |
(string * cterm list * (Sign.sg -> thm list -> term -> thm option) * stamp) list |
9715b6e3ec5f
added prems argument to simplification procedures;
wenzelm
parents:
3565
diff
changeset
|
160 |
-> meta_simpset |
2509 | 161 |
val del_simprocs : meta_simpset * |
3577
9715b6e3ec5f
added prems argument to simplification procedures;
wenzelm
parents:
3565
diff
changeset
|
162 |
(string * cterm list * (Sign.sg -> thm list -> term -> thm option) * stamp) list |
9715b6e3ec5f
added prems argument to simplification procedures;
wenzelm
parents:
3565
diff
changeset
|
163 |
-> meta_simpset |
1238 | 164 |
val add_prems : meta_simpset * thm list -> meta_simpset |
165 |
val prems_of_mss : meta_simpset -> thm list |
|
166 |
val set_mk_rews : meta_simpset * (thm -> thm list) -> meta_simpset |
|
167 |
val mk_rews_of_mss : meta_simpset -> thm -> thm list |
|
2509 | 168 |
val set_termless : meta_simpset * (term * term -> bool) -> meta_simpset |
1238 | 169 |
val trace_simp : bool ref |
170 |
val rewrite_cterm : bool * bool -> meta_simpset -> |
|
1529 | 171 |
(meta_simpset -> thm -> thm option) -> cterm -> thm |
1539 | 172 |
|
4124 | 173 |
val invoke_oracle : theory -> xstring -> Sign.sg * object -> thm |
250 | 174 |
end; |
0 | 175 |
|
3550 | 176 |
structure Thm: THM = |
0 | 177 |
struct |
250 | 178 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
179 |
(*** Certified terms and types ***) |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
180 |
|
250 | 181 |
(** certified types **) |
182 |
||
183 |
(*certified typs under a signature*) |
|
184 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
185 |
datatype ctyp = Ctyp of {sign_ref: Sign.sg_ref, T: typ}; |
250 | 186 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
187 |
fun rep_ctyp (Ctyp {sign_ref, T}) = {sign = Sign.deref sign_ref, T = T}; |
250 | 188 |
fun typ_of (Ctyp {T, ...}) = T; |
189 |
||
190 |
fun ctyp_of sign T = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
191 |
Ctyp {sign_ref = Sign.self_ref sign, T = Sign.certify_typ sign T}; |
250 | 192 |
|
193 |
fun read_ctyp sign s = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
194 |
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
|
195 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
196 |
|
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
197 |
|
250 | 198 |
(** certified terms **) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
199 |
|
250 | 200 |
(*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
|
201 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
202 |
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
|
203 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
204 |
fun rep_cterm (Cterm {sign_ref, t, T, maxidx}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
205 |
{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
|
206 |
|
4288 | 207 |
fun crep_cterm (Cterm {sign_ref, t, T, maxidx}) = |
208 |
{sign = Sign.deref sign_ref, t = t, T = Ctyp {sign_ref = sign_ref, T = T}, |
|
209 |
maxidx = maxidx}; |
|
210 |
||
250 | 211 |
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
|
212 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
213 |
fun ctyp_of_term (Cterm {sign_ref, T, ...}) = Ctyp {sign_ref = sign_ref, T = T}; |
2671 | 214 |
|
250 | 215 |
(*create a cterm by checking a "raw" term with respect to a signature*) |
216 |
fun cterm_of sign tm = |
|
217 |
let val (t, T, maxidx) = Sign.certify_term sign tm |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
218 |
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
|
219 |
end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
220 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
221 |
fun cterm_fun f (Cterm {sign_ref, t, ...}) = cterm_of (Sign.deref sign_ref) (f t); |
250 | 222 |
|
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
223 |
|
1493
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
224 |
exception CTERM of string; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
225 |
|
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
226 |
(*Destruct application in cterms*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
227 |
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
|
228 |
let val typeA = fastype_of A; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
229 |
val typeB = |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
230 |
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
|
231 |
| _ => error "Function type expected in dest_comb"; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
232 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
233 |
(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
|
234 |
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
|
235 |
end |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
236 |
| dest_comb _ = raise CTERM "dest_comb"; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
237 |
|
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
238 |
(*Destruct abstraction in cterms*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
239 |
fun dest_abs (Cterm {sign_ref, T as Type("fun",[_,S]), maxidx, t=Abs(x,ty,M)}) = |
1516
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
240 |
let val (y,N) = variant_abs (x,ty,M) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
241 |
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
|
242 |
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
|
243 |
end |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
244 |
| dest_abs _ = raise CTERM "dest_abs"; |
e936723cb94d
added dest_comb, dest_abs and mk_prop for manipulating cterms
clasohm
parents:
1460
diff
changeset
|
245 |
|
2147 | 246 |
(*Makes maxidx precise: it is often too big*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
247 |
fun adjust_maxidx (ct as Cterm {sign_ref, T, t, maxidx, ...}) = |
2147 | 248 |
if maxidx = ~1 then ct |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
249 |
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
|
250 |
|
1516
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
251 |
(*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
|
252 |
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
|
253 |
(Cterm {t=x, sign_ref=sign_ref2, T, maxidx=maxidx2}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
254 |
if T = dty then Cterm{t=f$x, sign_ref=Sign.merge_refs(sign_ref1,sign_ref2), T=rty, |
2147 | 255 |
maxidx=Int.max(maxidx1, maxidx2)} |
1516
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
256 |
else raise CTERM "capply: types don't agree" |
96286c4e32de
removed mk_prop; added capply; simplified dest_abs
clasohm
parents:
1503
diff
changeset
|
257 |
| capply _ _ = raise CTERM "capply: first arg is not a function" |
250 | 258 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
259 |
fun cabs (Cterm {t=Free(a,ty), sign_ref=sign_ref1, T=T1, maxidx=maxidx1}) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
260 |
(Cterm {t=t2, sign_ref=sign_ref2, T=T2, maxidx=maxidx2}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
261 |
Cterm {t=absfree(a,ty,t2), sign_ref=Sign.merge_refs(sign_ref1,sign_ref2), |
2147 | 262 |
T = ty --> T2, maxidx=Int.max(maxidx1, maxidx2)} |
1517 | 263 |
| cabs _ _ = raise CTERM "cabs: first arg is not a free variable"; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
264 |
|
2509 | 265 |
|
266 |
||
574 | 267 |
(** read cterms **) (*exception ERROR*) |
250 | 268 |
|
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
269 |
(*read terms, infer types, certify terms*) |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
270 |
fun read_def_cterms (sign, types, sorts) used freeze sTs = |
250 | 271 |
let |
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
272 |
val syn = #syn (Sign.rep_sg sign) |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
273 |
fun read(s,T) = |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
274 |
let val T' = Sign.certify_typ sign T |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
275 |
handle TYPE (msg, _, _) => error msg |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
276 |
in (Syntax.read syn T' s, T') end |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
277 |
val tsTs = map read sTs |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
278 |
val (ts',tye) = Sign.infer_types_simult sign types sorts used freeze tsTs; |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
279 |
val cts = map (cterm_of sign) ts' |
2979 | 280 |
handle TYPE (msg, _, _) => error msg |
2386 | 281 |
| TERM (msg, _) => error msg; |
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
282 |
in (cts, tye) end; |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
283 |
|
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
284 |
(*read term, infer types, certify term*) |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
285 |
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
|
286 |
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
|
287 |
in (ct,tye) end; |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
288 |
|
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
922
diff
changeset
|
289 |
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
|
290 |
|
1394
a1d2735f5ade
New function read_cterms is a combination of read_def_cterm and
paulson
parents:
1258
diff
changeset
|
291 |
(*read a list of terms, matching them against a list of expected types. |
a1d2735f5ade
New function read_cterms is a combination of read_def_cterm and
paulson
parents:
1258
diff
changeset
|
292 |
NO disambiguation of alternative parses via type-checking -- it is just |
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
293 |
not practical. |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
294 |
|
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
295 |
Why not? In any case, this function is not used at all. |
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
296 |
|
3789 | 297 |
fun read_cterms sg (bs, Ts) = |
1394
a1d2735f5ade
New function read_cterms is a combination of read_def_cterm and
paulson
parents:
1258
diff
changeset
|
298 |
let |
3789 | 299 |
val {tsig, syn, ...} = Sign.rep_sg sg; |
2979 | 300 |
fun read (b, T) = |
301 |
(case Syntax.read syn T b of |
|
302 |
[t] => t |
|
303 |
| _ => error ("Error or ambiguity in parsing of " ^ b)); |
|
304 |
||
3789 | 305 |
val prt = setmp Syntax.show_brackets true (Sign.pretty_term sg); |
306 |
val prT = Sign.pretty_typ sg; |
|
2979 | 307 |
val (us, _) = |
3789 | 308 |
(* FIXME Sign.infer_types!? *) |
309 |
Type.infer_types prt prT tsig (Sign.const_type sg) (K None) (K None) |
|
310 |
(Sign.intern_const sg) (Sign.intern_tycons sg) (Sign.intern_sort sg) |
|
311 |
[] true (map (Sign.certify_typ sg) Ts) (ListPair.map read (bs, Ts)); |
|
312 |
in map (cterm_of sg) us end |
|
2979 | 313 |
handle TYPE (msg, _, _) => error msg |
1394
a1d2735f5ade
New function read_cterms is a combination of read_def_cterm and
paulson
parents:
1258
diff
changeset
|
314 |
| TERM (msg, _) => error msg; |
4281
6c6073b13600
Added read_def_cterms for simultaneous reading/typing of terms under
nipkow
parents:
4270
diff
changeset
|
315 |
*) |
250 | 316 |
|
317 |
||
1529 | 318 |
(*** Derivations ***) |
319 |
||
320 |
(*Names of rules in derivations. Includes logically trivial rules, if |
|
321 |
executed in ML.*) |
|
322 |
datatype rule = |
|
2386 | 323 |
MinProof (*for building minimal proof terms*) |
4182 | 324 |
| Oracle of string * Sign.sg * object (*oracles*) |
1529 | 325 |
(*Axioms/theorems*) |
4182 | 326 |
| Axiom of string |
2386 | 327 |
| Theorem of string |
1529 | 328 |
(*primitive inferences and compound versions of them*) |
2386 | 329 |
| Assume of cterm |
330 |
| Implies_intr of cterm |
|
1529 | 331 |
| Implies_intr_shyps |
332 |
| Implies_intr_hyps |
|
333 |
| Implies_elim |
|
2386 | 334 |
| Forall_intr of cterm |
335 |
| Forall_elim of cterm |
|
336 |
| Reflexive of cterm |
|
1529 | 337 |
| Symmetric |
338 |
| Transitive |
|
2386 | 339 |
| Beta_conversion of cterm |
1529 | 340 |
| Extensional |
2386 | 341 |
| Abstract_rule of string * cterm |
1529 | 342 |
| Combination |
343 |
| Equal_intr |
|
344 |
| Equal_elim |
|
345 |
(*derived rules for tactical proof*) |
|
2386 | 346 |
| Trivial of cterm |
347 |
(*For lift_rule, the proof state is not a premise. |
|
348 |
Use cterm instead of thm to avoid mutual recursion.*) |
|
349 |
| Lift_rule of cterm * int |
|
350 |
| Assumption of int * Envir.env option (*includes eq_assumption*) |
|
2671 | 351 |
| Rotate_rule of int * int |
2386 | 352 |
| Instantiate of (indexname * ctyp) list * (cterm * cterm) list |
353 |
| Bicompose of bool * bool * int * int * Envir.env |
|
354 |
| Flexflex_rule of Envir.env (*identifies unifier chosen*) |
|
1529 | 355 |
(*other derived rules*) |
4182 | 356 |
| Class_triv of class |
1529 | 357 |
| VarifyT |
358 |
| FreezeT |
|
359 |
(*for the simplifier*) |
|
2386 | 360 |
| RewriteC of cterm |
361 |
| CongC of cterm |
|
362 |
| Rewrite_cterm of cterm |
|
1529 | 363 |
(*Logical identities, recorded since they are part of the proof process*) |
2386 | 364 |
| Rename_params_rule of string list * int; |
1529 | 365 |
|
366 |
||
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
367 |
type deriv = rule mtree; |
1529 | 368 |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
369 |
datatype deriv_kind = MinDeriv | ThmDeriv | FullDeriv; |
1529 | 370 |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
371 |
val keep_derivs = ref MinDeriv; |
1529 | 372 |
|
373 |
||
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
374 |
(*Build a minimal derivation. Keep oracles; suppress atomic inferences; |
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
375 |
retain Theorems or their underlying links; keep anything else*) |
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
376 |
fun squash_derivs [] = [] |
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
377 |
| squash_derivs (der::ders) = |
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
378 |
(case der of |
2386 | 379 |
Join (Oracle _, _) => der :: squash_derivs ders |
380 |
| Join (Theorem _, [der']) => if !keep_derivs=ThmDeriv |
|
381 |
then der :: squash_derivs ders |
|
382 |
else squash_derivs (der'::ders) |
|
383 |
| Join (Axiom _, _) => if !keep_derivs=ThmDeriv |
|
384 |
then der :: squash_derivs ders |
|
385 |
else squash_derivs ders |
|
386 |
| Join (_, []) => squash_derivs ders |
|
387 |
| _ => der :: squash_derivs ders); |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
388 |
|
1529 | 389 |
|
390 |
(*Ensure sharing of the most likely derivation, the empty one!*) |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
391 |
val min_infer = Join (MinProof, []); |
1529 | 392 |
|
393 |
(*Make a minimal inference*) |
|
394 |
fun make_min_infer [] = min_infer |
|
395 |
| make_min_infer [der] = der |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
396 |
| make_min_infer ders = Join (MinProof, ders); |
1529 | 397 |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
398 |
fun infer_derivs (rl, []) = Join (rl, []) |
1529 | 399 |
| infer_derivs (rl, ders) = |
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
400 |
if !keep_derivs=FullDeriv then Join (rl, ders) |
1529 | 401 |
else make_min_infer (squash_derivs ders); |
402 |
||
403 |
||
2509 | 404 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
405 |
(*** Meta theorems ***) |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
406 |
|
0 | 407 |
datatype thm = Thm of |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
408 |
{sign_ref: Sign.sg_ref, (*mutable reference to signature*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
409 |
der: deriv, (*derivation*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
410 |
maxidx: int, (*maximum index of any Var or TVar*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
411 |
shyps: sort list, (*sort hypotheses*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
412 |
hyps: term list, (*hypotheses*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
413 |
prop: term}; (*conclusion*) |
0 | 414 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
415 |
fun rep_thm (Thm {sign_ref, der, maxidx, shyps, hyps, prop}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
416 |
{sign = Sign.deref sign_ref, der = der, maxidx = maxidx, |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
417 |
shyps = shyps, hyps = hyps, prop = prop}; |
0 | 418 |
|
1529 | 419 |
(*Version of rep_thm returning cterms instead of terms*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
420 |
fun crep_thm (Thm {sign_ref, der, maxidx, shyps, hyps, prop}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
421 |
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
|
422 |
in {sign = Sign.deref sign_ref, der = der, maxidx = maxidx, shyps = shyps, |
1529 | 423 |
hyps = map (ctermf ~1) hyps, |
424 |
prop = ctermf maxidx prop} |
|
1517 | 425 |
end; |
426 |
||
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
427 |
(*errors involving theorems*) |
0 | 428 |
exception THM of string * int * thm list; |
429 |
||
3994 | 430 |
(*equality of theorems uses equality of signatures and the |
431 |
a-convertible test for terms*) |
|
432 |
fun eq_thm (th1, th2) = |
|
433 |
let |
|
434 |
val {sign = sg1, shyps = shyps1, hyps = hyps1, prop = prop1, ...} = rep_thm th1; |
|
435 |
val {sign = sg2, shyps = shyps2, hyps = hyps2, prop = prop2, ...} = rep_thm th2; |
|
436 |
in |
|
437 |
Sign.eq_sg (sg1, sg2) andalso |
|
438 |
eq_set_sort (shyps1, shyps2) andalso |
|
439 |
aconvs (hyps1, hyps2) andalso |
|
440 |
prop1 aconv prop2 |
|
441 |
end; |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
442 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
443 |
fun sign_of_thm (Thm {sign_ref, ...}) = Sign.deref sign_ref; |
0 | 444 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
445 |
(*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
|
446 |
fun merge_thm_sgs |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
447 |
(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
|
448 |
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
|
449 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
450 |
(*transfer thm to super theory (non-destructive)*) |
4254 | 451 |
fun transfer_sg sign' thm = |
3895 | 452 |
let |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
453 |
val Thm {sign_ref, der, maxidx, shyps, hyps, prop} = thm; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
454 |
val sign = Sign.deref sign_ref; |
3895 | 455 |
in |
4254 | 456 |
if Sign.eq_sg (sign, sign') then thm |
457 |
else if Sign.subsig (sign, sign') then |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
458 |
Thm {sign_ref = Sign.self_ref sign', der = der, maxidx = maxidx, |
3895 | 459 |
shyps = shyps, hyps = hyps, prop = prop} |
460 |
else raise THM ("transfer: not a super theory", 0, [thm]) |
|
461 |
end; |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
462 |
|
4254 | 463 |
val transfer = transfer_sg o sign_of; |
464 |
||
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
465 |
(*maps object-rule to tpairs*) |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
466 |
fun tpairs_of (Thm {prop, ...}) = #1 (Logic.strip_flexpairs prop); |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
467 |
|
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
468 |
(*maps object-rule to premises*) |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
469 |
fun prems_of (Thm {prop, ...}) = |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
470 |
Logic.strip_imp_prems (Logic.skip_flexpairs prop); |
0 | 471 |
|
472 |
(*counts premises in a rule*) |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
473 |
fun nprems_of (Thm {prop, ...}) = |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
474 |
Logic.count_prems (Logic.skip_flexpairs prop, 0); |
0 | 475 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
476 |
(*maps object-rule to conclusion*) |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
477 |
fun concl_of (Thm {prop, ...}) = Logic.strip_imp_concl prop; |
0 | 478 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
479 |
(*the statement of any thm is a cterm*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
480 |
fun cprop_of (Thm {sign_ref, maxidx, prop, ...}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
481 |
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
|
482 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
483 |
|
0 | 484 |
|
1238 | 485 |
(** sort contexts of theorems **) |
486 |
||
487 |
(* basic utils *) |
|
488 |
||
2163 | 489 |
(*accumulate sorts suppressing duplicates; these are coded low levelly |
1238 | 490 |
to improve efficiency a bit*) |
491 |
||
492 |
fun add_typ_sorts (Type (_, Ts), Ss) = add_typs_sorts (Ts, Ss) |
|
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
493 |
| add_typ_sorts (TFree (_, S), Ss) = ins_sort(S,Ss) |
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
494 |
| add_typ_sorts (TVar (_, S), Ss) = ins_sort(S,Ss) |
1238 | 495 |
and add_typs_sorts ([], Ss) = Ss |
496 |
| add_typs_sorts (T :: Ts, Ss) = add_typs_sorts (Ts, add_typ_sorts (T, Ss)); |
|
497 |
||
498 |
fun add_term_sorts (Const (_, T), Ss) = add_typ_sorts (T, Ss) |
|
499 |
| add_term_sorts (Free (_, T), Ss) = add_typ_sorts (T, Ss) |
|
500 |
| add_term_sorts (Var (_, T), Ss) = add_typ_sorts (T, Ss) |
|
501 |
| add_term_sorts (Bound _, Ss) = Ss |
|
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
502 |
| add_term_sorts (Abs (_,T,t), Ss) = add_term_sorts (t, add_typ_sorts (T,Ss)) |
1238 | 503 |
| add_term_sorts (t $ u, Ss) = add_term_sorts (t, add_term_sorts (u, Ss)); |
504 |
||
505 |
fun add_terms_sorts ([], Ss) = Ss |
|
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
506 |
| add_terms_sorts (t::ts, Ss) = add_terms_sorts (ts, add_term_sorts (t,Ss)); |
1238 | 507 |
|
1258 | 508 |
fun env_codT (Envir.Envir {iTs, ...}) = map snd iTs; |
509 |
||
510 |
fun add_env_sorts (env, Ss) = |
|
511 |
add_terms_sorts (map snd (Envir.alist_of env), |
|
512 |
add_typs_sorts (env_codT env, Ss)); |
|
513 |
||
1238 | 514 |
fun add_thm_sorts (Thm {hyps, prop, ...}, Ss) = |
515 |
add_terms_sorts (hyps, add_term_sorts (prop, Ss)); |
|
516 |
||
517 |
fun add_thms_shyps ([], Ss) = Ss |
|
518 |
| add_thms_shyps (Thm {shyps, ...} :: ths, Ss) = |
|
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
519 |
add_thms_shyps (ths, union_sort(shyps,Ss)); |
1238 | 520 |
|
521 |
||
522 |
(*get 'dangling' sort constraints of a thm*) |
|
523 |
fun extra_shyps (th as Thm {shyps, ...}) = |
|
524 |
shyps \\ add_thm_sorts (th, []); |
|
525 |
||
526 |
||
527 |
(* fix_shyps *) |
|
528 |
||
529 |
(*preserve sort contexts of rule premises and substituted types*) |
|
530 |
fun fix_shyps thms Ts thm = |
|
531 |
let |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
532 |
val Thm {sign_ref, der, maxidx, hyps, prop, ...} = thm; |
1238 | 533 |
val shyps = |
534 |
add_thm_sorts (thm, add_typs_sorts (Ts, add_thms_shyps (thms, []))); |
|
535 |
in |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
536 |
Thm {sign_ref = sign_ref, |
2386 | 537 |
der = der, (*No new derivation, as other rules call this*) |
538 |
maxidx = maxidx, |
|
539 |
shyps = shyps, hyps = hyps, prop = prop} |
|
1238 | 540 |
end; |
541 |
||
542 |
||
543 |
(* strip_shyps *) (* FIXME improve? (e.g. only minimal extra sorts) *) |
|
544 |
||
3061 | 545 |
val force_strip_shyps = ref true; (* FIXME tmp (since 1995/08/01) *) |
1238 | 546 |
|
547 |
(*remove extra sorts that are known to be syntactically non-empty*) |
|
548 |
fun strip_shyps thm = |
|
549 |
let |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
550 |
val Thm {sign_ref, der, maxidx, shyps, hyps, prop} = thm; |
1238 | 551 |
val sorts = add_thm_sorts (thm, []); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
552 |
val maybe_empty = not o Sign.nonempty_sort (Sign.deref sign_ref) sorts; |
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
553 |
val shyps' = filter (fn S => mem_sort(S,sorts) orelse maybe_empty S) shyps; |
1238 | 554 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
555 |
Thm {sign_ref = sign_ref, der = der, maxidx = maxidx, |
2386 | 556 |
shyps = |
557 |
(if eq_set_sort (shyps',sorts) orelse |
|
558 |
not (!force_strip_shyps) then shyps' |
|
3061 | 559 |
else (* FIXME tmp (since 1995/08/01) *) |
2386 | 560 |
(warning ("Removed sort hypotheses: " ^ |
2962 | 561 |
commas (map Sorts.str_of_sort (shyps' \\ sorts))); |
2386 | 562 |
warning "Let's hope these sorts are non-empty!"; |
1238 | 563 |
sorts)), |
1529 | 564 |
hyps = hyps, |
565 |
prop = prop} |
|
1238 | 566 |
end; |
567 |
||
568 |
||
569 |
(* implies_intr_shyps *) |
|
570 |
||
571 |
(*discharge all extra sort hypotheses*) |
|
572 |
fun implies_intr_shyps thm = |
|
573 |
(case extra_shyps thm of |
|
574 |
[] => thm |
|
575 |
| xshyps => |
|
576 |
let |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
577 |
val Thm {sign_ref, der, maxidx, shyps, hyps, prop} = thm; |
2182
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2177
diff
changeset
|
578 |
val shyps' = ins_sort (logicS, shyps \\ xshyps); |
1238 | 579 |
val used_names = foldr add_term_tfree_names (prop :: hyps, []); |
580 |
val names = |
|
581 |
tl (variantlist (replicate (length xshyps + 1) "'", used_names)); |
|
582 |
val tfrees = map (TFree o rpair logicS) names; |
|
583 |
||
584 |
fun mk_insort (T, S) = map (Logic.mk_inclass o pair T) S; |
|
2671 | 585 |
val sort_hyps = List.concat (map2 mk_insort (tfrees, xshyps)); |
1238 | 586 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
587 |
Thm {sign_ref = sign_ref, |
2386 | 588 |
der = infer_derivs (Implies_intr_shyps, [der]), |
589 |
maxidx = maxidx, |
|
590 |
shyps = shyps', |
|
591 |
hyps = hyps, |
|
592 |
prop = Logic.list_implies (sort_hyps, prop)} |
|
1238 | 593 |
end); |
594 |
||
595 |
||
1529 | 596 |
(** Axioms **) |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
597 |
|
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
598 |
(*look up the named axiom in the theory*) |
3812 | 599 |
fun get_axiom theory raw_name = |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
600 |
let |
3994 | 601 |
val name = Sign.intern (sign_of theory) Theory.axiomK raw_name; |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
602 |
fun get_ax [] = raise Match |
1529 | 603 |
| get_ax (thy :: thys) = |
3994 | 604 |
let val {sign, axioms, parents, ...} = rep_theory thy |
605 |
in case Symtab.lookup (axioms, name) of |
|
2386 | 606 |
Some t => fix_shyps [] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
607 |
(Thm {sign_ref = Sign.self_ref sign, |
4182 | 608 |
der = infer_derivs (Axiom name, []), |
2386 | 609 |
maxidx = maxidx_of_term t, |
610 |
shyps = [], |
|
611 |
hyps = [], |
|
612 |
prop = t}) |
|
613 |
| None => get_ax parents handle Match => get_ax thys |
|
1529 | 614 |
end; |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
615 |
in |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
616 |
get_ax [theory] handle Match |
3994 | 617 |
=> raise THEORY ("No axiom " ^ quote name, [theory]) |
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
618 |
end; |
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
619 |
|
1529 | 620 |
|
776
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
621 |
(*return additional axioms of this theory node*) |
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
622 |
fun axioms_of thy = |
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
623 |
map (fn (s, _) => (s, get_axiom thy s)) |
3994 | 624 |
(Symtab.dest (#axioms (rep_theory thy))); |
776
df8f91c0e57c
improved axioms_of: returns thms as the manual says;
wenzelm
parents:
721
diff
changeset
|
625 |
|
1597
54ece585bf62
name_thm no longer takes a theory argument, as the
paulson
parents:
1580
diff
changeset
|
626 |
(*Attach a label to a theorem to make proof objects more readable*) |
4018 | 627 |
fun name_thm (name, th as Thm {sign_ref, der, maxidx, shyps, hyps, prop}) = |
628 |
(case der of |
|
629 |
Join (Theorem _, _) => th |
|
630 |
| Join (Axiom _, _) => th |
|
631 |
| _ => Thm {sign_ref = sign_ref, der = Join (Theorem name, [der]), |
|
632 |
maxidx = maxidx, shyps = shyps, hyps = hyps, prop = prop}); |
|
633 |
||
634 |
fun name_of_thm (Thm {der, ...}) = |
|
635 |
(case der of |
|
636 |
Join (Theorem name, _) => name |
|
4182 | 637 |
| Join (Axiom name, _) => name |
4018 | 638 |
| _ => ""); |
0 | 639 |
|
640 |
||
1529 | 641 |
(*Compression of theorems -- a separate rule, not integrated with the others, |
642 |
as it could be slow.*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
643 |
fun compress (Thm {sign_ref, der, maxidx, shyps, hyps, prop}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
644 |
Thm {sign_ref = sign_ref, |
2386 | 645 |
der = der, (*No derivation recorded!*) |
646 |
maxidx = maxidx, |
|
647 |
shyps = shyps, |
|
648 |
hyps = map Term.compress_term hyps, |
|
649 |
prop = Term.compress_term prop}; |
|
564 | 650 |
|
387
69f4356d915d
new datatype theory, supports 'draft theories' and incremental extension:
wenzelm
parents:
309
diff
changeset
|
651 |
|
2509 | 652 |
|
1529 | 653 |
(*** Meta rules ***) |
0 | 654 |
|
2147 | 655 |
(*Check that term does not contain same var with different typing/sorting. |
656 |
If this check must be made, recalculate maxidx in hope of preventing its |
|
657 |
recurrence.*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
658 |
fun nodup_Vars (thm as Thm{sign_ref, der, maxidx, shyps, hyps, prop}) s = |
2147 | 659 |
(Sign.nodup_Vars prop; |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
660 |
Thm {sign_ref = sign_ref, |
2386 | 661 |
der = der, |
662 |
maxidx = maxidx_of_term prop, |
|
663 |
shyps = shyps, |
|
664 |
hyps = hyps, |
|
665 |
prop = prop}) |
|
2147 | 666 |
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
|
667 |
|
1220 | 668 |
(** 'primitive' rules **) |
669 |
||
670 |
(*discharge all assumptions t from ts*) |
|
0 | 671 |
val disch = gen_rem (op aconv); |
672 |
||
1220 | 673 |
(*The assumption rule A|-A in a theory*) |
250 | 674 |
fun assume ct : thm = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
675 |
let val Cterm {sign_ref, t=prop, T, maxidx} = ct |
250 | 676 |
in if T<>propT then |
677 |
raise THM("assume: assumptions must have type prop", 0, []) |
|
0 | 678 |
else if maxidx <> ~1 then |
250 | 679 |
raise THM("assume: assumptions may not contain scheme variables", |
680 |
maxidx, []) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
681 |
else Thm{sign_ref = sign_ref, |
2386 | 682 |
der = infer_derivs (Assume ct, []), |
683 |
maxidx = ~1, |
|
684 |
shyps = add_term_sorts(prop,[]), |
|
685 |
hyps = [prop], |
|
686 |
prop = prop} |
|
0 | 687 |
end; |
688 |
||
1220 | 689 |
(*Implication introduction |
3529 | 690 |
[A] |
691 |
: |
|
692 |
B |
|
1220 | 693 |
------- |
694 |
A ==> B |
|
695 |
*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
696 |
fun implies_intr cA (thB as Thm{sign_ref,der,maxidx,hyps,prop,...}) : thm = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
697 |
let val Cterm {sign_ref=sign_refA, t=A, T, maxidx=maxidxA} = cA |
0 | 698 |
in if T<>propT then |
250 | 699 |
raise THM("implies_intr: assumptions must have type prop", 0, [thB]) |
1238 | 700 |
else fix_shyps [thB] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
701 |
(Thm{sign_ref = Sign.merge_refs (sign_ref,sign_refA), |
2386 | 702 |
der = infer_derivs (Implies_intr cA, [der]), |
703 |
maxidx = Int.max(maxidxA, maxidx), |
|
704 |
shyps = [], |
|
705 |
hyps = disch(hyps,A), |
|
706 |
prop = implies$A$prop}) |
|
0 | 707 |
handle TERM _ => |
708 |
raise THM("implies_intr: incompatible signatures", 0, [thB]) |
|
709 |
end; |
|
710 |
||
1529 | 711 |
|
1220 | 712 |
(*Implication elimination |
713 |
A ==> B A |
|
714 |
------------ |
|
715 |
B |
|
716 |
*) |
|
0 | 717 |
fun implies_elim thAB thA : thm = |
1529 | 718 |
let val Thm{maxidx=maxA, der=derA, hyps=hypsA, prop=propA,...} = thA |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
719 |
and Thm{sign_ref, der, maxidx, hyps, prop,...} = thAB; |
250 | 720 |
fun err(a) = raise THM("implies_elim: "^a, 0, [thAB,thA]) |
0 | 721 |
in case prop of |
250 | 722 |
imp$A$B => |
723 |
if imp=implies andalso A aconv propA |
|
1220 | 724 |
then fix_shyps [thAB, thA] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
725 |
(Thm{sign_ref= merge_thm_sgs(thAB,thA), |
2386 | 726 |
der = infer_derivs (Implies_elim, [der,derA]), |
727 |
maxidx = Int.max(maxA,maxidx), |
|
728 |
shyps = [], |
|
729 |
hyps = union_term(hypsA,hyps), (*dups suppressed*) |
|
730 |
prop = B}) |
|
250 | 731 |
else err("major premise") |
732 |
| _ => err("major premise") |
|
0 | 733 |
end; |
250 | 734 |
|
1220 | 735 |
(*Forall introduction. The Free or Var x must not be free in the hypotheses. |
736 |
A |
|
737 |
----- |
|
738 |
!!x.A |
|
739 |
*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
740 |
fun forall_intr cx (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) = |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
741 |
let val x = term_of cx; |
1238 | 742 |
fun result(a,T) = fix_shyps [th] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
743 |
(Thm{sign_ref = sign_ref, |
2386 | 744 |
der = infer_derivs (Forall_intr cx, [der]), |
745 |
maxidx = maxidx, |
|
746 |
shyps = [], |
|
747 |
hyps = hyps, |
|
748 |
prop = all(T) $ Abs(a, T, abstract_over (x,prop))}) |
|
0 | 749 |
in case x of |
250 | 750 |
Free(a,T) => |
751 |
if exists (apl(x, Logic.occs)) hyps |
|
752 |
then raise THM("forall_intr: variable free in assumptions", 0, [th]) |
|
753 |
else result(a,T) |
|
0 | 754 |
| Var((a,_),T) => result(a,T) |
755 |
| _ => raise THM("forall_intr: not a variable", 0, [th]) |
|
756 |
end; |
|
757 |
||
1220 | 758 |
(*Forall elimination |
759 |
!!x.A |
|
760 |
------ |
|
761 |
A[t/x] |
|
762 |
*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
763 |
fun forall_elim ct (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) : thm = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
764 |
let val Cterm {sign_ref=sign_reft, t, T, maxidx=maxt} = ct |
0 | 765 |
in case prop of |
2386 | 766 |
Const("all",Type("fun",[Type("fun",[qary,_]),_])) $ A => |
767 |
if T<>qary then |
|
768 |
raise THM("forall_elim: type mismatch", 0, [th]) |
|
769 |
else let val thm = fix_shyps [th] [] |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
770 |
(Thm{sign_ref= Sign.merge_refs(sign_ref,sign_reft), |
2386 | 771 |
der = infer_derivs (Forall_elim ct, [der]), |
772 |
maxidx = Int.max(maxidx, maxt), |
|
773 |
shyps = [], |
|
774 |
hyps = hyps, |
|
775 |
prop = betapply(A,t)}) |
|
776 |
in if maxt >= 0 andalso maxidx >= 0 |
|
777 |
then nodup_Vars thm "forall_elim" |
|
778 |
else thm (*no new Vars: no expensive check!*) |
|
779 |
end |
|
2147 | 780 |
| _ => raise THM("forall_elim: not quantified", 0, [th]) |
0 | 781 |
end |
782 |
handle TERM _ => |
|
250 | 783 |
raise THM("forall_elim: incompatible signatures", 0, [th]); |
0 | 784 |
|
785 |
||
1220 | 786 |
(* Equality *) |
0 | 787 |
|
788 |
(*The reflexivity rule: maps t to the theorem t==t *) |
|
250 | 789 |
fun reflexive ct = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
790 |
let val Cterm {sign_ref, t, T, maxidx} = ct |
1238 | 791 |
in fix_shyps [] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
792 |
(Thm{sign_ref= sign_ref, |
2386 | 793 |
der = infer_derivs (Reflexive ct, []), |
794 |
shyps = [], |
|
795 |
hyps = [], |
|
796 |
maxidx = maxidx, |
|
797 |
prop = Logic.mk_equals(t,t)}) |
|
0 | 798 |
end; |
799 |
||
800 |
(*The symmetry rule |
|
1220 | 801 |
t==u |
802 |
---- |
|
803 |
u==t |
|
804 |
*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
805 |
fun symmetric (th as Thm{sign_ref,der,maxidx,shyps,hyps,prop}) = |
0 | 806 |
case prop of |
807 |
(eq as Const("==",_)) $ t $ u => |
|
1238 | 808 |
(*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
809 |
Thm{sign_ref = sign_ref, |
2386 | 810 |
der = infer_derivs (Symmetric, [der]), |
811 |
maxidx = maxidx, |
|
812 |
shyps = shyps, |
|
813 |
hyps = hyps, |
|
814 |
prop = eq$u$t} |
|
0 | 815 |
| _ => raise THM("symmetric", 0, [th]); |
816 |
||
817 |
(*The transitive rule |
|
1220 | 818 |
t1==u u==t2 |
819 |
-------------- |
|
820 |
t1==t2 |
|
821 |
*) |
|
0 | 822 |
fun transitive th1 th2 = |
1529 | 823 |
let val Thm{der=der1, maxidx=max1, hyps=hyps1, prop=prop1,...} = th1 |
824 |
and Thm{der=der2, maxidx=max2, hyps=hyps2, prop=prop2,...} = th2; |
|
0 | 825 |
fun err(msg) = raise THM("transitive: "^msg, 0, [th1,th2]) |
826 |
in case (prop1,prop2) of |
|
827 |
((eq as Const("==",_)) $ t1 $ u, Const("==",_) $ u' $ t2) => |
|
1634 | 828 |
if not (u aconv u') then err"middle term" |
829 |
else let val thm = |
|
1220 | 830 |
fix_shyps [th1, th2] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
831 |
(Thm{sign_ref= merge_thm_sgs(th1,th2), |
2386 | 832 |
der = infer_derivs (Transitive, [der1, der2]), |
2147 | 833 |
maxidx = Int.max(max1,max2), |
2386 | 834 |
shyps = [], |
835 |
hyps = union_term(hyps1,hyps2), |
|
836 |
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
|
837 |
in if max1 >= 0 andalso max2 >= 0 |
2147 | 838 |
then nodup_Vars thm "transitive" |
839 |
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
|
840 |
end |
0 | 841 |
| _ => err"premises" |
842 |
end; |
|
843 |
||
1160 | 844 |
(*Beta-conversion: maps (%x.t)(u) to the theorem (%x.t)(u) == t[u/x] *) |
250 | 845 |
fun beta_conversion ct = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
846 |
let val Cterm {sign_ref, t, T, maxidx} = ct |
0 | 847 |
in case t of |
1238 | 848 |
Abs(_,_,bodt) $ u => fix_shyps [] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
849 |
(Thm{sign_ref = sign_ref, |
2386 | 850 |
der = infer_derivs (Beta_conversion ct, []), |
851 |
maxidx = maxidx, |
|
852 |
shyps = [], |
|
853 |
hyps = [], |
|
854 |
prop = Logic.mk_equals(t, subst_bound (u,bodt))}) |
|
250 | 855 |
| _ => raise THM("beta_conversion: not a redex", 0, []) |
0 | 856 |
end; |
857 |
||
858 |
(*The extensionality rule (proviso: x not free in f, g, or hypotheses) |
|
1220 | 859 |
f(x) == g(x) |
860 |
------------ |
|
861 |
f == g |
|
862 |
*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
863 |
fun extensional (th as Thm{sign_ref, der, maxidx,shyps,hyps,prop}) = |
0 | 864 |
case prop of |
865 |
(Const("==",_)) $ (f$x) $ (g$y) => |
|
250 | 866 |
let fun err(msg) = raise THM("extensional: "^msg, 0, [th]) |
0 | 867 |
in (if x<>y then err"different variables" else |
868 |
case y of |
|
250 | 869 |
Free _ => |
870 |
if exists (apl(y, Logic.occs)) (f::g::hyps) |
|
871 |
then err"variable free in hyps or functions" else () |
|
872 |
| Var _ => |
|
873 |
if Logic.occs(y,f) orelse Logic.occs(y,g) |
|
874 |
then err"variable free in functions" else () |
|
875 |
| _ => err"not a variable"); |
|
1238 | 876 |
(*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
877 |
Thm{sign_ref = sign_ref, |
2386 | 878 |
der = infer_derivs (Extensional, [der]), |
879 |
maxidx = maxidx, |
|
880 |
shyps = shyps, |
|
881 |
hyps = hyps, |
|
1529 | 882 |
prop = Logic.mk_equals(f,g)} |
0 | 883 |
end |
884 |
| _ => raise THM("extensional: premise", 0, [th]); |
|
885 |
||
886 |
(*The abstraction rule. The Free or Var x must not be free in the hypotheses. |
|
887 |
The bound variable will be named "a" (since x will be something like x320) |
|
1220 | 888 |
t == u |
889 |
------------ |
|
890 |
%x.t == %x.u |
|
891 |
*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
892 |
fun abstract_rule a cx (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) = |
229
4002c4cd450c
Pure: MAJOR CHANGE. Moved ML types ctyp and cterm and their associated
lcp
parents:
225
diff
changeset
|
893 |
let val x = term_of cx; |
250 | 894 |
val (t,u) = Logic.dest_equals prop |
895 |
handle TERM _ => |
|
896 |
raise THM("abstract_rule: premise not an equality", 0, [th]) |
|
1238 | 897 |
fun result T = fix_shyps [th] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
898 |
(Thm{sign_ref = sign_ref, |
2386 | 899 |
der = infer_derivs (Abstract_rule (a,cx), [der]), |
900 |
maxidx = maxidx, |
|
901 |
shyps = [], |
|
902 |
hyps = hyps, |
|
903 |
prop = Logic.mk_equals(Abs(a, T, abstract_over (x,t)), |
|
904 |
Abs(a, T, abstract_over (x,u)))}) |
|
0 | 905 |
in case x of |
250 | 906 |
Free(_,T) => |
907 |
if exists (apl(x, Logic.occs)) hyps |
|
908 |
then raise THM("abstract_rule: variable free in assumptions", 0, [th]) |
|
909 |
else result T |
|
0 | 910 |
| Var(_,T) => result T |
911 |
| _ => raise THM("abstract_rule: not a variable", 0, [th]) |
|
912 |
end; |
|
913 |
||
914 |
(*The combination rule |
|
3529 | 915 |
f == g t == u |
916 |
-------------- |
|
917 |
f(t) == g(u) |
|
1220 | 918 |
*) |
0 | 919 |
fun combination th1 th2 = |
1529 | 920 |
let val Thm{der=der1, maxidx=max1, shyps=shyps1, hyps=hyps1, |
2386 | 921 |
prop=prop1,...} = th1 |
1529 | 922 |
and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, |
2386 | 923 |
prop=prop2,...} = th2 |
1836
861e29c7cada
Added type-checking to rule "combination". This corrects a fault
paulson
parents:
1802
diff
changeset
|
924 |
fun chktypes (f,t) = |
2386 | 925 |
(case fastype_of f of |
926 |
Type("fun",[T1,T2]) => |
|
927 |
if T1 <> fastype_of t then |
|
928 |
raise THM("combination: types", 0, [th1,th2]) |
|
929 |
else () |
|
930 |
| _ => raise THM("combination: not function type", 0, |
|
931 |
[th1,th2])) |
|
1495
b8b54847c77f
Added check for duplicate vars with distinct types/sorts (nodup_Vars)
nipkow
parents:
1493
diff
changeset
|
932 |
in case (prop1,prop2) of |
0 | 933 |
(Const("==",_) $ f $ g, Const("==",_) $ t $ u) => |
1836
861e29c7cada
Added type-checking to rule "combination". This corrects a fault
paulson
parents:
1802
diff
changeset
|
934 |
let val _ = chktypes (f,t) |
2386 | 935 |
val thm = (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
936 |
Thm{sign_ref = merge_thm_sgs(th1,th2), |
2386 | 937 |
der = infer_derivs (Combination, [der1, der2]), |
938 |
maxidx = Int.max(max1,max2), |
|
939 |
shyps = union_sort(shyps1,shyps2), |
|
940 |
hyps = union_term(hyps1,hyps2), |
|
941 |
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
|
942 |
in if max1 >= 0 andalso max2 >= 0 |
2c59b204b540
Only calls nodup_Vars if really necessary. We get a speedup of nearly 6%
paulson
parents:
2047
diff
changeset
|
943 |
then nodup_Vars thm "combination" |
2386 | 944 |
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
|
945 |
end |
0 | 946 |
| _ => raise THM("combination: premises", 0, [th1,th2]) |
947 |
end; |
|
948 |
||
949 |
||
950 |
(* Equality introduction |
|
3529 | 951 |
A ==> B B ==> A |
952 |
---------------- |
|
953 |
A == B |
|
1220 | 954 |
*) |
0 | 955 |
fun equal_intr th1 th2 = |
1529 | 956 |
let val Thm{der=der1,maxidx=max1, shyps=shyps1, hyps=hyps1, |
2386 | 957 |
prop=prop1,...} = th1 |
1529 | 958 |
and Thm{der=der2, maxidx=max2, shyps=shyps2, hyps=hyps2, |
2386 | 959 |
prop=prop2,...} = th2; |
1529 | 960 |
fun err(msg) = raise THM("equal_intr: "^msg, 0, [th1,th2]) |
961 |
in case (prop1,prop2) of |
|
962 |
(Const("==>",_) $ A $ B, Const("==>",_) $ B' $ A') => |
|
2386 | 963 |
if A aconv A' andalso B aconv B' |
964 |
then |
|
965 |
(*no fix_shyps*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
966 |
Thm{sign_ref = merge_thm_sgs(th1,th2), |
2386 | 967 |
der = infer_derivs (Equal_intr, [der1, der2]), |
968 |
maxidx = Int.max(max1,max2), |
|
969 |
shyps = union_sort(shyps1,shyps2), |
|
970 |
hyps = union_term(hyps1,hyps2), |
|
971 |
prop = Logic.mk_equals(A,B)} |
|
972 |
else err"not equal" |
|
1529 | 973 |
| _ => err"premises" |
974 |
end; |
|
975 |
||
976 |
||
977 |
(*The equal propositions rule |
|
3529 | 978 |
A == B A |
1529 | 979 |
--------- |
980 |
B |
|
981 |
*) |
|
982 |
fun equal_elim th1 th2 = |
|
983 |
let val Thm{der=der1, maxidx=max1, hyps=hyps1, prop=prop1,...} = th1 |
|
984 |
and Thm{der=der2, maxidx=max2, hyps=hyps2, prop=prop2,...} = th2; |
|
985 |
fun err(msg) = raise THM("equal_elim: "^msg, 0, [th1,th2]) |
|
986 |
in case prop1 of |
|
987 |
Const("==",_) $ A $ B => |
|
988 |
if not (prop2 aconv A) then err"not equal" else |
|
989 |
fix_shyps [th1, th2] [] |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
990 |
(Thm{sign_ref= merge_thm_sgs(th1,th2), |
2386 | 991 |
der = infer_derivs (Equal_elim, [der1, der2]), |
992 |
maxidx = Int.max(max1,max2), |
|
993 |
shyps = [], |
|
994 |
hyps = union_term(hyps1,hyps2), |
|
995 |
prop = B}) |
|
1529 | 996 |
| _ => err"major premise" |
997 |
end; |
|
0 | 998 |
|
1220 | 999 |
|
1000 |
||
0 | 1001 |
(**** Derived rules ****) |
1002 |
||
1503 | 1003 |
(*Discharge all hypotheses. Need not verify cterms or call fix_shyps. |
0 | 1004 |
Repeated hypotheses are discharged only once; fold cannot do this*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1005 |
fun implies_intr_hyps (Thm{sign_ref, der, maxidx, shyps, hyps=A::As, prop}) = |
1238 | 1006 |
implies_intr_hyps (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1007 |
(Thm{sign_ref = sign_ref, |
2386 | 1008 |
der = infer_derivs (Implies_intr_hyps, [der]), |
1009 |
maxidx = maxidx, |
|
1010 |
shyps = shyps, |
|
1529 | 1011 |
hyps = disch(As,A), |
2386 | 1012 |
prop = implies$A$prop}) |
0 | 1013 |
| implies_intr_hyps th = th; |
1014 |
||
1015 |
(*Smash" unifies the list of term pairs leaving no flex-flex pairs. |
|
250 | 1016 |
Instantiates the theorem and deletes trivial tpairs. |
0 | 1017 |
Resulting sequence may contain multiple elements if the tpairs are |
1018 |
not all flex-flex. *) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1019 |
fun flexflex_rule (th as Thm{sign_ref, der, maxidx, hyps, prop,...}) = |
250 | 1020 |
let fun newthm env = |
1529 | 1021 |
if Envir.is_empty env then th |
1022 |
else |
|
250 | 1023 |
let val (tpairs,horn) = |
1024 |
Logic.strip_flexpairs (Envir.norm_term env prop) |
|
1025 |
(*Remove trivial tpairs, of the form t=t*) |
|
1026 |
val distpairs = filter (not o op aconv) tpairs |
|
1027 |
val newprop = Logic.list_flexpairs(distpairs, horn) |
|
1220 | 1028 |
in fix_shyps [th] (env_codT env) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1029 |
(Thm{sign_ref = sign_ref, |
2386 | 1030 |
der = infer_derivs (Flexflex_rule env, [der]), |
1031 |
maxidx = maxidx_of_term newprop, |
|
1032 |
shyps = [], |
|
1033 |
hyps = hyps, |
|
1034 |
prop = newprop}) |
|
250 | 1035 |
end; |
0 | 1036 |
val (tpairs,_) = Logic.strip_flexpairs prop |
4270 | 1037 |
in Seq.map newthm |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1038 |
(Unify.smash_unifiers(Sign.deref sign_ref, Envir.empty maxidx, tpairs)) |
0 | 1039 |
end; |
1040 |
||
1041 |
(*Instantiation of Vars |
|
1220 | 1042 |
A |
1043 |
------------------- |
|
1044 |
A[t1/v1,....,tn/vn] |
|
1045 |
*) |
|
0 | 1046 |
|
1047 |
(*Check that all the terms are Vars and are distinct*) |
|
1048 |
fun instl_ok ts = forall is_Var ts andalso null(findrep ts); |
|
1049 |
||
1050 |
(*For instantiate: process pair of cterms, merge theories*) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1051 |
fun add_ctpair ((ct,cu), (sign_ref,tpairs)) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1052 |
let val Cterm {sign_ref=sign_reft, t=t, T= T, ...} = ct |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1053 |
and Cterm {sign_ref=sign_refu, t=u, T= U, ...} = cu |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1054 |
in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1055 |
if T=U then |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1056 |
(Sign.merge_refs (sign_ref, Sign.merge_refs (sign_reft, sign_refu)), (t,u)::tpairs) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1057 |
else raise TYPE("add_ctpair", [T,U], [t,u]) |
0 | 1058 |
end; |
1059 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1060 |
fun add_ctyp ((v,ctyp), (sign_ref',vTs)) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1061 |
let val Ctyp {T,sign_ref} = ctyp |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1062 |
in (Sign.merge_refs(sign_ref,sign_ref'), (v,T)::vTs) end; |
0 | 1063 |
|
1064 |
(*Left-to-right replacements: ctpairs = [...,(vi,ti),...]. |
|
1065 |
Instantiates distinct Vars by terms of same type. |
|
1066 |
Normalizes the new theorem! *) |
|
1529 | 1067 |
fun instantiate ([], []) th = th |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1068 |
| instantiate (vcTs,ctpairs) (th as Thm{sign_ref,der,maxidx,hyps,prop,...}) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1069 |
let val (newsign_ref,tpairs) = foldr add_ctpair (ctpairs, (sign_ref,[])); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1070 |
val (newsign_ref,vTs) = foldr add_ctyp (vcTs, (newsign_ref,[])); |
250 | 1071 |
val newprop = |
1072 |
Envir.norm_term (Envir.empty 0) |
|
1073 |
(subst_atomic tpairs |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1074 |
(Type.inst_term_tvars(Sign.tsig_of (Sign.deref newsign_ref),vTs) prop)) |
1220 | 1075 |
val newth = |
1076 |
fix_shyps [th] (map snd vTs) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1077 |
(Thm{sign_ref = newsign_ref, |
2386 | 1078 |
der = infer_derivs (Instantiate(vcTs,ctpairs), [der]), |
1079 |
maxidx = maxidx_of_term newprop, |
|
1080 |
shyps = [], |
|
1081 |
hyps = hyps, |
|
1082 |
prop = newprop}) |
|
250 | 1083 |
in if not(instl_ok(map #1 tpairs)) |
193 | 1084 |
then raise THM("instantiate: variables not distinct", 0, [th]) |
1085 |
else if not(null(findrep(map #1 vTs))) |
|
1086 |
then raise THM("instantiate: type variables not distinct", 0, [th]) |
|
2147 | 1087 |
else nodup_Vars newth "instantiate" |
0 | 1088 |
end |
250 | 1089 |
handle TERM _ => |
0 | 1090 |
raise THM("instantiate: incompatible signatures",0,[th]) |
2671 | 1091 |
| TYPE (msg,_,_) => raise THM("instantiate: type conflict: " ^ msg, |
1092 |
0, [th]); |
|
0 | 1093 |
|
1094 |
(*The trivial implication A==>A, justified by assume and forall rules. |
|
1095 |
A can contain Vars, not so for assume! *) |
|
250 | 1096 |
fun trivial ct : thm = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1097 |
let val Cterm {sign_ref, t=A, T, maxidx} = ct |
250 | 1098 |
in if T<>propT then |
1099 |
raise THM("trivial: the term must have type prop", 0, []) |
|
1238 | 1100 |
else fix_shyps [] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1101 |
(Thm{sign_ref = sign_ref, |
2386 | 1102 |
der = infer_derivs (Trivial ct, []), |
1103 |
maxidx = maxidx, |
|
1104 |
shyps = [], |
|
1105 |
hyps = [], |
|
1106 |
prop = implies$A$A}) |
|
0 | 1107 |
end; |
1108 |
||
1503 | 1109 |
(*Axiom-scheme reflecting signature contents: "OFCLASS(?'a::c, c_class)" *) |
399
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1110 |
fun class_triv thy c = |
1529 | 1111 |
let val sign = sign_of thy; |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1112 |
val Cterm {sign_ref, t, maxidx, ...} = |
2386 | 1113 |
cterm_of sign (Logic.mk_inclass (TVar (("'a", 0), [c]), c)) |
1114 |
handle TERM (msg, _) => raise THM ("class_triv: " ^ msg, 0, []); |
|
399
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1115 |
in |
1238 | 1116 |
fix_shyps [] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1117 |
(Thm {sign_ref = sign_ref, |
4182 | 1118 |
der = infer_derivs (Class_triv c, []), |
2386 | 1119 |
maxidx = maxidx, |
1120 |
shyps = [], |
|
1121 |
hyps = [], |
|
1122 |
prop = t}) |
|
399
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1123 |
end; |
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1124 |
|
86cc2b98f9e0
added class_triv: theory -> class -> thm (for axclasses);
wenzelm
parents:
387
diff
changeset
|
1125 |
|
0 | 1126 |
(* Replace all TFrees not in the hyps by new TVars *) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1127 |
fun varifyT(Thm{sign_ref,der,maxidx,shyps,hyps,prop}) = |
0 | 1128 |
let val tfrees = foldr add_term_tfree_names (hyps,[]) |
1634 | 1129 |
in let val thm = (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1130 |
Thm{sign_ref = sign_ref, |
2386 | 1131 |
der = infer_derivs (VarifyT, [der]), |
1132 |
maxidx = Int.max(0,maxidx), |
|
1133 |
shyps = shyps, |
|
1134 |
hyps = hyps, |
|
1529 | 1135 |
prop = Type.varify(prop,tfrees)} |
2147 | 1136 |
in nodup_Vars thm "varifyT" end |
1634 | 1137 |
(* this nodup_Vars check can be removed if thms are guaranteed not to contain |
1138 |
duplicate TVars with differnt sorts *) |
|
0 | 1139 |
end; |
1140 |
||
1141 |
(* Replace all TVars by new TFrees *) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1142 |
fun freezeT(Thm{sign_ref,der,maxidx,shyps,hyps,prop}) = |
3410 | 1143 |
let val (prop',_) = Type.freeze_thaw prop |
1238 | 1144 |
in (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1145 |
Thm{sign_ref = sign_ref, |
2386 | 1146 |
der = infer_derivs (FreezeT, [der]), |
1147 |
maxidx = maxidx_of_term prop', |
|
1148 |
shyps = shyps, |
|
1149 |
hyps = hyps, |
|
1529 | 1150 |
prop = prop'} |
1220 | 1151 |
end; |
0 | 1152 |
|
1153 |
||
1154 |
(*** Inference rules for tactics ***) |
|
1155 |
||
1156 |
(*Destruct proof state into constraints, other goals, goal(i), rest *) |
|
1157 |
fun dest_state (state as Thm{prop,...}, i) = |
|
1158 |
let val (tpairs,horn) = Logic.strip_flexpairs prop |
|
1159 |
in case Logic.strip_prems(i, [], horn) of |
|
1160 |
(B::rBs, C) => (tpairs, rev rBs, B, C) |
|
1161 |
| _ => raise THM("dest_state", i, [state]) |
|
1162 |
end |
|
1163 |
handle TERM _ => raise THM("dest_state", i, [state]); |
|
1164 |
||
309 | 1165 |
(*Increment variables and parameters of orule as required for |
0 | 1166 |
resolution with goal i of state. *) |
1167 |
fun lift_rule (state, i) orule = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1168 |
let val Thm{shyps=sshyps, prop=sprop, maxidx=smax, sign_ref=ssign_ref,...} = state |
0 | 1169 |
val (Bi::_, _) = Logic.strip_prems(i, [], Logic.skip_flexpairs sprop) |
1529 | 1170 |
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
|
1171 |
val ct_Bi = Cterm {sign_ref=ssign_ref, maxidx=smax, T=propT, t=Bi} |
1529 | 1172 |
val (lift_abs,lift_all) = Logic.lift_fns(Bi,smax+1) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1173 |
val (Thm{sign_ref, der, maxidx,shyps,hyps,prop}) = orule |
0 | 1174 |
val (tpairs,As,B) = Logic.strip_horn prop |
1238 | 1175 |
in (*no fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1176 |
Thm{sign_ref = merge_thm_sgs(state,orule), |
2386 | 1177 |
der = infer_derivs (Lift_rule(ct_Bi, i), [der]), |
1178 |
maxidx = maxidx+smax+1, |
|
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
1179 |
shyps=union_sort(sshyps,shyps), |
2386 | 1180 |
hyps=hyps, |
1529 | 1181 |
prop = Logic.rule_of (map (pairself lift_abs) tpairs, |
2386 | 1182 |
map lift_all As, |
1183 |
lift_all B)} |
|
0 | 1184 |
end; |
1185 |
||
1186 |
(*Solve subgoal Bi of proof state B1...Bn/C by assumption. *) |
|
1187 |
fun assumption i state = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1188 |
let val Thm{sign_ref,der,maxidx,hyps,prop,...} = state; |
0 | 1189 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
250 | 1190 |
fun newth (env as Envir.Envir{maxidx, ...}, tpairs) = |
1220 | 1191 |
fix_shyps [state] (env_codT env) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1192 |
(Thm{sign_ref = sign_ref, |
2386 | 1193 |
der = infer_derivs (Assumption (i, Some env), [der]), |
1194 |
maxidx = maxidx, |
|
1195 |
shyps = [], |
|
1196 |
hyps = hyps, |
|
1197 |
prop = |
|
1198 |
if Envir.is_empty env then (*avoid wasted normalizations*) |
|
1199 |
Logic.rule_of (tpairs, Bs, C) |
|
1200 |
else (*normalize the new rule fully*) |
|
1201 |
Envir.norm_term env (Logic.rule_of (tpairs, Bs, C))}); |
|
4270 | 1202 |
fun addprfs [] = Seq.empty |
1203 |
| addprfs ((t,u)::apairs) = Seq.make (fn()=> Seq.pull |
|
1204 |
(Seq.mapp newth |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1205 |
(Unify.unifiers(Sign.deref sign_ref,Envir.empty maxidx, (t,u)::tpairs)) |
250 | 1206 |
(addprfs apairs))) |
0 | 1207 |
in addprfs (Logic.assum_pairs Bi) end; |
1208 |
||
250 | 1209 |
(*Solve subgoal Bi of proof state B1...Bn/C by assumption. |
0 | 1210 |
Checks if Bi's conclusion is alpha-convertible to one of its assumptions*) |
1211 |
fun eq_assumption i state = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1212 |
let val Thm{sign_ref,der,maxidx,hyps,prop,...} = state; |
0 | 1213 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
1214 |
in if exists (op aconv) (Logic.assum_pairs Bi) |
|
1220 | 1215 |
then fix_shyps [state] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1216 |
(Thm{sign_ref = sign_ref, |
2386 | 1217 |
der = infer_derivs (Assumption (i,None), [der]), |
1218 |
maxidx = maxidx, |
|
1219 |
shyps = [], |
|
1220 |
hyps = hyps, |
|
1221 |
prop = Logic.rule_of(tpairs, Bs, C)}) |
|
0 | 1222 |
else raise THM("eq_assumption", 0, [state]) |
1223 |
end; |
|
1224 |
||
1225 |
||
2671 | 1226 |
(*For rotate_tac: fast rotation of assumptions of subgoal i*) |
1227 |
fun rotate_rule k i state = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1228 |
let val Thm{sign_ref,der,maxidx,hyps,prop,shyps} = state; |
2671 | 1229 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
1230 |
val params = Logic.strip_params Bi |
|
1231 |
and asms = Logic.strip_assums_hyp Bi |
|
1232 |
and concl = Logic.strip_assums_concl Bi |
|
1233 |
val n = length asms |
|
1234 |
fun rot m = if 0=m orelse m=n then Bi |
|
1235 |
else if 0<m andalso m<n |
|
1236 |
then list_all |
|
1237 |
(params, |
|
1238 |
Logic.list_implies(List.drop(asms, m) @ |
|
1239 |
List.take(asms, m), |
|
1240 |
concl)) |
|
1241 |
else raise THM("rotate_rule", m, [state]) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1242 |
in Thm{sign_ref = sign_ref, |
2671 | 1243 |
der = infer_derivs (Rotate_rule (k,i), [der]), |
1244 |
maxidx = maxidx, |
|
1245 |
shyps = shyps, |
|
1246 |
hyps = hyps, |
|
1247 |
prop = Logic.rule_of(tpairs, Bs@[rot (if k<0 then n+k else k)], C)} |
|
1248 |
end; |
|
1249 |
||
1250 |
||
0 | 1251 |
(** User renaming of parameters in a subgoal **) |
1252 |
||
1253 |
(*Calls error rather than raising an exception because it is intended |
|
1254 |
for top-level use -- exception handling would not make sense here. |
|
1255 |
The names in cs, if distinct, are used for the innermost parameters; |
|
1256 |
preceding parameters may be renamed to make all params distinct.*) |
|
1257 |
fun rename_params_rule (cs, i) state = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1258 |
let val Thm{sign_ref,der,maxidx,hyps,...} = state |
0 | 1259 |
val (tpairs, Bs, Bi, C) = dest_state(state,i) |
1260 |
val iparams = map #1 (Logic.strip_params Bi) |
|
1261 |
val short = length iparams - length cs |
|
250 | 1262 |
val newnames = |
1263 |
if short<0 then error"More names than abstractions!" |
|
1264 |
else variantlist(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
|
1265 |
val freenames = map (#1 o dest_Free) (term_frees Bi) |
0 | 1266 |
val newBi = Logic.list_rename_params (newnames, Bi) |
250 | 1267 |
in |
0 | 1268 |
case findrep cs of |
3565
c64410e701fb
Now rename_params_rule merely issues warnings--and does nothing--if the
paulson
parents:
3558
diff
changeset
|
1269 |
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
|
1270 |
state) |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1569
diff
changeset
|
1271 |
| [] => (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
|
1272 |
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
|
1273 |
state) |
1220 | 1274 |
| [] => fix_shyps [state] [] |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1275 |
(Thm{sign_ref = sign_ref, |
2386 | 1276 |
der = infer_derivs (Rename_params_rule(cs,i), [der]), |
1277 |
maxidx = maxidx, |
|
1278 |
shyps = [], |
|
1279 |
hyps = hyps, |
|
1280 |
prop = Logic.rule_of(tpairs, Bs@[newBi], C)})) |
|
0 | 1281 |
end; |
1282 |
||
1283 |
(*** Preservation of bound variable names ***) |
|
1284 |
||
250 | 1285 |
(*Scan a pair of terms; while they are similar, |
0 | 1286 |
accumulate corresponding bound vars in "al"*) |
1238 | 1287 |
fun match_bvs(Abs(x,_,s),Abs(y,_,t), al) = |
1195
686e3eb613b9
match_bvs no longer puts a name in the alist if it is null ("")
lcp
parents:
1160
diff
changeset
|
1288 |
match_bvs(s, t, if x="" orelse y="" then al |
1238 | 1289 |
else (x,y)::al) |
0 | 1290 |
| match_bvs(f$s, g$t, al) = match_bvs(f,g,match_bvs(s,t,al)) |
1291 |
| match_bvs(_,_,al) = al; |
|
1292 |
||
1293 |
(* strip abstractions created by parameters *) |
|
1294 |
fun match_bvars((s,t),al) = match_bvs(strip_abs_body s, strip_abs_body t, al); |
|
1295 |
||
1296 |
||
250 | 1297 |
(* strip_apply f A(,B) strips off all assumptions/parameters from A |
0 | 1298 |
introduced by lifting over B, and applies f to remaining part of A*) |
1299 |
fun strip_apply f = |
|
1300 |
let fun strip(Const("==>",_)$ A1 $ B1, |
|
250 | 1301 |
Const("==>",_)$ _ $ B2) = implies $ A1 $ strip(B1,B2) |
1302 |
| strip((c as Const("all",_)) $ Abs(a,T,t1), |
|
1303 |
Const("all",_) $ Abs(_,_,t2)) = c$Abs(a,T,strip(t1,t2)) |
|
1304 |
| strip(A,_) = f A |
|
0 | 1305 |
in strip end; |
1306 |
||
1307 |
(*Use the alist to rename all bound variables and some unknowns in a term |
|
1308 |
dpairs = current disagreement pairs; tpairs = permanent ones (flexflex); |
|
1309 |
Preserves unknowns in tpairs and on lhs of dpairs. *) |
|
1310 |
fun rename_bvs([],_,_,_) = I |
|
1311 |
| rename_bvs(al,dpairs,tpairs,B) = |
|
250 | 1312 |
let val vars = foldr add_term_vars |
1313 |
(map fst dpairs @ map fst tpairs @ map snd tpairs, []) |
|
1314 |
(*unknowns appearing elsewhere be preserved!*) |
|
1315 |
val vids = map (#1 o #1 o dest_Var) vars; |
|
1316 |
fun rename(t as Var((x,i),T)) = |
|
1317 |
(case assoc(al,x) of |
|
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1569
diff
changeset
|
1318 |
Some(y) => if x mem_string vids orelse y mem_string vids then t |
250 | 1319 |
else Var((y,i),T) |
1320 |
| None=> t) |
|
0 | 1321 |
| rename(Abs(x,T,t)) = |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1569
diff
changeset
|
1322 |
Abs(case assoc_string(al,x) of Some(y) => y | None => x, |
250 | 1323 |
T, rename t) |
0 | 1324 |
| rename(f$t) = rename f $ rename t |
1325 |
| rename(t) = t; |
|
250 | 1326 |
fun strip_ren Ai = strip_apply rename (Ai,B) |
0 | 1327 |
in strip_ren end; |
1328 |
||
1329 |
(*Function to rename bounds/unknowns in the argument, lifted over B*) |
|
1330 |
fun rename_bvars(dpairs, tpairs, B) = |
|
250 | 1331 |
rename_bvs(foldr match_bvars (dpairs,[]), dpairs, tpairs, B); |
0 | 1332 |
|
1333 |
||
1334 |
(*** RESOLUTION ***) |
|
1335 |
||
721
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1336 |
(** Lifting optimizations **) |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1337 |
|
0 | 1338 |
(*strip off pairs of assumptions/parameters in parallel -- they are |
1339 |
identical because of lifting*) |
|
250 | 1340 |
fun strip_assums2 (Const("==>", _) $ _ $ B1, |
1341 |
Const("==>", _) $ _ $ B2) = strip_assums2 (B1,B2) |
|
0 | 1342 |
| strip_assums2 (Const("all",_)$Abs(a,T,t1), |
250 | 1343 |
Const("all",_)$Abs(_,_,t2)) = |
0 | 1344 |
let val (B1,B2) = strip_assums2 (t1,t2) |
1345 |
in (Abs(a,T,B1), Abs(a,T,B2)) end |
|
1346 |
| strip_assums2 BB = BB; |
|
1347 |
||
1348 |
||
721
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1349 |
(*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
|
1350 |
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
|
1351 |
| 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
|
1352 |
let val Envir.Envir{iTs, ...} = env |
1238 | 1353 |
val T' = typ_subst_TVars iTs T |
1354 |
(*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
|
1355 |
this could be a NEW parameter*) |
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1356 |
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
|
1357 |
| norm_term_skip env n (Const("==>", _) $ A $ B) = |
1238 | 1358 |
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
|
1359 |
| 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
|
1360 |
|
479832ff2d29
Pure/thm/norm_term_skip: new, for skipping normalization of the context
lcp
parents:
678
diff
changeset
|
1361 |
|
0 | 1362 |
(*Composition of object rule r=(A1...Am/B) with proof state s=(B1...Bn/C) |
250 | 1363 |
Unifies B with Bi, replacing subgoal i (1 <= i <= n) |
0 | 1364 |
If match then forbid instantiations in proof state |
1365 |
If lifted then shorten the dpair using strip_assums2. |
|
1366 |
If eres_flg then simultaneously proves A1 by assumption. |
|
250 | 1367 |
nsubgoal is the number of new subgoals (written m above). |
0 | 1368 |
Curried so that resolution calls dest_state only once. |
1369 |
*) |
|
4270 | 1370 |
local exception COMPOSE |
0 | 1371 |
in |
250 | 1372 |
fun bicompose_aux match (state, (stpairs, Bs, Bi, C), lifted) |
0 | 1373 |
(eres_flg, orule, nsubgoal) = |
1529 | 1374 |
let val Thm{der=sder, maxidx=smax, shyps=sshyps, hyps=shyps, ...} = state |
1375 |
and Thm{der=rder, maxidx=rmax, shyps=rshyps, hyps=rhyps, |
|
2386 | 1376 |
prop=rprop,...} = orule |
1529 | 1377 |
(*How many hyps to skip over during normalization*) |
1238 | 1378 |
and nlift = Logic.count_prems(strip_all_body Bi, |
1379 |
if eres_flg then ~1 else 0) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1380 |
val sign_ref = merge_thm_sgs(state,orule); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1381 |
val sign = Sign.deref sign_ref; |
0 | 1382 |
(** Add new theorem with prop = '[| Bs; As |] ==> C' to thq **) |
250 | 1383 |
fun addth As ((env as Envir.Envir {maxidx, ...}, tpairs), thq) = |
1384 |
let val normt = Envir.norm_term env; |
|
1385 |
(*perform minimal copying here by examining env*) |
|
1386 |
val normp = |
|
1387 |
if Envir.is_empty env then (tpairs, Bs @ As, C) |
|
1388 |
else |
|
1389 |
let val ntps = map (pairself normt) tpairs |
|
2147 | 1390 |
in if Envir.above (smax, env) then |
1238 | 1391 |
(*no assignments in state; normalize the rule only*) |
1392 |
if lifted |
|
1393 |
then (ntps, Bs @ map (norm_term_skip env nlift) As, C) |
|
1394 |
else (ntps, Bs @ map normt As, C) |
|
1529 | 1395 |
else if match then raise COMPOSE |
250 | 1396 |
else (*normalize the new rule fully*) |
1397 |
(ntps, map normt (Bs @ As), normt C) |
|
1398 |
end |
|
1258 | 1399 |
val th = (*tuned fix_shyps*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1400 |
Thm{sign_ref = sign_ref, |
2386 | 1401 |
der = infer_derivs (Bicompose(match, eres_flg, |
1402 |
1 + length Bs, nsubgoal, env), |
|
1403 |
[rder,sder]), |
|
1404 |
maxidx = maxidx, |
|
1405 |
shyps = add_env_sorts (env, union_sort(rshyps,sshyps)), |
|
1406 |
hyps = union_term(rhyps,shyps), |
|
1407 |
prop = Logic.rule_of normp} |
|
4270 | 1408 |
in Seq.cons(th, thq) end handle COMPOSE => thq |
0 | 1409 |
val (rtpairs,rhorn) = Logic.strip_flexpairs(rprop); |
1410 |
val (rAs,B) = Logic.strip_prems(nsubgoal, [], rhorn) |
|
1411 |
handle TERM _ => raise THM("bicompose: rule", 0, [orule,state]); |
|
1412 |
(*Modify assumptions, deleting n-th if n>0 for e-resolution*) |
|
1413 |
fun newAs(As0, n, dpairs, tpairs) = |
|
1414 |
let val As1 = if !Logic.auto_rename orelse not lifted then As0 |
|
250 | 1415 |
else map (rename_bvars(dpairs,tpairs,B)) As0 |
0 | 1416 |
in (map (Logic.flatten_params n) As1) |
250 | 1417 |
handle TERM _ => |
1418 |
raise THM("bicompose: 1st premise", 0, [orule]) |
|
0 | 1419 |
end; |
2147 | 1420 |
val env = Envir.empty(Int.max(rmax,smax)); |
0 | 1421 |
val BBi = if lifted then strip_assums2(B,Bi) else (B,Bi); |
1422 |
val dpairs = BBi :: (rtpairs@stpairs); |
|
1423 |
(*elim-resolution: try each assumption in turn. Initially n=1*) |
|
4270 | 1424 |
fun tryasms (_, _, []) = Seq.empty |
0 | 1425 |
| tryasms (As, n, (t,u)::apairs) = |
4270 | 1426 |
(case Seq.pull(Unify.unifiers(sign, env, (t,u)::dpairs)) of |
250 | 1427 |
None => tryasms (As, n+1, apairs) |
1428 |
| cell as Some((_,tpairs),_) => |
|
4270 | 1429 |
Seq.it_right (addth (newAs(As, n, [BBi,(u,t)], tpairs))) |
1430 |
(Seq.make (fn()=> cell), |
|
1431 |
Seq.make (fn()=> Seq.pull (tryasms (As, n+1, apairs))))); |
|
0 | 1432 |
fun eres [] = raise THM("bicompose: no premises", 0, [orule,state]) |
1433 |
| eres (A1::As) = tryasms (As, 1, Logic.assum_pairs A1); |
|
1434 |
(*ordinary resolution*) |
|
4270 | 1435 |
fun res(None) = Seq.empty |
250 | 1436 |
| res(cell as Some((_,tpairs),_)) = |
4270 | 1437 |
Seq.it_right (addth(newAs(rev rAs, 0, [BBi], tpairs))) |
1438 |
(Seq.make (fn()=> cell), Seq.empty) |
|
0 | 1439 |
in if eres_flg then eres(rev rAs) |
4270 | 1440 |
else res(Seq.pull(Unify.unifiers(sign, env, dpairs))) |
0 | 1441 |
end; |
1442 |
end; (*open Sequence*) |
|
1443 |
||
1444 |
||
1445 |
fun bicompose match arg i state = |
|
1446 |
bicompose_aux match (state, dest_state(state,i), false) arg; |
|
1447 |
||
1448 |
(*Quick test whether rule is resolvable with the subgoal with hyps Hs |
|
1449 |
and conclusion B. If eres_flg then checks 1st premise of rule also*) |
|
1450 |
fun could_bires (Hs, B, eres_flg, rule) = |
|
1451 |
let fun could_reshyp (A1::_) = exists (apl(A1,could_unify)) Hs |
|
250 | 1452 |
| could_reshyp [] = false; (*no premise -- illegal*) |
1453 |
in could_unify(concl_of rule, B) andalso |
|
1454 |
(not eres_flg orelse could_reshyp (prems_of rule)) |
|
0 | 1455 |
end; |
1456 |
||
1457 |
(*Bi-resolution of a state with a list of (flag,rule) pairs. |
|
1458 |
Puts the rule above: rule/state. Renames vars in the rules. *) |
|
250 | 1459 |
fun biresolution match brules i state = |
0 | 1460 |
let val lift = lift_rule(state, i); |
250 | 1461 |
val (stpairs, Bs, Bi, C) = dest_state(state,i) |
1462 |
val B = Logic.strip_assums_concl Bi; |
|
1463 |
val Hs = Logic.strip_assums_hyp Bi; |
|
1464 |
val comp = bicompose_aux match (state, (stpairs, Bs, Bi, C), true); |
|
4270 | 1465 |
fun res [] = Seq.empty |
250 | 1466 |
| res ((eres_flg, rule)::brules) = |
1467 |
if could_bires (Hs, B, eres_flg, rule) |
|
4270 | 1468 |
then Seq.make (*delay processing remainder till needed*) |
250 | 1469 |
(fn()=> Some(comp (eres_flg, lift rule, nprems_of rule), |
1470 |
res brules)) |
|
1471 |
else res brules |
|
4270 | 1472 |
in Seq.flat (res brules) end; |
0 | 1473 |
|
1474 |
||
1475 |
||
2509 | 1476 |
(*** Meta Simplification ***) |
0 | 1477 |
|
2509 | 1478 |
(** diagnostics **) |
0 | 1479 |
|
1480 |
exception SIMPLIFIER of string * thm; |
|
1481 |
||
4045 | 1482 |
fun prnt warn a = if warn then warning a else writeln a; |
1483 |
||
1484 |
fun prtm warn a sign t = |
|
1485 |
(prnt warn a; prnt warn (Sign.string_of_term sign t)); |
|
1580
e3fd931e6095
Added some functions which allow redirection of Isabelle's output
berghofe
parents:
1576
diff
changeset
|
1486 |
|
209 | 1487 |
val trace_simp = ref false; |
1488 |
||
4045 | 1489 |
fun trace warn a = if !trace_simp then prnt warn a else (); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1490 |
|
4045 | 1491 |
fun trace_term warn a sign t = |
1492 |
if !trace_simp then prtm warn a sign t else (); |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1493 |
|
4045 | 1494 |
fun trace_thm warn a (thm as Thm{sign_ref, prop, ...}) = |
1495 |
(trace_term warn a (Sign.deref sign_ref) prop); |
|
209 | 1496 |
|
1497 |
||
1580
e3fd931e6095
Added some functions which allow redirection of Isabelle's output
berghofe
parents:
1576
diff
changeset
|
1498 |
|
2509 | 1499 |
(** meta simp sets **) |
1500 |
||
1501 |
(* basic components *) |
|
1580
e3fd931e6095
Added some functions which allow redirection of Isabelle's output
berghofe
parents:
1576
diff
changeset
|
1502 |
|
2509 | 1503 |
type rrule = {thm: thm, lhs: term, perm: bool}; |
1504 |
type cong = {thm: thm, lhs: term}; |
|
3577
9715b6e3ec5f
added prems argument to simplification procedures;
wenzelm
parents:
3565
diff
changeset
|
1505 |
type simproc = |
9715b6e3ec5f
added prems argument to simplification procedures;
wenzelm
parents:
3565
diff
changeset
|
1506 |
{name: string, proc: Sign.sg -> thm list -> term -> thm option, lhs: cterm, id: stamp}; |
288
b00ce6a1fe27
Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents:
274
diff
changeset
|
1507 |
|
3550 | 1508 |
fun eq_rrule ({thm = Thm {prop = p1, ...}, ...}: rrule, |
2509 | 1509 |
{thm = Thm {prop = p2, ...}, ...}: rrule) = p1 aconv p2; |
1510 |
||
3550 | 1511 |
fun eq_cong ({thm = Thm {prop = p1, ...}, ...}: cong, |
1512 |
{thm = Thm {prop = p2, ...}, ...}: cong) = p1 aconv p2; |
|
1513 |
||
1514 |
fun eq_prem (Thm {prop = p1, ...}, Thm {prop = p2, ...}) = p1 aconv p2; |
|
1515 |
||
1516 |
fun eq_simproc ({id = s1, ...}:simproc, {id = s2, ...}:simproc) = (s1 = s2); |
|
1517 |
||
1518 |
fun mk_simproc (name, proc, lhs, id) = |
|
1519 |
{name = name, proc = proc, lhs = lhs, id = id}; |
|
2509 | 1520 |
|
1521 |
||
1522 |
(* datatype mss *) |
|
288
b00ce6a1fe27
Implemented "ordered rewriting": rules which merely permute variables, such
nipkow
parents:
274
diff
changeset
|
1523 |
|
2509 | 1524 |
(* |
1525 |
A "mss" contains data needed during conversion: |
|
1526 |
rules: discrimination net of rewrite rules; |
|
1527 |
congs: association list of congruence rules; |
|
1528 |
procs: discrimination net of simplification procedures |
|
1529 |
(functions that prove rewrite rules on the fly); |
|
1530 |
bounds: names of bound variables already used |
|
1531 |
(for generating new names when rewriting under lambda abstractions); |
|
1532 |
prems: current premises; |
|
1533 |
mk_rews: turns simplification thms into rewrite rules; |
|
1534 |
termless: relation for ordered rewriting; |
|
1028 | 1535 |
*) |
0 | 1536 |
|
2509 | 1537 |
datatype meta_simpset = |
1538 |
Mss of { |
|
1539 |
rules: rrule Net.net, |
|
1540 |
congs: (string * cong) list, |
|
1541 |
procs: simproc Net.net, |
|
1542 |
bounds: string list, |
|
1543 |
prems: thm list, |
|
1544 |
mk_rews: thm -> thm list, |
|
1545 |
termless: term * term -> bool}; |
|
1546 |
||
1547 |
fun mk_mss (rules, congs, procs, bounds, prems, mk_rews, termless) = |
|
1548 |
Mss {rules = rules, congs = congs, procs = procs, bounds = bounds, |
|
1549 |
prems = prems, mk_rews = mk_rews, termless = termless}; |
|
1550 |
||
1551 |
val empty_mss = |
|
1552 |
mk_mss (Net.empty, [], Net.empty, [], [], K [], Logic.termless); |
|
1553 |
||
1554 |
||
1555 |
||
1556 |
(** simpset operations **) |
|
1557 |
||
3550 | 1558 |
(* dest_mss *) |
1559 |
||
1560 |
fun dest_mss (Mss {rules, congs, procs, ...}) = |
|
1561 |
{simps = map (fn (_, {thm, ...}) => thm) (Net.dest rules), |
|
1562 |
congs = map (fn (_, {thm, ...}) => thm) congs, |
|
1563 |
procs = |
|
1564 |
map (fn (_, {name, lhs, id, ...}) => ((name, lhs), id)) (Net.dest procs) |
|
1565 |
|> partition_eq eq_snd |
|
1566 |
|> map (fn ps => (#1 (#1 (hd ps)), map (#2 o #1) ps))}; |
|
1567 |
||
1568 |
||
1569 |
(* merge_mss *) (*NOTE: ignores mk_rews and termless of 2nd mss*) |
|
1570 |
||
1571 |
fun merge_mss |
|
1572 |
(Mss {rules = rules1, congs = congs1, procs = procs1, bounds = bounds1, |
|
1573 |
prems = prems1, mk_rews, termless}, |
|
1574 |
Mss {rules = rules2, congs = congs2, procs = procs2, bounds = bounds2, |
|
1575 |
prems = prems2, ...}) = |
|
1576 |
mk_mss |
|
1577 |
(Net.merge (rules1, rules2, eq_rrule), |
|
1578 |
generic_merge (eq_cong o pairself snd) I I congs1 congs2, |
|
1579 |
Net.merge (procs1, procs2, eq_simproc), |
|
1580 |
merge_lists bounds1 bounds2, |
|
1581 |
generic_merge eq_prem I I prems1 prems2, |
|
1582 |
mk_rews, termless); |
|
1583 |
||
1584 |
||
2509 | 1585 |
(* mk_rrule *) |
1586 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1587 |
fun mk_rrule (thm as Thm {sign_ref, prop, ...}) = |
1238 | 1588 |
let |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1589 |
val sign = Sign.deref sign_ref; |
2509 | 1590 |
val prems = Logic.strip_imp_prems prop; |
1591 |
val concl = Logic.strip_imp_concl prop; |
|
3893
5a1f22e7b359
The simplifier has been improved a little: equations s=t which used to be
nipkow
parents:
3812
diff
changeset
|
1592 |
val (lhs, rhs) = Logic.dest_equals concl handle TERM _ => |
2509 | 1593 |
raise SIMPLIFIER ("Rewrite rule not a meta-equality", thm); |
4116 | 1594 |
in case Logic.rewrite_rule_ok sign prems lhs rhs of |
3893
5a1f22e7b359
The simplifier has been improved a little: equations s=t which used to be
nipkow
parents:
3812
diff
changeset
|
1595 |
(None,perm) => Some {thm = thm, lhs = lhs, perm = perm} |
5a1f22e7b359
The simplifier has been improved a little: equations s=t which used to be
nipkow
parents:
3812
diff
changeset
|
1596 |
| (Some msg,_) => |
4045 | 1597 |
(prtm true ("ignoring rewrite rule ("^msg^")") sign prop; None) |
0 | 1598 |
end; |
1599 |
||
2509 | 1600 |
|
1601 |
(* add_simps *) |
|
87 | 1602 |
|
2509 | 1603 |
fun add_simp |
1604 |
(mss as Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1605 |
thm as Thm {sign_ref, prop, ...}) = |
2509 | 1606 |
(case mk_rrule thm of |
87 | 1607 |
None => mss |
2509 | 1608 |
| Some (rrule as {lhs, ...}) => |
4045 | 1609 |
(trace_thm false "Adding rewrite rule:" thm; |
2509 | 1610 |
mk_mss (Net.insert_term ((lhs, rrule), rules, eq_rrule) handle Net.INSERT => |
4045 | 1611 |
(prtm true "ignoring duplicate rewrite rule" (Sign.deref sign_ref) prop; rules), |
2509 | 1612 |
congs, procs, bounds, prems, mk_rews, termless))); |
0 | 1613 |
|
1614 |
val add_simps = foldl add_simp; |
|
2509 | 1615 |
|
1616 |
fun mss_of thms = add_simps (empty_mss, thms); |
|
1617 |
||
1618 |
||
1619 |
(* del_simps *) |
|
1620 |
||
1621 |
fun del_simp |
|
1622 |
(mss as Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1623 |
thm as Thm {sign_ref, prop, ...}) = |
2509 | 1624 |
(case mk_rrule thm of |
1625 |
None => mss |
|
1626 |
| Some (rrule as {lhs, ...}) => |
|
1627 |
mk_mss (Net.delete_term ((lhs, rrule), rules, eq_rrule) handle Net.DELETE => |
|
4045 | 1628 |
(prtm true "rewrite rule not in simpset" (Sign.deref sign_ref) prop; rules), |
2509 | 1629 |
congs, procs, bounds, prems, mk_rews, termless)); |
1630 |
||
87 | 1631 |
val del_simps = foldl del_simp; |
0 | 1632 |
|
2509 | 1633 |
|
2626 | 1634 |
(* add_congs *) |
0 | 1635 |
|
2509 | 1636 |
fun add_cong (Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, thm) = |
1637 |
let |
|
1638 |
val (lhs, _) = Logic.dest_equals (concl_of thm) handle TERM _ => |
|
1639 |
raise SIMPLIFIER ("Congruence not a meta-equality", thm); |
|
1640 |
(* val lhs = Pattern.eta_contract lhs; *) |
|
1641 |
val (a, _) = dest_Const (head_of lhs) handle TERM _ => |
|
1642 |
raise SIMPLIFIER ("Congruence must start with a constant", thm); |
|
1643 |
in |
|
1644 |
mk_mss (rules, (a, {lhs = lhs, thm = thm}) :: congs, procs, bounds, |
|
1645 |
prems, mk_rews, termless) |
|
0 | 1646 |
end; |
1647 |
||
1648 |
val (op add_congs) = foldl add_cong; |
|
1649 |
||
2509 | 1650 |
|
2626 | 1651 |
(* del_congs *) |
1652 |
||
1653 |
fun del_cong (Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, thm) = |
|
1654 |
let |
|
1655 |
val (lhs, _) = Logic.dest_equals (concl_of thm) handle TERM _ => |
|
1656 |
raise SIMPLIFIER ("Congruence not a meta-equality", thm); |
|
1657 |
(* val lhs = Pattern.eta_contract lhs; *) |
|
1658 |
val (a, _) = dest_Const (head_of lhs) handle TERM _ => |
|
1659 |
raise SIMPLIFIER ("Congruence must start with a constant", thm); |
|
1660 |
in |
|
1661 |
mk_mss (rules, filter (fn (x,_)=> x<>a) congs, procs, bounds, |
|
1662 |
prems, mk_rews, termless) |
|
1663 |
end; |
|
1664 |
||
1665 |
val (op del_congs) = foldl del_cong; |
|
1666 |
||
1667 |
||
2509 | 1668 |
(* add_simprocs *) |
1669 |
||
3550 | 1670 |
fun add_proc (mss as Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1671 |
(name, lhs as Cterm {sign_ref, t, ...}, proc, id)) = |
4045 | 1672 |
(trace_term false ("Adding simplification procedure " ^ quote name ^ " for:") |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1673 |
(Sign.deref sign_ref) t; |
2509 | 1674 |
mk_mss (rules, congs, |
3550 | 1675 |
Net.insert_term ((t, mk_simproc (name, proc, lhs, id)), procs, eq_simproc) |
4045 | 1676 |
handle Net.INSERT => (trace true "ignored duplicate"; procs), |
2509 | 1677 |
bounds, prems, mk_rews, termless)); |
0 | 1678 |
|
3550 | 1679 |
fun add_simproc (mss, (name, lhss, proc, id)) = |
1680 |
foldl add_proc (mss, map (fn lhs => (name, lhs, proc, id)) lhss); |
|
1681 |
||
2509 | 1682 |
val add_simprocs = foldl add_simproc; |
1683 |
||
1684 |
||
1685 |
(* del_simprocs *) |
|
0 | 1686 |
|
3550 | 1687 |
fun del_proc (mss as Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, |
1688 |
(name, lhs as Cterm {t, ...}, proc, id)) = |
|
2509 | 1689 |
mk_mss (rules, congs, |
3550 | 1690 |
Net.delete_term ((t, mk_simproc (name, proc, lhs, id)), procs, eq_simproc) |
4045 | 1691 |
handle Net.DELETE => (trace true "simplification procedure not in simpset"; procs), |
3550 | 1692 |
bounds, prems, mk_rews, termless); |
1693 |
||
1694 |
fun del_simproc (mss, (name, lhss, proc, id)) = |
|
1695 |
foldl del_proc (mss, map (fn lhs => (name, lhs, proc, id)) lhss); |
|
2509 | 1696 |
|
1697 |
val del_simprocs = foldl del_simproc; |
|
0 | 1698 |
|
1699 |
||
2509 | 1700 |
(* prems *) |
1701 |
||
1702 |
fun add_prems (Mss {rules, congs, procs, bounds, prems, mk_rews, termless}, thms) = |
|
1703 |
mk_mss (rules, congs, procs, bounds, thms @ prems, mk_rews, termless); |
|
1704 |
||
1705 |
fun prems_of_mss (Mss {prems, ...}) = prems; |
|
1706 |
||
1707 |
||
1708 |
(* mk_rews *) |
|
1709 |
||
1710 |
fun set_mk_rews |
|
1711 |
(Mss {rules, congs, procs, bounds, prems, mk_rews = _, termless}, mk_rews) = |
|
1712 |
mk_mss (rules, congs, procs, bounds, prems, mk_rews, termless); |
|
1713 |
||
1714 |
fun mk_rews_of_mss (Mss {mk_rews, ...}) = mk_rews; |
|
1715 |
||
1716 |
||
1717 |
(* termless *) |
|
1718 |
||
1719 |
fun set_termless |
|
1720 |
(Mss {rules, congs, procs, bounds, prems, mk_rews, termless = _}, termless) = |
|
1721 |
mk_mss (rules, congs, procs, bounds, prems, mk_rews, termless); |
|
1722 |
||
1723 |
||
1724 |
||
1725 |
(** rewriting **) |
|
1726 |
||
1727 |
(* |
|
1728 |
Uses conversions, omitting proofs for efficiency. See: |
|
1729 |
L C Paulson, A higher-order implementation of rewriting, |
|
1730 |
Science of Computer Programming 3 (1983), pages 119-149. |
|
1731 |
*) |
|
0 | 1732 |
|
1733 |
type prover = meta_simpset -> thm -> thm option; |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1734 |
type termrec = (Sign.sg_ref * term list) * term; |
0 | 1735 |
type conv = meta_simpset -> termrec -> termrec; |
1736 |
||
4116 | 1737 |
fun check_conv (thm as Thm{shyps,hyps,prop,sign_ref,der,...}, prop0, ders) = |
4045 | 1738 |
let fun err() = (trace_thm false "Proved wrong thm (Check subgoaler?)" thm; |
1739 |
trace_term false "Should have proved" (Sign.deref sign_ref) prop0; |
|
432 | 1740 |
None) |
0 | 1741 |
val (lhs0,_) = Logic.dest_equals(Logic.strip_imp_concl prop0) |
1742 |
in case prop of |
|
1743 |
Const("==",_) $ lhs $ rhs => |
|
1744 |
if (lhs = lhs0) orelse |
|
427
4ce2ce940faf
ordered rewriting applies to conditional rules as well now
nipkow
parents:
421
diff
changeset
|
1745 |
(lhs aconv Envir.norm_term (Envir.empty 0) lhs0) |
4045 | 1746 |
then (trace_thm false "SUCCEEDED" thm; |
4116 | 1747 |
Some(shyps, hyps, rhs, der::ders)) |
0 | 1748 |
else err() |
1749 |
| _ => err() |
|
1750 |
end; |
|
1751 |
||
659
95ed2ccb4438
Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents:
623
diff
changeset
|
1752 |
fun ren_inst(insts,prop,pat,obj) = |
95ed2ccb4438
Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents:
623
diff
changeset
|
1753 |
let val ren = match_bvs(pat,obj,[]) |
95ed2ccb4438
Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents:
623
diff
changeset
|
1754 |
fun renAbs(Abs(x,T,b)) = |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1569
diff
changeset
|
1755 |
Abs(case assoc_string(ren,x) of None => x | Some(y) => y, T, renAbs(b)) |
659
95ed2ccb4438
Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents:
623
diff
changeset
|
1756 |
| renAbs(f$t) = renAbs(f) $ renAbs(t) |
95ed2ccb4438
Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents:
623
diff
changeset
|
1757 |
| renAbs(t) = t |
95ed2ccb4438
Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents:
623
diff
changeset
|
1758 |
in subst_vars insts (if null(ren) then prop else renAbs(prop)) end; |
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
659
diff
changeset
|
1759 |
|
1258 | 1760 |
fun add_insts_sorts ((iTs, is), Ss) = |
1761 |
add_typs_sorts (map snd iTs, add_terms_sorts (map snd is, Ss)); |
|
1762 |
||
659
95ed2ccb4438
Prepared the code for preservation of bound var names during rewriting. Still
nipkow
parents:
623
diff
changeset
|
1763 |
|
2509 | 1764 |
(* mk_procrule *) |
1765 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1766 |
fun mk_procrule (thm as Thm {sign_ref, prop, ...}) = |
2509 | 1767 |
let |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1768 |
val sign = Sign.deref sign_ref; |
2509 | 1769 |
val prems = Logic.strip_imp_prems prop; |
1770 |
val concl = Logic.strip_imp_concl prop; |
|
1771 |
val (lhs, _) = Logic.dest_equals concl handle TERM _ => |
|
1772 |
raise SIMPLIFIER ("Rewrite rule not a meta-equality", thm); |
|
1773 |
val econcl = Pattern.eta_contract concl; |
|
1774 |
val (elhs, erhs) = Logic.dest_equals econcl; |
|
4116 | 1775 |
in case Logic.rewrite_rule_extra_vars prems elhs erhs of |
1776 |
Some msg => (prtm true msg sign prop; []) |
|
1777 |
| None => [{thm = thm, lhs = lhs, perm = false}] |
|
2509 | 1778 |
end; |
1779 |
||
1780 |
||
1781 |
(* conversion to apply the meta simpset to a term *) |
|
1782 |
||
1783 |
(* |
|
1784 |
we try in order: |
|
1785 |
(1) beta reduction |
|
1786 |
(2) unconditional rewrite rules |
|
1787 |
(3) conditional rewrite rules |
|
3550 | 1788 |
(4) simplification procedures |
4116 | 1789 |
|
1790 |
IMPORTANT: rewrite rules must not introduce new Vars or TVars! |
|
1791 |
||
2509 | 1792 |
*) |
1793 |
||
4116 | 1794 |
fun rewritec (prover,sign_reft,maxt) |
1795 |
(mss as Mss{rules, procs, mk_rews, termless, prems, ...}) |
|
1796 |
(shypst,hypst,t,ders) = |
|
3550 | 1797 |
let |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1798 |
val signt = Sign.deref sign_reft; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1799 |
val tsigt = Sign.tsig_of signt; |
4116 | 1800 |
fun rew{thm as Thm{sign_ref,der,shyps,hyps,prop,maxidx,...}, lhs, perm} = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1801 |
let |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1802 |
val _ = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1803 |
if Sign.subsig (Sign.deref sign_ref, signt) then () |
4045 | 1804 |
else (trace_thm true "rewrite rule from different theory" thm; |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1805 |
raise Pattern.MATCH); |
2147 | 1806 |
val rprop = if maxt = ~1 then prop |
1807 |
else Logic.incr_indexes([],maxt+1) prop; |
|
1808 |
val rlhs = if maxt = ~1 then lhs |
|
1065
8425cb5acb77
Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents:
1028
diff
changeset
|
1809 |
else fst(Logic.dest_equals(Logic.strip_imp_concl rprop)) |
3550 | 1810 |
val insts = Pattern.match tsigt (rlhs,t); |
1065
8425cb5acb77
Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents:
1028
diff
changeset
|
1811 |
val prop' = ren_inst(insts,rprop,rlhs,t); |
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
1812 |
val hyps' = union_term(hyps,hypst); |
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
1813 |
val shyps' = add_insts_sorts (insts, union_sort(shyps,shypst)); |
4116 | 1814 |
val unconditional = (Logic.count_prems(prop',0) = 0); |
1815 |
val maxidx' = if unconditional then maxt else maxidx+maxt+1 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1816 |
val ct' = Cterm{sign_ref = sign_reft, (*used for deriv only*) |
2386 | 1817 |
t = prop', |
1818 |
T = propT, |
|
1819 |
maxidx = maxidx'} |
|
3550 | 1820 |
val der' = infer_derivs (RewriteC ct', [der]); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1821 |
val thm' = Thm{sign_ref = sign_reft, |
2386 | 1822 |
der = der', |
1823 |
shyps = shyps', |
|
1824 |
hyps = hyps', |
|
1529 | 1825 |
prop = prop', |
2386 | 1826 |
maxidx = maxidx'} |
427
4ce2ce940faf
ordered rewriting applies to conditional rules as well now
nipkow
parents:
421
diff
changeset
|
1827 |
val (lhs',rhs') = Logic.dest_equals(Logic.strip_imp_concl prop') |
4ce2ce940faf
ordered rewriting applies to conditional rules as well now
nipkow
parents:
421
diff
changeset
|
1828 |
in if perm andalso not(termless(rhs',lhs')) then None else |
4116 | 1829 |
if unconditional |
4045 | 1830 |
then (trace_thm false "Rewriting:" thm'; |
4116 | 1831 |
Some(shyps', hyps', rhs', der'::ders)) |
4045 | 1832 |
else (trace_thm false "Trying to rewrite:" thm'; |
0 | 1833 |
case prover mss thm' of |
4045 | 1834 |
None => (trace_thm false "FAILED" thm'; None) |
1529 | 1835 |
| Some(thm2) => check_conv(thm2,prop',ders)) |
0 | 1836 |
end |
1837 |
||
225
76f60e6400e8
optimized net for matching of abstractions to speed up simplifier
nipkow
parents:
222
diff
changeset
|
1838 |
fun rews [] = None |
2509 | 1839 |
| rews (rrule :: rrules) = |
225
76f60e6400e8
optimized net for matching of abstractions to speed up simplifier
nipkow
parents:
222
diff
changeset
|
1840 |
let val opt = rew rrule handle Pattern.MATCH => None |
76f60e6400e8
optimized net for matching of abstractions to speed up simplifier
nipkow
parents:
222
diff
changeset
|
1841 |
in case opt of None => rews rrules | some => some end; |
3550 | 1842 |
|
1659 | 1843 |
fun sort_rrules rrs = let |
2386 | 1844 |
fun is_simple {thm as Thm{prop,...}, lhs, perm} = case prop of |
1845 |
Const("==",_) $ _ $ _ => true |
|
1846 |
| _ => false |
|
1847 |
fun sort [] (re1,re2) = re1 @ re2 |
|
1848 |
| sort (rr::rrs) (re1,re2) = if is_simple rr |
|
1849 |
then sort rrs (rr::re1,re2) |
|
1850 |
else sort rrs (re1,rr::re2) |
|
1659 | 1851 |
in sort rrs ([],[]) |
1852 |
end |
|
2509 | 1853 |
|
3550 | 1854 |
fun proc_rews _ ([]:simproc list) = None |
1855 |
| proc_rews eta_t ({name, proc, lhs = Cterm {t = plhs, ...}, ...} :: ps) = |
|
1856 |
if Pattern.matches tsigt (plhs, t) then |
|
4045 | 1857 |
(trace_term false ("Trying procedure " ^ quote name ^ " on:") signt eta_t; |
3577
9715b6e3ec5f
added prems argument to simplification procedures;
wenzelm
parents:
3565
diff
changeset
|
1858 |
case proc signt prems eta_t of |
4045 | 1859 |
None => (trace false "FAILED"; proc_rews eta_t ps) |
3550 | 1860 |
| Some raw_thm => |
4045 | 1861 |
(trace_thm false ("Procedure " ^ quote name ^ " proved rewrite rule:") raw_thm; |
3550 | 1862 |
(case rews (mk_procrule raw_thm) of |
4045 | 1863 |
None => (trace false "IGNORED"; proc_rews eta_t ps) |
3550 | 1864 |
| some => some))) |
1865 |
else proc_rews eta_t ps; |
|
2509 | 1866 |
in |
2792 | 1867 |
(case t of |
3550 | 1868 |
Abs (_, _, body) $ u => |
4116 | 1869 |
Some (shypst, hypst, subst_bound (u, body), ders) |
2509 | 1870 |
| _ => |
2792 | 1871 |
(case rews (sort_rrules (Net.match_term rules t)) of |
3012 | 1872 |
None => proc_rews (Pattern.eta_contract t) (Net.match_term procs t) |
2509 | 1873 |
| some => some)) |
0 | 1874 |
end; |
1875 |
||
2509 | 1876 |
|
1877 |
(* conversion to apply a congruence rule to a term *) |
|
1878 |
||
4116 | 1879 |
fun congc (prover,sign_reft,maxt) {thm=cong,lhs=lhs} (shypst,hypst,t,ders) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1880 |
let val signt = Sign.deref sign_reft; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1881 |
val tsig = Sign.tsig_of signt; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1882 |
val Thm{sign_ref,der,shyps,hyps,maxidx,prop,...} = cong |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1883 |
val _ = if Sign.subsig(Sign.deref sign_ref,signt) then () |
208
342f88d2e8ab
optimized simplifier - signature of rewritten term stays constant
nipkow
parents:
200
diff
changeset
|
1884 |
else error("Congruence rule from different theory") |
2147 | 1885 |
val rprop = if maxt = ~1 then prop |
1886 |
else Logic.incr_indexes([],maxt+1) prop; |
|
1887 |
val rlhs = if maxt = ~1 then lhs |
|
1065
8425cb5acb77
Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents:
1028
diff
changeset
|
1888 |
else fst(Logic.dest_equals(Logic.strip_imp_concl rprop)) |
1569
a89f246dee0e
Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents:
1566
diff
changeset
|
1889 |
val insts = Pattern.match tsig (rlhs,t) |
a89f246dee0e
Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents:
1566
diff
changeset
|
1890 |
(* Pattern.match can raise Pattern.MATCH; |
a89f246dee0e
Non-matching congruence rule in rewriter is simply ignored.
nipkow
parents:
1566
diff
changeset
|
1891 |
is handled when congc is called *) |
1065
8425cb5acb77
Fixed old bug in the simplifier. Term to be simplified now carries around its
nipkow
parents:
1028
diff
changeset
|
1892 |
val prop' = ren_inst(insts,rprop,rlhs,t); |
2177
8b365a3a6ed1
Changed some mem, ins and union calls to be monomorphic
paulson
parents:
2163
diff
changeset
|
1893 |
val shyps' = add_insts_sorts (insts, union_sort(shyps,shypst)) |
1529 | 1894 |
val maxidx' = maxidx_of_term prop' |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1895 |
val ct' = Cterm{sign_ref = sign_reft, (*used for deriv only*) |
2386 | 1896 |
t = prop', |
1897 |
T = propT, |
|
1898 |
maxidx = maxidx'} |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1899 |
val thm' = Thm{sign_ref = sign_reft, |
3550 | 1900 |
der = infer_derivs (CongC ct', [der]), |
2386 | 1901 |
shyps = shyps', |
1902 |
hyps = union_term(hyps,hypst), |
|
1529 | 1903 |
prop = prop', |
2386 | 1904 |
maxidx = maxidx'}; |
4045 | 1905 |
val unit = trace_thm false "Applying congruence rule" thm'; |
112
009ae5c85ae9
Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents:
87
diff
changeset
|
1906 |
fun err() = error("Failed congruence proof!") |
0 | 1907 |
|
1908 |
in case prover thm' of |
|
112
009ae5c85ae9
Changed the simplifier: if the subgoaler proves an unexpected thm, chances
nipkow
parents:
87
diff
changeset
|
1909 |
None => err() |
1529 | 1910 |
| Some(thm2) => (case check_conv(thm2,prop',ders) of |
405
c97514f63633
Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents:
399
diff
changeset
|
1911 |
None => err() | some => some) |
0 | 1912 |
end; |
1913 |
||
4116 | 1914 |
fun bottomc ((simprem,useprem),prover,sign_ref,maxidx) = |
1529 | 1915 |
let fun botc fail mss trec = |
2386 | 1916 |
(case subc mss trec of |
1917 |
some as Some(trec1) => |
|
4116 | 1918 |
(case rewritec (prover,sign_ref,maxidx) mss trec1 of |
2386 | 1919 |
Some(trec2) => botc false mss trec2 |
1920 |
| None => some) |
|
1921 |
| None => |
|
4116 | 1922 |
(case rewritec (prover,sign_ref,maxidx) mss trec of |
2386 | 1923 |
Some(trec2) => botc false mss trec2 |
1924 |
| None => if fail then None else Some(trec))) |
|
0 | 1925 |
|
1529 | 1926 |
and try_botc mss trec = (case botc true mss trec of |
2386 | 1927 |
Some(trec1) => trec1 |
1928 |
| None => trec) |
|
405
c97514f63633
Internale optimization of the simplifier: in case a subterm stays unchanged,
nipkow
parents:
399
diff
changeset
|
1929 |
|
2509 | 1930 |
and subc (mss as Mss{rules,congs,procs,bounds,prems,mk_rews,termless}) |
4116 | 1931 |
(trec as (shyps,hyps,t0,ders)) = |
1529 | 1932 |
(case t0 of |
2386 | 1933 |
Abs(a,T,t) => |
1934 |
let val b = variant bounds a |
|
1935 |
val v = Free("." ^ b,T) |
|
2509 | 1936 |
val mss' = mk_mss (rules, congs, procs, b :: bounds, prems, mk_rews, termless) |
2386 | 1937 |
in case botc true mss' |
4116 | 1938 |
(shyps,hyps,subst_bound (v,t),ders) of |
1939 |
Some(shyps',hyps',t',ders') => |
|
1940 |
Some(shyps', hyps', Abs(a, T, abstract_over(v,t')), ders') |
|
2386 | 1941 |
| None => None |
1942 |
end |
|
1943 |
| t$u => (case t of |
|
4116 | 1944 |
Const("==>",_)$s => Some(impc(shyps,hyps,s,u,mss,ders)) |
2386 | 1945 |
| Abs(_,_,body) => |
4116 | 1946 |
let val trec = (shyps,hyps,subst_bound (u,body),ders) |
2386 | 1947 |
in case subc mss trec of |
1948 |
None => Some(trec) |
|
1949 |
| trec => trec |
|
1950 |
end |
|
1951 |
| _ => |
|
1952 |
let fun appc() = |
|
4116 | 1953 |
(case botc true mss (shyps,hyps,t,ders) of |
1954 |
Some(shyps1,hyps1,t1,ders1) => |
|
1955 |
(case botc true mss (shyps1,hyps1,u,ders1) of |
|
1956 |
Some(shyps2,hyps2,u1,ders2) => |
|
1957 |
Some(shyps2, hyps2, t1$u1, ders2) |
|
1958 |
| None => Some(shyps1, hyps1, t1$u, ders1)) |
|
2386 | 1959 |
| None => |
4116 | 1960 |
(case botc true mss (shyps,hyps,u,ders) of |
1961 |
Some(shyps1,hyps1,u1,ders1) => |
|
1962 |
Some(shyps1, hyps1, t$u1, ders1) |
|
2386 | 1963 |
| None => None)) |
1964 |
val (h,ts) = strip_comb t |
|
1965 |
in case h of |
|
1966 |
Const(a,_) => |
|
1967 |
(case assoc_string(congs,a) of |
|
1968 |
None => appc() |
|
4116 | 1969 |
| Some(cong) => |
1970 |
(congc (prover mss,sign_ref,maxidx) cong trec |
|
1971 |
handle Pattern.MATCH => appc() ) ) |
|
2386 | 1972 |
| _ => appc() |
1973 |
end) |
|
1974 |
| _ => None) |
|
0 | 1975 |
|
4116 | 1976 |
and impc(shyps, hyps, s, u, mss as Mss{mk_rews,...}, ders) = |
1977 |
let val (shyps1,hyps1,s1,ders1) = |
|
1978 |
if simprem then try_botc mss (shyps,hyps,s,ders) |
|
1979 |
else (shyps,hyps,s,ders); |
|
2386 | 1980 |
val maxidx1 = maxidx_of_term s1 |
1981 |
val mss1 = |
|
2535
907a3379f165
Added warning msg when the simplifier cannot use a premise as a rewrite rule
nipkow
parents:
2509
diff
changeset
|
1982 |
if not useprem then mss else |
4045 | 1983 |
if maxidx1 <> ~1 then (trace_term true |
2535
907a3379f165
Added warning msg when the simplifier cannot use a premise as a rewrite rule
nipkow
parents:
2509
diff
changeset
|
1984 |
"Cannot add premise as rewrite rule because it contains (type) unknowns:" |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1985 |
(Sign.deref sign_ref) s1; mss) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
1986 |
else let val thm = assume (Cterm{sign_ref=sign_ref, t=s1, |
4116 | 1987 |
T=propT, maxidx= ~1}) |
2386 | 1988 |
in add_simps(add_prems(mss,[thm]), mk_rews thm) end |
4116 | 1989 |
val (shyps2,hyps2,u1,ders2) = try_botc mss1 (shyps1,hyps1,u,ders1) |
1990 |
val hyps3 = if gen_mem (op aconv) (s1, hyps1) |
|
2386 | 1991 |
then hyps2 else hyps2\s1 |
4116 | 1992 |
in (shyps2, hyps3, Logic.mk_implies(s1,u1), ders2) |
1529 | 1993 |
end |
0 | 1994 |
|
1529 | 1995 |
in try_botc end; |
0 | 1996 |
|
1997 |
||
1998 |
(*** Meta-rewriting: rewrites t to u and returns the theorem t==u ***) |
|
2509 | 1999 |
|
2000 |
(* |
|
2001 |
Parameters: |
|
2002 |
mode = (simplify A, use A in simplifying B) when simplifying A ==> B |
|
2003 |
mss: contains equality theorems of the form [|p1,...|] ==> t==u |
|
2004 |
prover: how to solve premises in conditional rewrites and congruences |
|
0 | 2005 |
*) |
2509 | 2006 |
|
2007 |
(* FIXME: check that #bounds(mss) does not "occur" in ct alread *) |
|
2008 |
||
214
ed6a3e2b1a33
added new parameter to the simplification tactics which indicates if
nipkow
parents:
209
diff
changeset
|
2009 |
fun rewrite_cterm mode mss prover ct = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
2010 |
let val Cterm {sign_ref, t, T, maxidx} = ct; |
4116 | 2011 |
val (shyps,hyps,u,ders) = |
2012 |
bottomc (mode,prover, sign_ref, maxidx) mss |
|
2013 |
(add_term_sorts(t,[]), [], t, []); |
|
0 | 2014 |
val prop = Logic.mk_equals(t,u) |
1258 | 2015 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
2016 |
Thm{sign_ref = sign_ref, |
2386 | 2017 |
der = infer_derivs (Rewrite_cterm ct, ders), |
4116 | 2018 |
maxidx = maxidx, |
2386 | 2019 |
shyps = shyps, |
2020 |
hyps = hyps, |
|
1529 | 2021 |
prop = prop} |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
2022 |
end; |
0 | 2023 |
|
1539 | 2024 |
|
2509 | 2025 |
|
2026 |
(*** Oracles ***) |
|
2027 |
||
3812 | 2028 |
fun invoke_oracle thy raw_name = |
2029 |
let |
|
2030 |
val {sign = sg, oracles, ...} = rep_theory thy; |
|
2031 |
val name = Sign.intern sg Theory.oracleK raw_name; |
|
2032 |
val oracle = |
|
2033 |
(case Symtab.lookup (oracles, name) of |
|
2034 |
None => raise THM ("Unknown oracle: " ^ name, 0, []) |
|
2035 |
| Some (f, _) => f); |
|
2036 |
in |
|
2037 |
fn (sign, exn) => |
|
2038 |
let |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
2039 |
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
|
2040 |
val sign' = Sign.deref sign_ref'; |
3812 | 2041 |
val (prop, T, maxidx) = Sign.certify_term sign' (oracle (sign', exn)); |
2042 |
in |
|
2043 |
if T <> propT then |
|
2044 |
raise THM ("Oracle's result must have type prop: " ^ name, 0, []) |
|
2045 |
else fix_shyps [] [] |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3895
diff
changeset
|
2046 |
(Thm {sign_ref = sign_ref', |
4182 | 2047 |
der = Join (Oracle (name, sign, exn), []), |
3812 | 2048 |
maxidx = maxidx, |
2049 |
shyps = [], |
|
2050 |
hyps = [], |
|
2051 |
prop = prop}) |
|
2052 |
end |
|
2053 |
end; |
|
2054 |
||
1539 | 2055 |
|
0 | 2056 |
end; |
1503 | 2057 |
|
2058 |
open Thm; |