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