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