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