author | nipkow |
Fri, 21 Sep 2012 03:41:10 +0200 | |
changeset 49487 | 7e7ac4956117 |
parent 48992 | 0518bf89c777 |
child 49660 | de49d9b4d7bc |
permissions | -rw-r--r-- |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41227
diff
changeset
|
1 |
(* Title: Pure/raw_simplifier.ML |
29269
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
28839
diff
changeset
|
2 |
Author: Tobias Nipkow and Stefan Berghofer, TU Muenchen |
10413 | 3 |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41227
diff
changeset
|
4 |
Higher-order Simplification. |
10413 | 5 |
*) |
6 |
||
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
7 |
infix 4 |
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
8 |
addsimps delsimps addsimprocs delsimprocs |
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
9 |
setloop' setloop addloop addloop' delloop |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
10 |
setSSolver addSSolver setSolver addSolver; |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
11 |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41227
diff
changeset
|
12 |
signature BASIC_RAW_SIMPLIFIER = |
11672 | 13 |
sig |
41227 | 14 |
val simp_depth_limit: int Config.T |
15 |
val simp_trace_depth_limit: int Config.T |
|
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
16 |
val simp_debug: bool Config.T |
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
17 |
val simp_trace: bool Config.T |
15023 | 18 |
type rrule |
16807 | 19 |
val eq_rrule: rrule * rrule -> bool |
15023 | 20 |
type simpset |
21 |
type proc |
|
17614 | 22 |
type solver |
43596 | 23 |
val mk_solver: string -> (simpset -> int -> tactic) -> solver |
15023 | 24 |
val empty_ss: simpset |
25 |
val merge_ss: simpset * simpset -> simpset |
|
30356 | 26 |
val dest_ss: simpset -> |
27 |
{simps: (string * thm) list, |
|
28 |
procs: (string * cterm list) list, |
|
29 |
congs: (string * thm) list, |
|
30 |
weak_congs: string list, |
|
31 |
loopers: string list, |
|
32 |
unsafe_solvers: string list, |
|
33 |
safe_solvers: string list} |
|
15023 | 34 |
type simproc |
22234 | 35 |
val eq_simproc: simproc * simproc -> bool |
45290 | 36 |
val transform_simproc: morphism -> simproc -> simproc |
22234 | 37 |
val make_simproc: {name: string, lhss: cterm list, |
38 |
proc: morphism -> simpset -> cterm -> thm option, identifier: thm list} -> simproc |
|
22008 | 39 |
val mk_simproc: string -> cterm list -> (theory -> simpset -> term -> thm option) -> simproc |
15023 | 40 |
val addsimps: simpset * thm list -> simpset |
41 |
val delsimps: simpset * thm list -> simpset |
|
42 |
val addsimprocs: simpset * simproc list -> simpset |
|
43 |
val delsimprocs: simpset * simproc list -> simpset |
|
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
44 |
val setloop': simpset * (simpset -> int -> tactic) -> simpset |
15023 | 45 |
val setloop: simpset * (int -> tactic) -> simpset |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
46 |
val addloop': simpset * (string * (simpset -> int -> tactic)) -> simpset |
15023 | 47 |
val addloop: simpset * (string * (int -> tactic)) -> simpset |
48 |
val delloop: simpset * string -> simpset |
|
49 |
val setSSolver: simpset * solver -> simpset |
|
50 |
val addSSolver: simpset * solver -> simpset |
|
51 |
val setSolver: simpset * solver -> simpset |
|
52 |
val addSolver: simpset * solver -> simpset |
|
21708 | 53 |
|
54 |
val rewrite_rule: thm list -> thm -> thm |
|
55 |
val rewrite_goals_rule: thm list -> thm -> thm |
|
56 |
val rewrite_goals_tac: thm list -> tactic |
|
23536
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
57 |
val rewrite_goal_tac: thm list -> int -> tactic |
21708 | 58 |
val prune_params_tac: tactic |
59 |
val fold_rule: thm list -> thm -> thm |
|
60 |
val fold_goals_tac: thm list -> tactic |
|
30552
58db56278478
provide Simplifier.norm_hhf(_protect) as regular simplifier operation;
wenzelm
parents:
30356
diff
changeset
|
61 |
val norm_hhf: thm -> thm |
58db56278478
provide Simplifier.norm_hhf(_protect) as regular simplifier operation;
wenzelm
parents:
30356
diff
changeset
|
62 |
val norm_hhf_protect: thm -> thm |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
63 |
end; |
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
64 |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41227
diff
changeset
|
65 |
signature RAW_SIMPLIFIER = |
10413 | 66 |
sig |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41227
diff
changeset
|
67 |
include BASIC_RAW_SIMPLIFIER |
10413 | 68 |
exception SIMPLIFIER of string * thm |
30336 | 69 |
val internal_ss: simpset -> |
70 |
{rules: rrule Net.net, |
|
71 |
prems: thm list, |
|
72 |
bounds: int * ((string * typ) * string) list, |
|
32738 | 73 |
depth: int * bool Unsynchronized.ref, |
30336 | 74 |
context: Proof.context option} * |
30908
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
krauss
parents:
30552
diff
changeset
|
75 |
{congs: (string * thm) list * string list, |
30336 | 76 |
procs: proc Net.net, |
77 |
mk_rews: |
|
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
78 |
{mk: simpset -> thm -> thm list, |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
79 |
mk_cong: simpset -> thm -> thm, |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
80 |
mk_sym: simpset -> thm -> thm option, |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
81 |
mk_eq_True: simpset -> thm -> thm option, |
30336 | 82 |
reorient: theory -> term list -> term -> term -> bool}, |
83 |
termless: term * term -> bool, |
|
84 |
subgoal_tac: simpset -> int -> tactic, |
|
85 |
loop_tacs: (string * (simpset -> int -> tactic)) list, |
|
86 |
solvers: solver list * solver list} |
|
43597 | 87 |
val prems_of: simpset -> thm list |
27558 | 88 |
val add_simp: thm -> simpset -> simpset |
89 |
val del_simp: thm -> simpset -> simpset |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
90 |
val add_eqcong: thm -> simpset -> simpset |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
91 |
val del_eqcong: thm -> simpset -> simpset |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
92 |
val add_cong: thm -> simpset -> simpset |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
93 |
val del_cong: thm -> simpset -> simpset |
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
94 |
val mksimps: simpset -> thm -> thm list |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
95 |
val set_mksimps: (simpset -> thm -> thm list) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
96 |
val set_mkcong: (simpset -> thm -> thm) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
97 |
val set_mksym: (simpset -> thm -> thm option) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
98 |
val set_mkeqTrue: (simpset -> thm -> thm option) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
99 |
val set_termless: (term * term -> bool) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
100 |
val set_subgoaler: (simpset -> int -> tactic) -> simpset -> simpset |
17966
34e420fa03ad
moved various simplification tactics and rules to simplifier.ML;
wenzelm
parents:
17897
diff
changeset
|
101 |
val solver: simpset -> solver -> int -> tactic |
39163
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39116
diff
changeset
|
102 |
val simp_depth_limit_raw: Config.raw |
15023 | 103 |
val clear_ss: simpset -> simpset |
47239 | 104 |
val default_mk_sym: simpset -> thm -> thm option |
38715
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents:
36944
diff
changeset
|
105 |
val simproc_global_i: theory -> string -> term list |
16458 | 106 |
-> (theory -> simpset -> term -> thm option) -> simproc |
38715
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents:
36944
diff
changeset
|
107 |
val simproc_global: theory -> string -> string list |
16458 | 108 |
-> (theory -> simpset -> term -> thm option) -> simproc |
41227 | 109 |
val simp_trace_depth_limit_raw: Config.raw |
110 |
val simp_trace_depth_limit_default: int Unsynchronized.ref |
|
111 |
val simp_trace_default: bool Unsynchronized.ref |
|
112 |
val simp_trace_raw: Config.raw |
|
113 |
val simp_debug_raw: Config.raw |
|
41226 | 114 |
val add_prems: thm list -> simpset -> simpset |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
115 |
val inherit_context: simpset -> simpset -> simpset |
20289 | 116 |
val the_context: simpset -> Proof.context |
117 |
val context: Proof.context -> simpset -> simpset |
|
42454 | 118 |
val global_context: theory -> simpset -> simpset |
36545
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
wenzelm
parents:
36543
diff
changeset
|
119 |
val with_context: Proof.context -> (simpset -> simpset) -> simpset -> simpset |
32738 | 120 |
val debug_bounds: bool Unsynchronized.ref |
18208 | 121 |
val set_reorient: (theory -> term list -> term -> term -> bool) -> simpset -> simpset |
17966
34e420fa03ad
moved various simplification tactics and rules to simplifier.ML;
wenzelm
parents:
17897
diff
changeset
|
122 |
val set_solvers: solver list -> simpset -> simpset |
23598 | 123 |
val rewrite_cterm: bool * bool * bool -> (simpset -> thm -> thm option) -> simpset -> conv |
16458 | 124 |
val rewrite_term: theory -> thm list -> (term -> term option) list -> term -> term |
15023 | 125 |
val rewrite_thm: bool * bool * bool -> |
126 |
(simpset -> thm -> thm option) -> simpset -> thm -> thm |
|
46465 | 127 |
val generic_rewrite_goal_tac: bool * bool * bool -> |
23536
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
128 |
(simpset -> tactic) -> simpset -> int -> tactic |
23598 | 129 |
val rewrite: bool -> thm list -> conv |
21708 | 130 |
val simplify: bool -> thm list -> thm -> thm |
10413 | 131 |
end; |
132 |
||
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41227
diff
changeset
|
133 |
structure Raw_Simplifier: RAW_SIMPLIFIER = |
10413 | 134 |
struct |
135 |
||
15023 | 136 |
(** datatype simpset **) |
137 |
||
138 |
(* rewrite rules *) |
|
10413 | 139 |
|
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
140 |
type rrule = |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
141 |
{thm: thm, (*the rewrite rule*) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
142 |
name: string, (*name of theorem from which rewrite rule was extracted*) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
143 |
lhs: term, (*the left-hand side*) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
144 |
elhs: cterm, (*the etac-contracted lhs*) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
145 |
extra: bool, (*extra variables outside of elhs*) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
146 |
fo: bool, (*use first-order matching*) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
147 |
perm: bool}; (*the rewrite rule is permutative*) |
15023 | 148 |
|
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
149 |
(* |
12603 | 150 |
Remarks: |
10413 | 151 |
- elhs is used for matching, |
15023 | 152 |
lhs only for preservation of bound variable names; |
10413 | 153 |
- fo is set iff |
154 |
either elhs is first-order (no Var is applied), |
|
15023 | 155 |
in which case fo-matching is complete, |
10413 | 156 |
or elhs is not a pattern, |
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
157 |
in which case there is nothing better to do; |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
158 |
*) |
10413 | 159 |
|
160 |
fun eq_rrule ({thm = thm1, ...}: rrule, {thm = thm2, ...}: rrule) = |
|
22360
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
22254
diff
changeset
|
161 |
Thm.eq_thm_prop (thm1, thm2); |
15023 | 162 |
|
163 |
||
17614 | 164 |
(* simplification sets, procedures, and solvers *) |
15023 | 165 |
|
166 |
(*A simpset contains data required during conversion: |
|
10413 | 167 |
rules: discrimination net of rewrite rules; |
15023 | 168 |
prems: current premises; |
15249
0da6b3075bfa
Replaced list of bound variables in simpset by maximal index of bound
berghofe
parents:
15199
diff
changeset
|
169 |
bounds: maximal index of bound variables already used |
15023 | 170 |
(for generating new names when rewriting under lambda abstractions); |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
171 |
depth: simp_depth and exceeded flag; |
10413 | 172 |
congs: association list of congruence rules and |
173 |
a list of `weak' congruence constants. |
|
174 |
A congruence is `weak' if it avoids normalization of some argument. |
|
175 |
procs: discrimination net of simplification procedures |
|
176 |
(functions that prove rewrite rules on the fly); |
|
15023 | 177 |
mk_rews: |
178 |
mk: turn simplification thms into rewrite rules; |
|
179 |
mk_cong: prepare congruence rules; |
|
180 |
mk_sym: turn == around; |
|
181 |
mk_eq_True: turn P into P == True; |
|
182 |
termless: relation for ordered rewriting;*) |
|
15011 | 183 |
|
15023 | 184 |
datatype simpset = |
185 |
Simpset of |
|
186 |
{rules: rrule Net.net, |
|
10413 | 187 |
prems: thm list, |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
188 |
bounds: int * ((string * typ) * string) list, |
32738 | 189 |
depth: int * bool Unsynchronized.ref, |
20289 | 190 |
context: Proof.context option} * |
30908
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
krauss
parents:
30552
diff
changeset
|
191 |
{congs: (string * thm) list * string list, |
15023 | 192 |
procs: proc Net.net, |
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
193 |
mk_rews: |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
194 |
{mk: simpset -> thm -> thm list, |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
195 |
mk_cong: simpset -> thm -> thm, |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
196 |
mk_sym: simpset -> thm -> thm option, |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
197 |
mk_eq_True: simpset -> thm -> thm option, |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
198 |
reorient: theory -> term list -> term -> term -> bool}, |
11504 | 199 |
termless: term * term -> bool, |
15011 | 200 |
subgoal_tac: simpset -> int -> tactic, |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
201 |
loop_tacs: (string * (simpset -> int -> tactic)) list, |
15023 | 202 |
solvers: solver list * solver list} |
203 |
and proc = |
|
204 |
Proc of |
|
205 |
{name: string, |
|
206 |
lhs: cterm, |
|
22008 | 207 |
proc: simpset -> cterm -> thm option, |
22234 | 208 |
id: stamp * thm list} |
17614 | 209 |
and solver = |
210 |
Solver of |
|
211 |
{name: string, |
|
212 |
solver: simpset -> int -> tactic, |
|
15023 | 213 |
id: stamp}; |
214 |
||
215 |
||
30336 | 216 |
fun internal_ss (Simpset args) = args; |
10413 | 217 |
|
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
218 |
fun make_ss1 (rules, prems, bounds, depth, context) = |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
219 |
{rules = rules, prems = prems, bounds = bounds, depth = depth, context = context}; |
15023 | 220 |
|
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
221 |
fun map_ss1 f {rules, prems, bounds, depth, context} = |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
222 |
make_ss1 (f (rules, prems, bounds, depth, context)); |
10413 | 223 |
|
15023 | 224 |
fun make_ss2 (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) = |
225 |
{congs = congs, procs = procs, mk_rews = mk_rews, termless = termless, |
|
226 |
subgoal_tac = subgoal_tac, loop_tacs = loop_tacs, solvers = solvers}; |
|
227 |
||
228 |
fun map_ss2 f {congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers} = |
|
229 |
make_ss2 (f (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers)); |
|
230 |
||
231 |
fun make_simpset (args1, args2) = Simpset (make_ss1 args1, make_ss2 args2); |
|
10413 | 232 |
|
15023 | 233 |
fun map_simpset1 f (Simpset (r1, r2)) = Simpset (map_ss1 f r1, r2); |
234 |
fun map_simpset2 f (Simpset (r1, r2)) = Simpset (r1, map_ss2 f r2); |
|
235 |
||
43597 | 236 |
fun prems_of (Simpset ({prems, ...}, _)) = prems; |
17614 | 237 |
|
22234 | 238 |
fun eq_procid ((s1: stamp, ths1: thm list), (s2, ths2)) = |
22360
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
22254
diff
changeset
|
239 |
s1 = s2 andalso eq_list Thm.eq_thm (ths1, ths2); |
22234 | 240 |
fun eq_proc (Proc {id = id1, ...}, Proc {id = id2, ...}) = eq_procid (id1, id2); |
17614 | 241 |
|
43596 | 242 |
fun mk_solver name solver = Solver {name = name, solver = solver, id = stamp ()}; |
17614 | 243 |
|
244 |
fun solver_name (Solver {name, ...}) = name; |
|
17966
34e420fa03ad
moved various simplification tactics and rules to simplifier.ML;
wenzelm
parents:
17897
diff
changeset
|
245 |
fun solver ss (Solver {solver = tac, ...}) = tac ss; |
17614 | 246 |
fun eq_solver (Solver {id = id1, ...}, Solver {id = id2, ...}) = (id1 = id2); |
247 |
||
15023 | 248 |
|
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
249 |
(* simp depth *) |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
250 |
|
39163
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39116
diff
changeset
|
251 |
val simp_depth_limit_raw = Config.declare "simp_depth_limit" (K (Config.Int 100)); |
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39116
diff
changeset
|
252 |
val simp_depth_limit = Config.int simp_depth_limit_raw; |
24124
4399175e3014
turned simp_depth_limit into configuration option;
wenzelm
parents:
23938
diff
changeset
|
253 |
|
41183
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
254 |
val simp_trace_depth_limit_default = Unsynchronized.ref 1; |
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
255 |
val simp_trace_depth_limit_raw = Config.declare "simp_trace_depth_limit" |
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
256 |
(fn _ => Config.Int (! simp_trace_depth_limit_default)); |
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
257 |
val simp_trace_depth_limit = Config.int simp_trace_depth_limit_raw; |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
258 |
|
41183
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
259 |
fun simp_trace_depth_limit_of NONE = ! simp_trace_depth_limit_default |
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
260 |
| simp_trace_depth_limit_of (SOME ctxt) = Config.get ctxt simp_trace_depth_limit; |
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
261 |
|
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
262 |
fun trace_depth (Simpset ({depth = (depth, exceeded), context, ...}, _)) msg = |
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
263 |
if depth > simp_trace_depth_limit_of context then |
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
264 |
if ! exceeded then () else (tracing "simp_trace_depth_limit exceeded!"; exceeded := true) |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
265 |
else |
23938 | 266 |
(tracing (enclose "[" "]" (string_of_int depth) ^ msg); exceeded := false); |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
267 |
|
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
268 |
val inc_simp_depth = map_simpset1 (fn (rules, prems, bounds, (depth, exceeded), context) => |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
269 |
(rules, prems, bounds, |
32738 | 270 |
(depth + 1, |
41183
e20f0d0e2af3
turned simp_trace_depth_limit into a configuration option
boehmes
parents:
40878
diff
changeset
|
271 |
if depth = simp_trace_depth_limit_of context then Unsynchronized.ref false else exceeded), context)); |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
272 |
|
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
273 |
fun simp_depth (Simpset ({depth = (depth, _), ...}, _)) = depth; |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
274 |
|
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
275 |
|
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
276 |
(* diagnostics *) |
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
277 |
|
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
278 |
exception SIMPLIFIER of string * thm; |
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
279 |
|
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
280 |
val simp_debug_raw = Config.declare "simp_debug" (K (Config.Bool false)); |
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
281 |
val simp_debug = Config.bool simp_debug_raw; |
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
282 |
|
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
283 |
val simp_trace_default = Unsynchronized.ref false; |
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
284 |
val simp_trace_raw = Config.declare "simp_trace" (fn _ => Config.Bool (! simp_trace_default)); |
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
285 |
val simp_trace = Config.bool simp_trace_raw; |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
286 |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
287 |
fun if_enabled (Simpset ({context, ...}, _)) flag f = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
288 |
(case context of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
289 |
SOME ctxt => if Config.get ctxt flag then f ctxt else () |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
290 |
| NONE => ()) |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
291 |
|
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
292 |
fun if_visible (Simpset ({context, ...}, _)) f x = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
293 |
(case context of |
41469 | 294 |
SOME ctxt => Context_Position.if_visible ctxt f x |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
295 |
| NONE => ()); |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
296 |
|
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
297 |
local |
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
298 |
|
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
299 |
fun prnt ss warn a = if warn then warning a else trace_depth ss a; |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
300 |
|
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
301 |
fun show_bounds (Simpset ({bounds = (_, bs), ...}, _)) t = |
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
302 |
let |
20146 | 303 |
val names = Term.declare_term_names t Name.context; |
43326
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents:
42454
diff
changeset
|
304 |
val xs = rev (#1 (fold_map Name.variant (rev (map #2 bs)) names)); |
42284 | 305 |
fun subst (((b, T), _), x') = (Free (b, T), Syntax_Trans.mark_boundT (x', T)); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
306 |
in Term.subst_atomic (ListPair.map subst (bs, xs)) t end; |
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
307 |
|
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
308 |
fun print_term ss warn a t ctxt = prnt ss warn (a () ^ "\n" ^ |
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
309 |
Syntax.string_of_term ctxt |
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
310 |
(if Config.get ctxt simp_debug then t else show_bounds ss t)); |
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
311 |
|
17705 | 312 |
in |
313 |
||
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
314 |
fun print_term_global ss warn a thy t = |
42360 | 315 |
print_term ss warn (K a) t (Proof_Context.init_global thy); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
316 |
|
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
317 |
fun debug warn a ss = if_enabled ss simp_debug (fn _ => prnt ss warn (a ())); |
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
318 |
fun trace warn a ss = if_enabled ss simp_trace (fn _ => prnt ss warn (a ())); |
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
319 |
|
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
320 |
fun debug_term warn a ss t = if_enabled ss simp_debug (print_term ss warn a t); |
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
321 |
fun trace_term warn a ss t = if_enabled ss simp_trace (print_term ss warn a t); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
322 |
|
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
323 |
fun trace_cterm warn a ss ct = |
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
324 |
if_enabled ss simp_trace (print_term ss warn a (Thm.term_of ct)); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
325 |
|
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
326 |
fun trace_thm a ss th = |
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
327 |
if_enabled ss simp_trace (print_term ss false a (Thm.full_prop_of th)); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
328 |
|
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
329 |
fun trace_named_thm a ss (th, name) = |
40878
7695e4de4d86
renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents:
39163
diff
changeset
|
330 |
if_enabled ss simp_trace (print_term ss false |
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
331 |
(fn () => if name = "" then a () else a () ^ " " ^ quote name ^ ":") |
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
332 |
(Thm.full_prop_of th)); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
333 |
|
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
334 |
fun warn_thm a ss th = |
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
335 |
print_term_global ss true a (Thm.theory_of_thm th) (Thm.full_prop_of th); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
336 |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
337 |
fun cond_warn_thm a ss th = if_visible ss (fn () => warn_thm a ss th) (); |
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
338 |
|
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
339 |
end; |
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
340 |
|
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
341 |
|
10413 | 342 |
|
343 |
(** simpset operations **) |
|
344 |
||
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
345 |
(* context *) |
10413 | 346 |
|
17614 | 347 |
fun eq_bound (x: string, (y, _)) = x = y; |
348 |
||
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
349 |
fun add_bound bound = map_simpset1 (fn (rules, prems, (count, bounds), depth, context) => |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
350 |
(rules, prems, (count + 1, bound :: bounds), depth, context)); |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
351 |
|
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
352 |
fun add_prems ths = map_simpset1 (fn (rules, prems, bounds, depth, context) => |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
353 |
(rules, ths @ prems, bounds, depth, context)); |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
354 |
|
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
355 |
fun inherit_context (Simpset ({bounds, depth, context, ...}, _)) = |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
356 |
map_simpset1 (fn (rules, prems, _, _, _) => (rules, prems, bounds, depth, context)); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
357 |
|
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
358 |
fun the_context (Simpset ({context = SOME ctxt, ...}, _)) = ctxt |
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
359 |
| the_context _ = raise Fail "Simplifier: no proof context in simpset"; |
10413 | 360 |
|
17897 | 361 |
fun context ctxt = |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
362 |
map_simpset1 (fn (rules, prems, bounds, depth, _) => (rules, prems, bounds, depth, SOME ctxt)); |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
363 |
|
42360 | 364 |
val global_context = context o Proof_Context.init_global; |
17897 | 365 |
|
27312
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
wenzelm
parents:
27022
diff
changeset
|
366 |
fun activate_context thy ss = |
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
wenzelm
parents:
27022
diff
changeset
|
367 |
let |
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
wenzelm
parents:
27022
diff
changeset
|
368 |
val ctxt = the_context ss; |
36545
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
wenzelm
parents:
36543
diff
changeset
|
369 |
val ctxt' = ctxt |
42360 | 370 |
|> Context.raw_transfer (Theory.merge (thy, Proof_Context.theory_of ctxt)) |
36545
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
wenzelm
parents:
36543
diff
changeset
|
371 |
|> Context_Position.set_visible false; |
27312
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
wenzelm
parents:
27022
diff
changeset
|
372 |
in context ctxt' ss end; |
17897 | 373 |
|
36545
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
wenzelm
parents:
36543
diff
changeset
|
374 |
fun with_context ctxt f ss = inherit_context ss (f (context ctxt ss)); |
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
wenzelm
parents:
36543
diff
changeset
|
375 |
|
17897 | 376 |
|
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
377 |
(* maintain simp rules *) |
10413 | 378 |
|
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
379 |
(* FIXME: it seems that the conditions on extra variables are too liberal if |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
380 |
prems are nonempty: does solving the prems really guarantee instantiation of |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
381 |
all its Vars? Better: a dynamic check each time a rule is applied. |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
382 |
*) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
383 |
fun rewrite_rule_extra_vars prems elhs erhs = |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
384 |
let |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
385 |
val elhss = elhs :: prems; |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
386 |
val tvars = fold Term.add_tvars elhss []; |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
387 |
val vars = fold Term.add_vars elhss []; |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
388 |
in |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
389 |
erhs |> Term.exists_type (Term.exists_subtype |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
390 |
(fn TVar v => not (member (op =) tvars v) | _ => false)) orelse |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
391 |
erhs |> Term.exists_subterm |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
392 |
(fn Var v => not (member (op =) vars v) | _ => false) |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
393 |
end; |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
394 |
|
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
395 |
fun rrule_extra_vars elhs thm = |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
396 |
rewrite_rule_extra_vars [] (term_of elhs) (Thm.full_prop_of thm); |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
397 |
|
15023 | 398 |
fun mk_rrule2 {thm, name, lhs, elhs, perm} = |
399 |
let |
|
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
400 |
val t = term_of elhs; |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
401 |
val fo = Pattern.first_order t orelse not (Pattern.pattern t); |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
402 |
val extra = rrule_extra_vars elhs thm; |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
403 |
in {thm = thm, name = name, lhs = lhs, elhs = elhs, extra = extra, fo = fo, perm = perm} end; |
10413 | 404 |
|
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
405 |
fun del_rrule (rrule as {thm, elhs, ...}) ss = |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
406 |
ss |> map_simpset1 (fn (rules, prems, bounds, depth, context) => |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
407 |
(Net.delete_term eq_rrule (term_of elhs, rrule) rules, prems, bounds, depth, context)) |
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
408 |
handle Net.DELETE => (cond_warn_thm "Rewrite rule not in simpset:" ss thm; ss); |
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
409 |
|
32797 | 410 |
fun insert_rrule (rrule as {thm, name, ...}) ss = |
22254 | 411 |
(trace_named_thm (fn () => "Adding rewrite rule") ss (thm, name); |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
412 |
ss |> map_simpset1 (fn (rules, prems, bounds, depth, context) => |
15023 | 413 |
let |
414 |
val rrule2 as {elhs, ...} = mk_rrule2 rrule; |
|
16807 | 415 |
val rules' = Net.insert_term eq_rrule (term_of elhs, rrule2) rules; |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
416 |
in (rules', prems, bounds, depth, context) end) |
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
417 |
handle Net.INSERT => (cond_warn_thm "Ignoring duplicate rewrite rule:" ss thm; ss)); |
10413 | 418 |
|
419 |
fun vperm (Var _, Var _) = true |
|
420 |
| vperm (Abs (_, _, s), Abs (_, _, t)) = vperm (s, t) |
|
421 |
| vperm (t1 $ t2, u1 $ u2) = vperm (t1, u1) andalso vperm (t2, u2) |
|
422 |
| vperm (t, u) = (t = u); |
|
423 |
||
424 |
fun var_perm (t, u) = |
|
33038 | 425 |
vperm (t, u) andalso eq_set (op =) (Term.add_vars t [], Term.add_vars u []); |
10413 | 426 |
|
15023 | 427 |
(*simple test for looping rewrite rules and stupid orientations*) |
18208 | 428 |
fun default_reorient thy prems lhs rhs = |
15023 | 429 |
rewrite_rule_extra_vars prems lhs rhs |
430 |
orelse |
|
431 |
is_Var (head_of lhs) |
|
432 |
orelse |
|
16305 | 433 |
(* turns t = x around, which causes a headache if x is a local variable - |
434 |
usually it is very useful :-( |
|
435 |
is_Free rhs andalso not(is_Free lhs) andalso not(Logic.occs(rhs,lhs)) |
|
436 |
andalso not(exists_subterm is_Var lhs) |
|
437 |
orelse |
|
438 |
*) |
|
16842 | 439 |
exists (fn t => Logic.occs (lhs, t)) (rhs :: prems) |
15023 | 440 |
orelse |
17203 | 441 |
null prems andalso Pattern.matches thy (lhs, rhs) |
10413 | 442 |
(*the condition "null prems" is necessary because conditional rewrites |
443 |
with extra variables in the conditions may terminate although |
|
15023 | 444 |
the rhs is an instance of the lhs; example: ?m < ?n ==> f(?n) == f(?m)*) |
445 |
orelse |
|
446 |
is_Const lhs andalso not (is_Const rhs); |
|
10413 | 447 |
|
448 |
fun decomp_simp thm = |
|
15023 | 449 |
let |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
450 |
val thy = Thm.theory_of_thm thm; |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
451 |
val prop = Thm.prop_of thm; |
15023 | 452 |
val prems = Logic.strip_imp_prems prop; |
453 |
val concl = Drule.strip_imp_concl (Thm.cprop_of thm); |
|
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
454 |
val (lhs, rhs) = Thm.dest_equals concl handle TERM _ => |
15023 | 455 |
raise SIMPLIFIER ("Rewrite rule not a meta-equality", thm); |
20579 | 456 |
val elhs = Thm.dest_arg (Thm.cprop_of (Thm.eta_conversion lhs)); |
18929 | 457 |
val erhs = Envir.eta_contract (term_of rhs); |
15023 | 458 |
val perm = |
459 |
var_perm (term_of elhs, erhs) andalso |
|
460 |
not (term_of elhs aconv erhs) andalso |
|
461 |
not (is_Var (term_of elhs)); |
|
16458 | 462 |
in (thy, prems, term_of lhs, elhs, term_of rhs, perm) end; |
10413 | 463 |
|
12783 | 464 |
fun decomp_simp' thm = |
12979
4c76bce4ce39
decomp_simp': use lhs instead of elhs (preserves more bound variable names);
wenzelm
parents:
12783
diff
changeset
|
465 |
let val (_, _, lhs, _, rhs, _) = decomp_simp thm in |
12783 | 466 |
if Thm.nprems_of thm > 0 then raise SIMPLIFIER ("Bad conditional rewrite rule", thm) |
12979
4c76bce4ce39
decomp_simp': use lhs instead of elhs (preserves more bound variable names);
wenzelm
parents:
12783
diff
changeset
|
467 |
else (lhs, rhs) |
12783 | 468 |
end; |
469 |
||
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
470 |
fun mk_eq_True (ss as Simpset (_, {mk_rews = {mk_eq_True, ...}, ...})) (thm, name) = |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
471 |
(case mk_eq_True ss thm of |
15531 | 472 |
NONE => [] |
473 |
| SOME eq_True => |
|
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
474 |
let |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
475 |
val (_, _, lhs, elhs, _, _) = decomp_simp eq_True; |
15023 | 476 |
in [{thm = eq_True, name = name, lhs = lhs, elhs = elhs, perm = false}] end); |
10413 | 477 |
|
15023 | 478 |
(*create the rewrite rule and possibly also the eq_True variant, |
479 |
in case there are extra vars on the rhs*) |
|
480 |
fun rrule_eq_True (thm, name, lhs, elhs, rhs, ss, thm2) = |
|
481 |
let val rrule = {thm = thm, name = name, lhs = lhs, elhs = elhs, perm = false} in |
|
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
482 |
if rewrite_rule_extra_vars [] lhs rhs then |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
483 |
mk_eq_True ss (thm2, name) @ [rrule] |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
484 |
else [rrule] |
10413 | 485 |
end; |
486 |
||
15023 | 487 |
fun mk_rrule ss (thm, name) = |
488 |
let val (_, prems, lhs, elhs, rhs, perm) = decomp_simp thm in |
|
489 |
if perm then [{thm = thm, name = name, lhs = lhs, elhs = elhs, perm = true}] |
|
490 |
else |
|
491 |
(*weak test for loops*) |
|
492 |
if rewrite_rule_extra_vars prems lhs rhs orelse is_Var (term_of elhs) |
|
493 |
then mk_eq_True ss (thm, name) |
|
494 |
else rrule_eq_True (thm, name, lhs, elhs, rhs, ss, thm) |
|
10413 | 495 |
end; |
496 |
||
15023 | 497 |
fun orient_rrule ss (thm, name) = |
18208 | 498 |
let |
499 |
val (thy, prems, lhs, elhs, rhs, perm) = decomp_simp thm; |
|
500 |
val Simpset (_, {mk_rews = {reorient, mk_sym, ...}, ...}) = ss; |
|
501 |
in |
|
15023 | 502 |
if perm then [{thm = thm, name = name, lhs = lhs, elhs = elhs, perm = true}] |
16458 | 503 |
else if reorient thy prems lhs rhs then |
504 |
if reorient thy prems rhs lhs |
|
15023 | 505 |
then mk_eq_True ss (thm, name) |
506 |
else |
|
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
507 |
(case mk_sym ss thm of |
18208 | 508 |
NONE => [] |
509 |
| SOME thm' => |
|
510 |
let val (_, _, lhs', elhs', rhs', _) = decomp_simp thm' |
|
511 |
in rrule_eq_True (thm', name, lhs', elhs', rhs', ss, thm) end) |
|
15023 | 512 |
else rrule_eq_True (thm, name, lhs, elhs, rhs, ss, thm) |
10413 | 513 |
end; |
514 |
||
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
515 |
fun extract_rews (ss as Simpset (_, {mk_rews = {mk, ...}, ...}), thms) = |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
516 |
maps (fn thm => map (rpair (Thm.get_name_hint thm)) (mk ss thm)) thms; |
10413 | 517 |
|
15023 | 518 |
fun extract_safe_rrules (ss, thm) = |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19303
diff
changeset
|
519 |
maps (orient_rrule ss) (extract_rews (ss, [thm])); |
10413 | 520 |
|
521 |
||
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
522 |
(* add/del rules explicitly *) |
10413 | 523 |
|
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
524 |
fun comb_simps comb mk_rrule (ss, thms) = |
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
525 |
let |
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
526 |
val rews = extract_rews (ss, thms); |
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
527 |
in fold (fold comb o mk_rrule) rews ss end; |
10413 | 528 |
|
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
529 |
fun ss addsimps thms = |
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
530 |
comb_simps insert_rrule (mk_rrule ss) (ss, thms); |
10413 | 531 |
|
15023 | 532 |
fun ss delsimps thms = |
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
533 |
comb_simps del_rrule (map mk_rrule2 o mk_rrule ss) (ss, thms); |
15023 | 534 |
|
27558 | 535 |
fun add_simp thm ss = ss addsimps [thm]; |
536 |
fun del_simp thm ss = ss delsimps [thm]; |
|
15023 | 537 |
|
30318
3d03190d2864
replaced archaic use of rep_ss by Simplifier.mksimps;
wenzelm
parents:
29269
diff
changeset
|
538 |
|
15023 | 539 |
(* congs *) |
10413 | 540 |
|
15531 | 541 |
fun cong_name (Const (a, _)) = SOME a |
542 |
| cong_name (Free (a, _)) = SOME ("Free: " ^ a) |
|
543 |
| cong_name _ = NONE; |
|
13835
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
ballarin
parents:
13828
diff
changeset
|
544 |
|
15023 | 545 |
local |
546 |
||
547 |
fun is_full_cong_prems [] [] = true |
|
548 |
| is_full_cong_prems [] _ = false |
|
549 |
| is_full_cong_prems (p :: prems) varpairs = |
|
550 |
(case Logic.strip_assums_concl p of |
|
551 |
Const ("==", _) $ lhs $ rhs => |
|
552 |
let val (x, xs) = strip_comb lhs and (y, ys) = strip_comb rhs in |
|
553 |
is_Var x andalso forall is_Bound xs andalso |
|
20972 | 554 |
not (has_duplicates (op =) xs) andalso xs = ys andalso |
20671 | 555 |
member (op =) varpairs (x, y) andalso |
19303 | 556 |
is_full_cong_prems prems (remove (op =) (x, y) varpairs) |
15023 | 557 |
end |
558 |
| _ => false); |
|
559 |
||
560 |
fun is_full_cong thm = |
|
10413 | 561 |
let |
43597 | 562 |
val prems = Thm.prems_of thm and concl = Thm.concl_of thm; |
15023 | 563 |
val (lhs, rhs) = Logic.dest_equals concl; |
564 |
val (f, xs) = strip_comb lhs and (g, ys) = strip_comb rhs; |
|
10413 | 565 |
in |
20972 | 566 |
f = g andalso not (has_duplicates (op =) (xs @ ys)) andalso length xs = length ys andalso |
15023 | 567 |
is_full_cong_prems prems (xs ~~ ys) |
10413 | 568 |
end; |
569 |
||
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
570 |
fun mk_cong (ss as Simpset (_, {mk_rews = {mk_cong = f, ...}, ...})) = f ss; |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
571 |
|
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
572 |
in |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
573 |
|
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
574 |
fun add_eqcong thm ss = ss |> |
15023 | 575 |
map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => |
576 |
let |
|
45621 | 577 |
val (lhs, _) = Logic.dest_equals (Thm.concl_of thm) |
15023 | 578 |
handle TERM _ => raise SIMPLIFIER ("Congruence not a meta-equality", thm); |
18929 | 579 |
(*val lhs = Envir.eta_contract lhs;*) |
45621 | 580 |
val a = the (cong_name (head_of lhs)) handle Option.Option => |
15023 | 581 |
raise SIMPLIFIER ("Congruence must start with a constant or free variable", thm); |
22221
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
haftmann
parents:
22008
diff
changeset
|
582 |
val (xs, weak) = congs; |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
583 |
val _ = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
584 |
if AList.defined (op =) xs a |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
585 |
then if_visible ss warning ("Overwriting congruence rule for " ^ quote a) |
22221
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
haftmann
parents:
22008
diff
changeset
|
586 |
else (); |
30908
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
krauss
parents:
30552
diff
changeset
|
587 |
val xs' = AList.update (op =) (a, thm) xs; |
22221
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
haftmann
parents:
22008
diff
changeset
|
588 |
val weak' = if is_full_cong thm then weak else a :: weak; |
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
haftmann
parents:
22008
diff
changeset
|
589 |
in ((xs', weak'), procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) end); |
10413 | 590 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
591 |
fun del_eqcong thm ss = ss |> |
15023 | 592 |
map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => |
593 |
let |
|
45621 | 594 |
val (lhs, _) = Logic.dest_equals (Thm.concl_of thm) |
595 |
handle TERM _ => raise SIMPLIFIER ("Congruence not a meta-equality", thm); |
|
18929 | 596 |
(*val lhs = Envir.eta_contract lhs;*) |
20057 | 597 |
val a = the (cong_name (head_of lhs)) handle Option.Option => |
15023 | 598 |
raise SIMPLIFIER ("Congruence must start with a constant", thm); |
22221
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
haftmann
parents:
22008
diff
changeset
|
599 |
val (xs, _) = congs; |
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
haftmann
parents:
22008
diff
changeset
|
600 |
val xs' = filter_out (fn (x : string, _) => x = a) xs; |
30908
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
krauss
parents:
30552
diff
changeset
|
601 |
val weak' = xs' |> map_filter (fn (a, thm) => |
15531 | 602 |
if is_full_cong thm then NONE else SOME a); |
22221
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
haftmann
parents:
22008
diff
changeset
|
603 |
in ((xs', weak'), procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) end); |
10413 | 604 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
605 |
fun add_cong thm ss = add_eqcong (mk_cong ss thm) ss; |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
606 |
fun del_cong thm ss = del_eqcong (mk_cong ss thm) ss; |
15023 | 607 |
|
608 |
end; |
|
10413 | 609 |
|
610 |
||
15023 | 611 |
(* simprocs *) |
612 |
||
22234 | 613 |
datatype simproc = |
614 |
Simproc of |
|
615 |
{name: string, |
|
616 |
lhss: cterm list, |
|
617 |
proc: morphism -> simpset -> cterm -> thm option, |
|
618 |
id: stamp * thm list}; |
|
619 |
||
620 |
fun eq_simproc (Simproc {id = id1, ...}, Simproc {id = id2, ...}) = eq_procid (id1, id2); |
|
22008 | 621 |
|
45290 | 622 |
fun transform_simproc phi (Simproc {name, lhss, proc, id = (s, ths)}) = |
22234 | 623 |
Simproc |
624 |
{name = name, |
|
625 |
lhss = map (Morphism.cterm phi) lhss, |
|
22669 | 626 |
proc = Morphism.transform phi proc, |
22234 | 627 |
id = (s, Morphism.fact phi ths)}; |
628 |
||
629 |
fun make_simproc {name, lhss, proc, identifier} = |
|
630 |
Simproc {name = name, lhss = lhss, proc = proc, id = (stamp (), identifier)}; |
|
22008 | 631 |
|
632 |
fun mk_simproc name lhss proc = |
|
22234 | 633 |
make_simproc {name = name, lhss = lhss, proc = fn _ => fn ss => fn ct => |
42360 | 634 |
proc (Proof_Context.theory_of (the_context ss)) ss (Thm.term_of ct), identifier = []}; |
22008 | 635 |
|
35845
e5980f0ad025
renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents:
35408
diff
changeset
|
636 |
(* FIXME avoid global thy and Logic.varify_global *) |
38715
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents:
36944
diff
changeset
|
637 |
fun simproc_global_i thy name = mk_simproc name o map (Thm.cterm_of thy o Logic.varify_global); |
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents:
36944
diff
changeset
|
638 |
fun simproc_global thy name = simproc_global_i thy name o map (Syntax.read_term_global thy); |
22008 | 639 |
|
640 |
||
15023 | 641 |
local |
10413 | 642 |
|
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
643 |
fun add_proc (proc as Proc {name, lhs, ...}) ss = |
22254 | 644 |
(trace_cterm false (fn () => "Adding simplification procedure " ^ quote name ^ " for") ss lhs; |
15023 | 645 |
map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => |
16807 | 646 |
(congs, Net.insert_term eq_proc (term_of lhs, proc) procs, |
15023 | 647 |
mk_rews, termless, subgoal_tac, loop_tacs, solvers)) ss |
648 |
handle Net.INSERT => |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
649 |
(if_visible ss warning ("Ignoring duplicate simplification procedure " ^ quote name); ss)); |
10413 | 650 |
|
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
651 |
fun del_proc (proc as Proc {name, lhs, ...}) ss = |
15023 | 652 |
map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => |
16807 | 653 |
(congs, Net.delete_term eq_proc (term_of lhs, proc) procs, |
15023 | 654 |
mk_rews, termless, subgoal_tac, loop_tacs, solvers)) ss |
655 |
handle Net.DELETE => |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
656 |
(if_visible ss warning ("Simplification procedure " ^ quote name ^ " not in simpset"); ss); |
10413 | 657 |
|
22234 | 658 |
fun prep_procs (Simproc {name, lhss, proc, id}) = |
22669 | 659 |
lhss |> map (fn lhs => Proc {name = name, lhs = lhs, proc = Morphism.form proc, id = id}); |
22234 | 660 |
|
15023 | 661 |
in |
10413 | 662 |
|
22234 | 663 |
fun ss addsimprocs ps = fold (fold add_proc o prep_procs) ps ss; |
664 |
fun ss delsimprocs ps = fold (fold del_proc o prep_procs) ps ss; |
|
10413 | 665 |
|
15023 | 666 |
end; |
10413 | 667 |
|
668 |
||
669 |
(* mk_rews *) |
|
670 |
||
15023 | 671 |
local |
672 |
||
18208 | 673 |
fun map_mk_rews f = map_simpset2 (fn (congs, procs, {mk, mk_cong, mk_sym, mk_eq_True, reorient}, |
15023 | 674 |
termless, subgoal_tac, loop_tacs, solvers) => |
18208 | 675 |
let |
676 |
val (mk', mk_cong', mk_sym', mk_eq_True', reorient') = |
|
677 |
f (mk, mk_cong, mk_sym, mk_eq_True, reorient); |
|
678 |
val mk_rews' = {mk = mk', mk_cong = mk_cong', mk_sym = mk_sym', mk_eq_True = mk_eq_True', |
|
679 |
reorient = reorient'}; |
|
680 |
in (congs, procs, mk_rews', termless, subgoal_tac, loop_tacs, solvers) end); |
|
15023 | 681 |
|
682 |
in |
|
10413 | 683 |
|
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
684 |
fun mksimps (ss as Simpset (_, {mk_rews = {mk, ...}, ...})) = mk ss; |
30318
3d03190d2864
replaced archaic use of rep_ss by Simplifier.mksimps;
wenzelm
parents:
29269
diff
changeset
|
685 |
|
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
686 |
fun set_mksimps mk = map_mk_rews (fn (_, mk_cong, mk_sym, mk_eq_True, reorient) => |
18208 | 687 |
(mk, mk_cong, mk_sym, mk_eq_True, reorient)); |
15023 | 688 |
|
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
689 |
fun set_mkcong mk_cong = map_mk_rews (fn (mk, _, mk_sym, mk_eq_True, reorient) => |
18208 | 690 |
(mk, mk_cong, mk_sym, mk_eq_True, reorient)); |
10413 | 691 |
|
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
692 |
fun set_mksym mk_sym = map_mk_rews (fn (mk, mk_cong, _, mk_eq_True, reorient) => |
18208 | 693 |
(mk, mk_cong, mk_sym, mk_eq_True, reorient)); |
10413 | 694 |
|
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
695 |
fun set_mkeqTrue mk_eq_True = map_mk_rews (fn (mk, mk_cong, mk_sym, _, reorient) => |
18208 | 696 |
(mk, mk_cong, mk_sym, mk_eq_True, reorient)); |
697 |
||
698 |
fun set_reorient reorient = map_mk_rews (fn (mk, mk_cong, mk_sym, mk_eq_True, _) => |
|
699 |
(mk, mk_cong, mk_sym, mk_eq_True, reorient)); |
|
15023 | 700 |
|
701 |
end; |
|
702 |
||
14242
ec70653a02bf
Added access to the mk_rews field (and friends).
skalberg
parents:
14040
diff
changeset
|
703 |
|
10413 | 704 |
(* termless *) |
705 |
||
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
706 |
fun set_termless termless = |
15023 | 707 |
map_simpset2 (fn (congs, procs, mk_rews, _, subgoal_tac, loop_tacs, solvers) => |
708 |
(congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers)); |
|
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
709 |
|
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
710 |
|
15023 | 711 |
(* tactics *) |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
712 |
|
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45621
diff
changeset
|
713 |
fun set_subgoaler subgoal_tac = |
15023 | 714 |
map_simpset2 (fn (congs, procs, mk_rews, termless, _, loop_tacs, solvers) => |
715 |
(congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers)); |
|
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
716 |
|
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
717 |
fun ss setloop' tac = ss |> |
15023 | 718 |
map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, _, solvers) => |
719 |
(congs, procs, mk_rews, termless, subgoal_tac, [("", tac)], solvers)); |
|
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
720 |
|
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
721 |
fun ss setloop tac = ss setloop' (K tac); |
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
722 |
|
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
723 |
fun ss addloop' (name, tac) = ss |> |
15023 | 724 |
map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => |
725 |
(congs, procs, mk_rews, termless, subgoal_tac, |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
726 |
(if AList.defined (op =) loop_tacs name |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
727 |
then if_visible ss warning ("Overwriting looper " ^ quote name) |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
728 |
else (); AList.update (op =) (name, tac) loop_tacs), solvers)); |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
729 |
|
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
730 |
fun ss addloop (name, tac) = ss addloop' (name, K tac); |
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
731 |
|
15023 | 732 |
fun ss delloop name = ss |> |
733 |
map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => |
|
21286
b5e7b80caa6a
introduces canonical AList functions for loop_tacs
haftmann
parents:
20972
diff
changeset
|
734 |
(congs, procs, mk_rews, termless, subgoal_tac, |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
735 |
(if AList.defined (op =) loop_tacs name then () |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
736 |
else if_visible ss warning ("No such looper in simpset: " ^ quote name); |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
737 |
AList.delete (op =) name loop_tacs), solvers)); |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
738 |
|
15023 | 739 |
fun ss setSSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, |
740 |
subgoal_tac, loop_tacs, (unsafe_solvers, _)) => |
|
741 |
(congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, (unsafe_solvers, [solver]))); |
|
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
742 |
|
15023 | 743 |
fun ss addSSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, |
744 |
subgoal_tac, loop_tacs, (unsafe_solvers, solvers)) => (congs, procs, mk_rews, termless, |
|
22717 | 745 |
subgoal_tac, loop_tacs, (unsafe_solvers, insert eq_solver solver solvers))); |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
746 |
|
15023 | 747 |
fun ss setSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, |
748 |
subgoal_tac, loop_tacs, (_, solvers)) => (congs, procs, mk_rews, termless, |
|
749 |
subgoal_tac, loop_tacs, ([solver], solvers))); |
|
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
750 |
|
15023 | 751 |
fun ss addSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, |
752 |
subgoal_tac, loop_tacs, (unsafe_solvers, solvers)) => (congs, procs, mk_rews, termless, |
|
22717 | 753 |
subgoal_tac, loop_tacs, (insert eq_solver solver unsafe_solvers, solvers))); |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
754 |
|
15023 | 755 |
fun set_solvers solvers = map_simpset2 (fn (congs, procs, mk_rews, termless, |
756 |
subgoal_tac, loop_tacs, _) => (congs, procs, mk_rews, termless, |
|
757 |
subgoal_tac, loop_tacs, (solvers, solvers))); |
|
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
758 |
|
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
759 |
|
18208 | 760 |
(* empty *) |
761 |
||
762 |
fun init_ss mk_rews termless subgoal_tac solvers = |
|
32738 | 763 |
make_simpset ((Net.empty, [], (0, []), (0, Unsynchronized.ref false), NONE), |
18208 | 764 |
(([], []), Net.empty, mk_rews, termless, subgoal_tac, [], solvers)); |
765 |
||
766 |
fun clear_ss (ss as Simpset (_, {mk_rews, termless, subgoal_tac, solvers, ...})) = |
|
767 |
init_ss mk_rews termless subgoal_tac solvers |
|
768 |
|> inherit_context ss; |
|
769 |
||
47239 | 770 |
fun default_mk_sym _ th = SOME (th RS Drule.symmetric_thm); |
771 |
||
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
772 |
val empty_ss = |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
773 |
init_ss |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
774 |
{mk = fn _ => fn th => if can Logic.dest_equals (Thm.concl_of th) then [th] else [], |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
775 |
mk_cong = K I, |
47239 | 776 |
mk_sym = default_mk_sym, |
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
777 |
mk_eq_True = K (K NONE), |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
778 |
reorient = default_reorient} |
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
36354
diff
changeset
|
779 |
Term_Ord.termless (K (K no_tac)) ([], []); |
18208 | 780 |
|
781 |
||
782 |
(* merge *) (*NOTE: ignores some fields of 2nd simpset*) |
|
783 |
||
784 |
fun merge_ss (ss1, ss2) = |
|
24358 | 785 |
if pointer_eq (ss1, ss2) then ss1 |
786 |
else |
|
787 |
let |
|
788 |
val Simpset ({rules = rules1, prems = prems1, bounds = bounds1, depth = depth1, context = _}, |
|
789 |
{congs = (congs1, weak1), procs = procs1, mk_rews, termless, subgoal_tac, |
|
790 |
loop_tacs = loop_tacs1, solvers = (unsafe_solvers1, solvers1)}) = ss1; |
|
791 |
val Simpset ({rules = rules2, prems = prems2, bounds = bounds2, depth = depth2, context = _}, |
|
792 |
{congs = (congs2, weak2), procs = procs2, mk_rews = _, termless = _, subgoal_tac = _, |
|
793 |
loop_tacs = loop_tacs2, solvers = (unsafe_solvers2, solvers2)}) = ss2; |
|
30356 | 794 |
|
24358 | 795 |
val rules' = Net.merge eq_rrule (rules1, rules2); |
33520 | 796 |
val prems' = Thm.merge_thms (prems1, prems2); |
24358 | 797 |
val bounds' = if #1 bounds1 < #1 bounds2 then bounds2 else bounds1; |
798 |
val depth' = if #1 depth1 < #1 depth2 then depth2 else depth1; |
|
31298 | 799 |
val congs' = merge (Thm.eq_thm_prop o pairself #2) (congs1, congs2); |
24358 | 800 |
val weak' = merge (op =) (weak1, weak2); |
801 |
val procs' = Net.merge eq_proc (procs1, procs2); |
|
802 |
val loop_tacs' = AList.merge (op =) (K true) (loop_tacs1, loop_tacs2); |
|
803 |
val unsafe_solvers' = merge eq_solver (unsafe_solvers1, unsafe_solvers2); |
|
804 |
val solvers' = merge eq_solver (solvers1, solvers2); |
|
805 |
in |
|
806 |
make_simpset ((rules', prems', bounds', depth', NONE), ((congs', weak'), procs', |
|
807 |
mk_rews, termless, subgoal_tac, loop_tacs', (unsafe_solvers', solvers'))) |
|
808 |
end; |
|
18208 | 809 |
|
810 |
||
30356 | 811 |
(* dest_ss *) |
812 |
||
813 |
fun dest_ss (Simpset ({rules, ...}, {congs, procs, loop_tacs, solvers, ...})) = |
|
814 |
{simps = Net.entries rules |
|
815 |
|> map (fn {name, thm, ...} => (name, thm)), |
|
816 |
procs = Net.entries procs |
|
817 |
|> map (fn Proc {name, lhs, id, ...} => ((name, lhs), id)) |
|
818 |
|> partition_eq (eq_snd eq_procid) |
|
819 |
|> map (fn ps => (fst (fst (hd ps)), map (snd o fst) ps)), |
|
30908
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
krauss
parents:
30552
diff
changeset
|
820 |
congs = #1 congs, |
30356 | 821 |
weak_congs = #2 congs, |
822 |
loopers = map fst loop_tacs, |
|
823 |
unsafe_solvers = map solver_name (#1 solvers), |
|
824 |
safe_solvers = map solver_name (#2 solvers)}; |
|
825 |
||
826 |
||
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
15001
diff
changeset
|
827 |
|
10413 | 828 |
(** rewriting **) |
829 |
||
830 |
(* |
|
831 |
Uses conversions, see: |
|
832 |
L C Paulson, A higher-order implementation of rewriting, |
|
833 |
Science of Computer Programming 3 (1983), pages 119-149. |
|
834 |
*) |
|
835 |
||
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
836 |
fun check_conv msg ss thm thm' = |
10413 | 837 |
let |
36944 | 838 |
val thm'' = Thm.transitive thm thm' handle THM _ => |
839 |
Thm.transitive thm (Thm.transitive |
|
840 |
(Thm.symmetric (Drule.beta_eta_conversion (Thm.lhs_of thm'))) thm') |
|
22254 | 841 |
in if msg then trace_thm (fn () => "SUCCEEDED") ss thm' else (); SOME thm'' end |
10413 | 842 |
handle THM _ => |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
843 |
let |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
844 |
val _ $ _ $ prop0 = Thm.prop_of thm; |
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
845 |
in |
22254 | 846 |
trace_thm (fn () => "Proved wrong thm (Check subgoaler?)") ss thm'; |
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
847 |
trace_term false (fn () => "Should have proved:") ss prop0; |
15531 | 848 |
NONE |
10413 | 849 |
end; |
850 |
||
851 |
||
852 |
(* mk_procrule *) |
|
853 |
||
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
854 |
fun mk_procrule ss thm = |
15023 | 855 |
let val (_, prems, lhs, elhs, rhs, _) = decomp_simp thm in |
856 |
if rewrite_rule_extra_vars prems lhs rhs |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
857 |
then (cond_warn_thm "Extra vars on rhs:" ss thm; []) |
15023 | 858 |
else [mk_rrule2 {thm = thm, name = "", lhs = lhs, elhs = elhs, perm = false}] |
10413 | 859 |
end; |
860 |
||
861 |
||
15023 | 862 |
(* rewritec: conversion to apply the meta simpset to a term *) |
10413 | 863 |
|
15023 | 864 |
(*Since the rewriting strategy is bottom-up, we avoid re-normalizing already |
865 |
normalized terms by carrying around the rhs of the rewrite rule just |
|
866 |
applied. This is called the `skeleton'. It is decomposed in parallel |
|
867 |
with the term. Once a Var is encountered, the corresponding term is |
|
868 |
already in normal form. |
|
869 |
skel0 is a dummy skeleton that is to enforce complete normalization.*) |
|
870 |
||
10413 | 871 |
val skel0 = Bound 0; |
872 |
||
15023 | 873 |
(*Use rhs as skeleton only if the lhs does not contain unnormalized bits. |
874 |
The latter may happen iff there are weak congruence rules for constants |
|
875 |
in the lhs.*) |
|
10413 | 876 |
|
15023 | 877 |
fun uncond_skel ((_, weak), (lhs, rhs)) = |
878 |
if null weak then rhs (*optimization*) |
|
20671 | 879 |
else if exists_Const (member (op =) weak o #1) lhs then skel0 |
15023 | 880 |
else rhs; |
881 |
||
882 |
(*Behaves like unconditional rule if rhs does not contain vars not in the lhs. |
|
883 |
Otherwise those vars may become instantiated with unnormalized terms |
|
884 |
while the premises are solved.*) |
|
885 |
||
32797 | 886 |
fun cond_skel (args as (_, (lhs, rhs))) = |
33038 | 887 |
if subset (op =) (Term.add_vars rhs [], Term.add_vars lhs []) then uncond_skel args |
10413 | 888 |
else skel0; |
889 |
||
890 |
(* |
|
15023 | 891 |
Rewriting -- we try in order: |
10413 | 892 |
(1) beta reduction |
893 |
(2) unconditional rewrite rules |
|
894 |
(3) conditional rewrite rules |
|
895 |
(4) simplification procedures |
|
896 |
||
897 |
IMPORTANT: rewrite rules must not introduce new Vars or TVars! |
|
898 |
*) |
|
899 |
||
16458 | 900 |
fun rewritec (prover, thyt, maxt) ss t = |
10413 | 901 |
let |
24124
4399175e3014
turned simp_depth_limit into configuration option;
wenzelm
parents:
23938
diff
changeset
|
902 |
val ctxt = the_context ss; |
15023 | 903 |
val Simpset ({rules, ...}, {congs, procs, termless, ...}) = ss; |
10413 | 904 |
val eta_thm = Thm.eta_conversion t; |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
905 |
val eta_t' = Thm.rhs_of eta_thm; |
10413 | 906 |
val eta_t = term_of eta_t'; |
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
907 |
fun rew {thm, name, lhs, elhs, extra, fo, perm} = |
10413 | 908 |
let |
32797 | 909 |
val prop = Thm.prop_of thm; |
20546
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
910 |
val (rthm, elhs') = |
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
wenzelm
parents:
20330
diff
changeset
|
911 |
if maxt = ~1 orelse not extra then (thm, elhs) |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
912 |
else (Thm.incr_indexes (maxt + 1) thm, Thm.incr_indexes_cterm (maxt + 1) elhs); |
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
913 |
val insts = |
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
914 |
if fo then Thm.first_order_match (elhs', eta_t') |
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
915 |
else Thm.match (elhs', eta_t'); |
10413 | 916 |
val thm' = Thm.instantiate insts (Thm.rename_boundvars lhs eta_t rthm); |
14643 | 917 |
val prop' = Thm.prop_of thm'; |
21576 | 918 |
val unconditional = (Logic.count_prems prop' = 0); |
10413 | 919 |
val (lhs', rhs') = Logic.dest_equals (Logic.strip_imp_concl prop') |
920 |
in |
|
11295 | 921 |
if perm andalso not (termless (rhs', lhs')) |
22254 | 922 |
then (trace_named_thm (fn () => "Cannot apply permutative rewrite rule") ss (thm, name); |
923 |
trace_thm (fn () => "Term does not become smaller:") ss thm'; NONE) |
|
924 |
else (trace_named_thm (fn () => "Applying instance of rewrite rule") ss (thm, name); |
|
10413 | 925 |
if unconditional |
926 |
then |
|
22254 | 927 |
(trace_thm (fn () => "Rewriting:") ss thm'; |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
928 |
let |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
929 |
val lr = Logic.dest_equals prop; |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
930 |
val SOME thm'' = check_conv false ss eta_thm thm'; |
15531 | 931 |
in SOME (thm'', uncond_skel (congs, lr)) end) |
10413 | 932 |
else |
22254 | 933 |
(trace_thm (fn () => "Trying to rewrite:") ss thm'; |
24124
4399175e3014
turned simp_depth_limit into configuration option;
wenzelm
parents:
23938
diff
changeset
|
934 |
if simp_depth ss > Config.get ctxt simp_depth_limit |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
935 |
then |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
936 |
let |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
937 |
val s = "simp_depth_limit exceeded - giving up"; |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
938 |
val _ = trace false (fn () => s) ss; |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
939 |
val _ = if_visible ss warning s; |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
940 |
in NONE end |
16042 | 941 |
else |
942 |
case prover ss thm' of |
|
22254 | 943 |
NONE => (trace_thm (fn () => "FAILED") ss thm'; NONE) |
15531 | 944 |
| SOME thm2 => |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
945 |
(case check_conv true ss eta_thm thm2 of |
15531 | 946 |
NONE => NONE | |
947 |
SOME thm2' => |
|
10413 | 948 |
let val concl = Logic.strip_imp_concl prop |
949 |
val lr = Logic.dest_equals concl |
|
16042 | 950 |
in SOME (thm2', cond_skel (congs, lr)) end))) |
10413 | 951 |
end |
952 |
||
15531 | 953 |
fun rews [] = NONE |
10413 | 954 |
| rews (rrule :: rrules) = |
15531 | 955 |
let val opt = rew rrule handle Pattern.MATCH => NONE |
956 |
in case opt of NONE => rews rrules | some => some end; |
|
10413 | 957 |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
958 |
fun sort_rrules rrs = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
959 |
let |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
960 |
fun is_simple ({thm, ...}: rrule) = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
961 |
(case Thm.prop_of thm of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
962 |
Const ("==", _) $ _ $ _ => true |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
963 |
| _ => false); |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
964 |
fun sort [] (re1, re2) = re1 @ re2 |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
965 |
| sort (rr :: rrs) (re1, re2) = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
966 |
if is_simple rr |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
967 |
then sort rrs (rr :: re1, re2) |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
968 |
else sort rrs (re1, rr :: re2); |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
969 |
in sort rrs ([], []) end; |
10413 | 970 |
|
15531 | 971 |
fun proc_rews [] = NONE |
15023 | 972 |
| proc_rews (Proc {name, proc, lhs, ...} :: ps) = |
17203 | 973 |
if Pattern.matches thyt (Thm.term_of lhs, Thm.term_of t) then |
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
974 |
(debug_term false (fn () => "Trying procedure " ^ quote name ^ " on:") ss eta_t; |
23938 | 975 |
case proc ss eta_t' of |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
976 |
NONE => (debug false (fn () => "FAILED") ss; proc_rews ps) |
15531 | 977 |
| SOME raw_thm => |
22254 | 978 |
(trace_thm (fn () => "Procedure " ^ quote name ^ " produced rewrite rule:") |
979 |
ss raw_thm; |
|
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
980 |
(case rews (mk_procrule ss raw_thm) of |
22254 | 981 |
NONE => (trace_cterm true (fn () => "IGNORED result of simproc " ^ quote name ^ |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
982 |
" -- does not match") ss t; proc_rews ps) |
10413 | 983 |
| some => some))) |
984 |
else proc_rews ps; |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
985 |
in |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
986 |
(case eta_t of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
987 |
Abs _ $ _ => SOME (Thm.transitive eta_thm (Thm.beta_conversion false eta_t'), skel0) |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
988 |
| _ => |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
989 |
(case rews (sort_rrules (Net.match_term rules eta_t)) of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
990 |
NONE => proc_rews (Net.match_term procs eta_t) |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
991 |
| some => some)) |
10413 | 992 |
end; |
993 |
||
994 |
||
995 |
(* conversion to apply a congruence rule to a term *) |
|
996 |
||
30908
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
krauss
parents:
30552
diff
changeset
|
997 |
fun congc prover ss maxt cong t = |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
998 |
let val rthm = Thm.incr_indexes (maxt + 1) cong; |
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
999 |
val rlhs = fst (Thm.dest_equals (Drule.strip_imp_concl (cprop_of rthm))); |
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1000 |
val insts = Thm.match (rlhs, t) |
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1001 |
(* Thm.match can raise Pattern.MATCH; |
10413 | 1002 |
is handled when congc is called *) |
1003 |
val thm' = Thm.instantiate insts (Thm.rename_boundvars (term_of rlhs) (term_of t) rthm); |
|
32797 | 1004 |
val _ = trace_thm (fn () => "Applying congruence rule:") ss thm'; |
22254 | 1005 |
fun err (msg, thm) = (trace_thm (fn () => msg) ss thm; NONE) |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1006 |
in |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1007 |
(case prover thm' of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1008 |
NONE => err ("Congruence proof failed. Could not prove", thm') |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1009 |
| SOME thm2 => |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1010 |
(case check_conv true ss (Drule.beta_eta_conversion t) thm2 of |
15531 | 1011 |
NONE => err ("Congruence proof failed. Should not have proved", thm2) |
1012 |
| SOME thm2' => |
|
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1013 |
if op aconv (pairself term_of (Thm.dest_equals (cprop_of thm2'))) |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1014 |
then NONE else SOME thm2')) |
10413 | 1015 |
end; |
1016 |
||
1017 |
val (cA, (cB, cC)) = |
|
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1018 |
apsnd Thm.dest_equals (Thm.dest_implies (hd (cprems_of Drule.imp_cong))); |
10413 | 1019 |
|
15531 | 1020 |
fun transitive1 NONE NONE = NONE |
1021 |
| transitive1 (SOME thm1) NONE = SOME thm1 |
|
1022 |
| transitive1 NONE (SOME thm2) = SOME thm2 |
|
36944 | 1023 |
| transitive1 (SOME thm1) (SOME thm2) = SOME (Thm.transitive thm1 thm2) |
10413 | 1024 |
|
15531 | 1025 |
fun transitive2 thm = transitive1 (SOME thm); |
1026 |
fun transitive3 thm = transitive1 thm o SOME; |
|
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1027 |
|
16458 | 1028 |
fun bottomc ((simprem, useprem, mutsimp), prover, thy, maxidx) = |
10413 | 1029 |
let |
15023 | 1030 |
fun botc skel ss t = |
15531 | 1031 |
if is_Var skel then NONE |
10413 | 1032 |
else |
15023 | 1033 |
(case subc skel ss t of |
15531 | 1034 |
some as SOME thm1 => |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1035 |
(case rewritec (prover, thy, maxidx) ss (Thm.rhs_of thm1) of |
15531 | 1036 |
SOME (thm2, skel2) => |
36944 | 1037 |
transitive2 (Thm.transitive thm1 thm2) |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1038 |
(botc skel2 ss (Thm.rhs_of thm2)) |
15531 | 1039 |
| NONE => some) |
1040 |
| NONE => |
|
16458 | 1041 |
(case rewritec (prover, thy, maxidx) ss t of |
15531 | 1042 |
SOME (thm2, skel2) => transitive2 thm2 |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1043 |
(botc skel2 ss (Thm.rhs_of thm2)) |
15531 | 1044 |
| NONE => NONE)) |
10413 | 1045 |
|
15023 | 1046 |
and try_botc ss t = |
1047 |
(case botc skel0 ss t of |
|
36944 | 1048 |
SOME trec1 => trec1 | NONE => (Thm.reflexive t)) |
10413 | 1049 |
|
15023 | 1050 |
and subc skel (ss as Simpset ({bounds, ...}, {congs, ...})) t0 = |
10413 | 1051 |
(case term_of t0 of |
32797 | 1052 |
Abs (a, T, _) => |
15023 | 1053 |
let |
20079
ec5c8584487c
replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents:
20057
diff
changeset
|
1054 |
val b = Name.bound (#1 bounds); |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
1055 |
val (v, t') = Thm.dest_abs (SOME b) t0; |
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
1056 |
val b' = #1 (Term.dest_Free (Thm.term_of v)); |
21962 | 1057 |
val _ = |
1058 |
if b <> b' then |
|
35231 | 1059 |
warning ("Simplifier: renamed bound variable " ^ |
48992 | 1060 |
quote b ^ " to " ^ quote b' ^ Position.here (Position.thread_data ())) |
21962 | 1061 |
else (); |
17614 | 1062 |
val ss' = add_bound ((b', T), a) ss; |
15023 | 1063 |
val skel' = case skel of Abs (_, _, sk) => sk | _ => skel0; |
1064 |
in case botc skel' ss' t' of |
|
36944 | 1065 |
SOME thm => SOME (Thm.abstract_rule a v thm) |
15531 | 1066 |
| NONE => NONE |
10413 | 1067 |
end |
1068 |
| t $ _ => (case t of |
|
15023 | 1069 |
Const ("==>", _) $ _ => impc t0 ss |
10413 | 1070 |
| Abs _ => |
36944 | 1071 |
let val thm = Thm.beta_conversion false t0 |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1072 |
in case subc skel0 ss (Thm.rhs_of thm) of |
15531 | 1073 |
NONE => SOME thm |
36944 | 1074 |
| SOME thm' => SOME (Thm.transitive thm thm') |
10413 | 1075 |
end |
1076 |
| _ => |
|
1077 |
let fun appc () = |
|
1078 |
let |
|
1079 |
val (tskel, uskel) = case skel of |
|
1080 |
tskel $ uskel => (tskel, uskel) |
|
1081 |
| _ => (skel0, skel0); |
|
10767
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
wenzelm
parents:
10413
diff
changeset
|
1082 |
val (ct, cu) = Thm.dest_comb t0 |
10413 | 1083 |
in |
15023 | 1084 |
(case botc tskel ss ct of |
15531 | 1085 |
SOME thm1 => |
15023 | 1086 |
(case botc uskel ss cu of |
36944 | 1087 |
SOME thm2 => SOME (Thm.combination thm1 thm2) |
1088 |
| NONE => SOME (Thm.combination thm1 (Thm.reflexive cu))) |
|
15531 | 1089 |
| NONE => |
15023 | 1090 |
(case botc uskel ss cu of |
36944 | 1091 |
SOME thm1 => SOME (Thm.combination (Thm.reflexive ct) thm1) |
15531 | 1092 |
| NONE => NONE)) |
10413 | 1093 |
end |
1094 |
val (h, ts) = strip_comb t |
|
13835
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
ballarin
parents:
13828
diff
changeset
|
1095 |
in case cong_name h of |
15531 | 1096 |
SOME a => |
17232 | 1097 |
(case AList.lookup (op =) (fst congs) a of |
15531 | 1098 |
NONE => appc () |
1099 |
| SOME cong => |
|
15023 | 1100 |
(*post processing: some partial applications h t1 ... tj, j <= length ts, |
1101 |
may be a redex. Example: map (%x. x) = (%xs. xs) wrt map_cong*) |
|
10413 | 1102 |
(let |
16985
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
wenzelm
parents:
16938
diff
changeset
|
1103 |
val thm = congc (prover ss) ss maxidx cong t0; |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1104 |
val t = the_default t0 (Option.map Thm.rhs_of thm); |
10767
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
wenzelm
parents:
10413
diff
changeset
|
1105 |
val (cl, cr) = Thm.dest_comb t |
10413 | 1106 |
val dVar = Var(("", 0), dummyT) |
1107 |
val skel = |
|
1108 |
list_comb (h, replicate (length ts) dVar) |
|
15023 | 1109 |
in case botc skel ss cl of |
15531 | 1110 |
NONE => thm |
1111 |
| SOME thm' => transitive3 thm |
|
36944 | 1112 |
(Thm.combination thm' (Thm.reflexive cr)) |
20057 | 1113 |
end handle Pattern.MATCH => appc ())) |
10413 | 1114 |
| _ => appc () |
1115 |
end) |
|
15531 | 1116 |
| _ => NONE) |
10413 | 1117 |
|
15023 | 1118 |
and impc ct ss = |
1119 |
if mutsimp then mut_impc0 [] ct [] [] ss else nonmut_impc ct ss |
|
10413 | 1120 |
|
15023 | 1121 |
and rules_of_prem ss prem = |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1122 |
if maxidx_of_term (term_of prem) <> ~1 |
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1123 |
then (trace_cterm true |
22254 | 1124 |
(fn () => "Cannot add premise as rewrite rule because it contains (type) unknowns:") |
1125 |
ss prem; ([], NONE)) |
|
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1126 |
else |
36944 | 1127 |
let val asm = Thm.assume prem |
15531 | 1128 |
in (extract_safe_rrules (ss, asm), SOME asm) end |
10413 | 1129 |
|
15023 | 1130 |
and add_rrules (rrss, asms) ss = |
20028
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
wenzelm
parents:
19798
diff
changeset
|
1131 |
(fold o fold) insert_rrule rrss ss |> add_prems (map_filter I asms) |
10413 | 1132 |
|
23178 | 1133 |
and disch r prem eq = |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1134 |
let |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1135 |
val (lhs, rhs) = Thm.dest_equals (Thm.cprop_of eq); |
36944 | 1136 |
val eq' = Thm.implies_elim (Thm.instantiate |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1137 |
([], [(cA, prem), (cB, lhs), (cC, rhs)]) Drule.imp_cong) |
36944 | 1138 |
(Thm.implies_intr prem eq) |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1139 |
in if not r then eq' else |
10413 | 1140 |
let |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1141 |
val (prem', concl) = Thm.dest_implies lhs; |
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1142 |
val (prem'', _) = Thm.dest_implies rhs |
36944 | 1143 |
in Thm.transitive (Thm.transitive |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1144 |
(Thm.instantiate ([], [(cA, prem'), (cB, prem), (cC, concl)]) |
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1145 |
Drule.swap_prems_eq) eq') |
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1146 |
(Thm.instantiate ([], [(cA, prem), (cB, prem''), (cC, concl)]) |
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1147 |
Drule.swap_prems_eq) |
10413 | 1148 |
end |
1149 |
end |
|
1150 |
||
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1151 |
and rebuild [] _ _ _ _ eq = eq |
32797 | 1152 |
| rebuild (prem :: prems) concl (_ :: rrss) (_ :: asms) ss eq = |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1153 |
let |
15023 | 1154 |
val ss' = add_rrules (rev rrss, rev asms) ss; |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1155 |
val concl' = |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1156 |
Drule.mk_implies (prem, the_default concl (Option.map Thm.rhs_of eq)); |
23178 | 1157 |
val dprem = Option.map (disch false prem) |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1158 |
in |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1159 |
(case rewritec (prover, thy, maxidx) ss' concl' of |
15531 | 1160 |
NONE => rebuild prems concl' rrss asms ss (dprem eq) |
23178 | 1161 |
| SOME (eq', _) => transitive2 (fold (disch false) |
1162 |
prems (the (transitive3 (dprem eq) eq'))) |
|
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1163 |
(mut_impc0 (rev prems) (Thm.rhs_of eq') (rev rrss) (rev asms) ss)) |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1164 |
end |
15023 | 1165 |
|
1166 |
and mut_impc0 prems concl rrss asms ss = |
|
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1167 |
let |
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1168 |
val prems' = strip_imp_prems concl; |
15023 | 1169 |
val (rrss', asms') = split_list (map (rules_of_prem ss) prems') |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1170 |
in |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1171 |
mut_impc (prems @ prems') (strip_imp_concl concl) (rrss @ rrss') |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1172 |
(asms @ asms') [] [] [] [] ss ~1 ~1 |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1173 |
end |
15023 | 1174 |
|
1175 |
and mut_impc [] concl [] [] prems' rrss' asms' eqns ss changed k = |
|
33245 | 1176 |
transitive1 (fold (fn (eq1, prem) => fn eq2 => transitive1 eq1 |
1177 |
(Option.map (disch false prem) eq2)) (eqns ~~ prems') NONE) |
|
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1178 |
(if changed > 0 then |
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1179 |
mut_impc (rev prems') concl (rev rrss') (rev asms') |
15023 | 1180 |
[] [] [] [] ss ~1 changed |
1181 |
else rebuild prems' concl rrss' asms' ss |
|
1182 |
(botc skel0 (add_rrules (rev rrss', rev asms') ss) concl)) |
|
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1183 |
|
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1184 |
| mut_impc (prem :: prems) concl (rrs :: rrss) (asm :: asms) |
15023 | 1185 |
prems' rrss' asms' eqns ss changed k = |
15531 | 1186 |
case (if k = 0 then NONE else botc skel0 (add_rrules |
15023 | 1187 |
(rev rrss' @ rrss, rev asms' @ asms) ss) prem) of |
15531 | 1188 |
NONE => mut_impc prems concl rrss asms (prem :: prems') |
1189 |
(rrs :: rrss') (asm :: asms') (NONE :: eqns) ss changed |
|
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1190 |
(if k = 0 then 0 else k - 1) |
15531 | 1191 |
| SOME eqn => |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1192 |
let |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1193 |
val prem' = Thm.rhs_of eqn; |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1194 |
val tprems = map term_of prems; |
33029 | 1195 |
val i = 1 + fold Integer.max (map (fn p => |
44058 | 1196 |
find_index (fn q => q aconv p) tprems) (Thm.hyps_of eqn)) ~1; |
15023 | 1197 |
val (rrs', asm') = rules_of_prem ss prem' |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1198 |
in mut_impc prems concl rrss asms (prem' :: prems') |
23178 | 1199 |
(rrs' :: rrss') (asm' :: asms') (SOME (fold_rev (disch true) |
33957 | 1200 |
(take i prems) |
36944 | 1201 |
(Drule.imp_cong_rule eqn (Thm.reflexive (Drule.list_implies |
33957 | 1202 |
(drop i prems, concl))))) :: eqns) |
20671 | 1203 |
ss (length prems') ~1 |
13607
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1204 |
end |
6908230623a3
Completely reimplemented mutual simplification of premises.
berghofe
parents:
13569
diff
changeset
|
1205 |
|
15023 | 1206 |
(*legacy code - only for backwards compatibility*) |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1207 |
and nonmut_impc ct ss = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1208 |
let |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1209 |
val (prem, conc) = Thm.dest_implies ct; |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1210 |
val thm1 = if simprem then botc skel0 ss prem else NONE; |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1211 |
val prem1 = the_default prem (Option.map Thm.rhs_of thm1); |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1212 |
val ss1 = |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1213 |
if not useprem then ss |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1214 |
else add_rrules (apsnd single (apfst single (rules_of_prem ss prem1))) ss |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1215 |
in |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1216 |
(case botc skel0 ss1 conc of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1217 |
NONE => |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1218 |
(case thm1 of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1219 |
NONE => NONE |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1220 |
| SOME thm1' => SOME (Drule.imp_cong_rule thm1' (Thm.reflexive conc))) |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1221 |
| SOME thm2 => |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1222 |
let val thm2' = disch false prem1 thm2 in |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1223 |
(case thm1 of |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1224 |
NONE => SOME thm2' |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1225 |
| SOME thm1' => |
36944 | 1226 |
SOME (Thm.transitive (Drule.imp_cong_rule thm1' (Thm.reflexive conc)) thm2')) |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1227 |
end) |
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1228 |
end |
10413 | 1229 |
|
15023 | 1230 |
in try_botc end; |
10413 | 1231 |
|
1232 |
||
15023 | 1233 |
(* Meta-rewriting: rewrites t to u and returns the theorem t==u *) |
10413 | 1234 |
|
1235 |
(* |
|
1236 |
Parameters: |
|
1237 |
mode = (simplify A, |
|
1238 |
use A in simplifying B, |
|
1239 |
use prems of B (if B is again a meta-impl.) to simplify A) |
|
1240 |
when simplifying A ==> B |
|
1241 |
prover: how to solve premises in conditional rewrites and congruences |
|
1242 |
*) |
|
1243 |
||
32738 | 1244 |
val debug_bounds = Unsynchronized.ref false; |
17705 | 1245 |
|
21962 | 1246 |
fun check_bounds ss ct = |
1247 |
if ! debug_bounds then |
|
1248 |
let |
|
1249 |
val Simpset ({bounds = (_, bounds), ...}, _) = ss; |
|
1250 |
val bs = fold_aterms (fn Free (x, _) => |
|
1251 |
if Name.is_bound x andalso not (AList.defined eq_bound bounds x) |
|
1252 |
then insert (op =) x else I |
|
1253 |
| _ => I) (term_of ct) []; |
|
1254 |
in |
|
1255 |
if null bs then () |
|
35979
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
boehmes
parents:
35845
diff
changeset
|
1256 |
else print_term_global ss true ("Simplifier: term contains loose bounds: " ^ commas_quote bs) |
21962 | 1257 |
(Thm.theory_of_cterm ct) (Thm.term_of ct) |
1258 |
end |
|
1259 |
else (); |
|
17614 | 1260 |
|
19052
113dbd65319e
rewrite_cterm: Thm.adjust_maxidx prevents unnecessary increments on rules;
wenzelm
parents:
18929
diff
changeset
|
1261 |
fun rewrite_cterm mode prover raw_ss raw_ct = |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
1262 |
let |
26626
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
26424
diff
changeset
|
1263 |
val thy = Thm.theory_of_cterm raw_ct; |
20260 | 1264 |
val ct = Thm.adjust_maxidx_cterm ~1 raw_ct; |
32797 | 1265 |
val {maxidx, ...} = Thm.rep_cterm ct; |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
1266 |
val ss = inc_simp_depth (activate_context thy raw_ss); |
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
1267 |
val depth = simp_depth ss; |
21962 | 1268 |
val _ = |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
1269 |
if depth mod 20 = 0 then |
38834
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents:
38715
diff
changeset
|
1270 |
if_visible ss warning ("Simplification depth " ^ string_of_int depth) |
21962 | 1271 |
else (); |
22254 | 1272 |
val _ = trace_cterm false (fn () => "SIMPLIFIER INVOKED ON THE FOLLOWING TERM:") ss ct; |
17882
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
wenzelm
parents:
17756
diff
changeset
|
1273 |
val _ = check_bounds ss ct; |
22892
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
wenzelm
parents:
22717
diff
changeset
|
1274 |
in bottomc (mode, Option.map Drule.flexflex_unique oo prover, thy, maxidx) ss ct end; |
10413 | 1275 |
|
21708 | 1276 |
val simple_prover = |
43597 | 1277 |
SINGLE o (fn ss => ALLGOALS (resolve_tac (prems_of ss))); |
21708 | 1278 |
|
1279 |
fun rewrite _ [] ct = Thm.reflexive ct |
|
27582 | 1280 |
| rewrite full thms ct = rewrite_cterm (full, false, false) simple_prover |
35232
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
wenzelm
parents:
35231
diff
changeset
|
1281 |
(global_context (Thm.theory_of_cterm ct) empty_ss addsimps thms) ct; |
11672 | 1282 |
|
23598 | 1283 |
fun simplify full thms = Conv.fconv_rule (rewrite full thms); |
21708 | 1284 |
val rewrite_rule = simplify true; |
1285 |
||
15023 | 1286 |
(*simple term rewriting -- no proof*) |
16458 | 1287 |
fun rewrite_term thy rules procs = |
17203 | 1288 |
Pattern.rewrite_term thy (map decomp_simp' rules) procs; |
15023 | 1289 |
|
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
22892
diff
changeset
|
1290 |
fun rewrite_thm mode prover ss = Conv.fconv_rule (rewrite_cterm mode prover ss); |
10413 | 1291 |
|
23536
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
1292 |
(*Rewrite the subgoals of a proof state (represented by a theorem)*) |
21708 | 1293 |
fun rewrite_goals_rule thms th = |
23584 | 1294 |
Conv.fconv_rule (Conv.prems_conv ~1 (rewrite_cterm (true, true, true) simple_prover |
35232
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
wenzelm
parents:
35231
diff
changeset
|
1295 |
(global_context (Thm.theory_of_thm th) empty_ss addsimps thms))) th; |
10413 | 1296 |
|
20228
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1297 |
|
21708 | 1298 |
(** meta-rewriting tactics **) |
1299 |
||
28839
32d498cf7595
eliminated rewrite_tac/fold_tac, which are not well-formed tactics due to change of main conclusion;
wenzelm
parents:
28620
diff
changeset
|
1300 |
(*Rewrite all subgoals*) |
21708 | 1301 |
fun rewrite_goals_tac defs = PRIMITIVE (rewrite_goals_rule defs); |
1302 |
||
28839
32d498cf7595
eliminated rewrite_tac/fold_tac, which are not well-formed tactics due to change of main conclusion;
wenzelm
parents:
28620
diff
changeset
|
1303 |
(*Rewrite one subgoal*) |
46465 | 1304 |
fun generic_rewrite_goal_tac mode prover_tac ss i thm = |
25203
e5b2dd8db7c8
asm_rewrite_goal_tac: avoiding PRIMITIVE lets informative exceptions (from simprocs) get through;
wenzelm
parents:
24707
diff
changeset
|
1305 |
if 0 < i andalso i <= Thm.nprems_of thm then |
e5b2dd8db7c8
asm_rewrite_goal_tac: avoiding PRIMITIVE lets informative exceptions (from simprocs) get through;
wenzelm
parents:
24707
diff
changeset
|
1306 |
Seq.single (Conv.gconv_rule (rewrite_cterm mode (SINGLE o prover_tac) ss) i thm) |
e5b2dd8db7c8
asm_rewrite_goal_tac: avoiding PRIMITIVE lets informative exceptions (from simprocs) get through;
wenzelm
parents:
24707
diff
changeset
|
1307 |
else Seq.empty; |
23536
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
1308 |
|
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
1309 |
fun rewrite_goal_tac rews = |
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
1310 |
let val ss = empty_ss addsimps rews in |
46465 | 1311 |
fn i => fn st => generic_rewrite_goal_tac (true, false, false) (K no_tac) |
35232
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
wenzelm
parents:
35231
diff
changeset
|
1312 |
(global_context (Thm.theory_of_thm st) ss) i st |
23536
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
1313 |
end; |
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23221
diff
changeset
|
1314 |
|
46707 | 1315 |
(*Prunes all redundant parameters from the proof state by rewriting.*) |
46186 | 1316 |
val prune_params_tac = rewrite_goals_tac [Drule.triv_forall_equality]; |
21708 | 1317 |
|
1318 |
||
1319 |
(* for folding definitions, handling critical pairs *) |
|
1320 |
||
1321 |
(*The depth of nesting in a term*) |
|
32797 | 1322 |
fun term_depth (Abs (_, _, t)) = 1 + term_depth t |
1323 |
| term_depth (f $ t) = 1 + Int.max (term_depth f, term_depth t) |
|
21708 | 1324 |
| term_depth _ = 0; |
1325 |
||
1326 |
val lhs_of_thm = #1 o Logic.dest_equals o prop_of; |
|
1327 |
||
1328 |
(*folding should handle critical pairs! E.g. K == Inl(0), S == Inr(Inl(0)) |
|
1329 |
Returns longest lhs first to avoid folding its subexpressions.*) |
|
1330 |
fun sort_lhs_depths defs = |
|
1331 |
let val keylist = AList.make (term_depth o lhs_of_thm) defs |
|
1332 |
val keys = sort_distinct (rev_order o int_ord) (map #2 keylist) |
|
1333 |
in map (AList.find (op =) keylist) keys end; |
|
1334 |
||
36944 | 1335 |
val rev_defs = sort_lhs_depths o map Thm.symmetric; |
21708 | 1336 |
|
1337 |
fun fold_rule defs = fold rewrite_rule (rev_defs defs); |
|
1338 |
fun fold_goals_tac defs = EVERY (map rewrite_goals_tac (rev_defs defs)); |
|
1339 |
||
1340 |
||
20228
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1341 |
(* HHF normal form: !! before ==>, outermost !! generalized *) |
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1342 |
|
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1343 |
local |
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1344 |
|
21565 | 1345 |
fun gen_norm_hhf ss th = |
1346 |
(if Drule.is_norm_hhf (Thm.prop_of th) then th |
|
26424 | 1347 |
else Conv.fconv_rule |
35232
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
wenzelm
parents:
35231
diff
changeset
|
1348 |
(rewrite_cterm (true, false, false) (K (K NONE)) (global_context (Thm.theory_of_thm th) ss)) th) |
21565 | 1349 |
|> Thm.adjust_maxidx_thm ~1 |
1350 |
|> Drule.gen_all; |
|
20228
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1351 |
|
28620 | 1352 |
val hhf_ss = empty_ss addsimps Drule.norm_hhf_eqs; |
20228
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1353 |
|
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1354 |
in |
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1355 |
|
26424 | 1356 |
val norm_hhf = gen_norm_hhf hhf_ss; |
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45405
diff
changeset
|
1357 |
val norm_hhf_protect = gen_norm_hhf (hhf_ss |> add_eqcong Drule.protect_cong); |
20228
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1358 |
|
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1359 |
end; |
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
wenzelm
parents:
20197
diff
changeset
|
1360 |
|
10413 | 1361 |
end; |
1362 |
||
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41227
diff
changeset
|
1363 |
structure Basic_Meta_Simplifier: BASIC_RAW_SIMPLIFIER = Raw_Simplifier; |
32738 | 1364 |
open Basic_Meta_Simplifier; |