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