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