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