author | wenzelm |
Tue, 20 Aug 2019 11:01:05 +0200 | |
changeset 70586 | 57df8a85317a |
parent 70308 | 7f568724d67e |
child 71235 | d12c58e12c51 |
permissions | -rw-r--r-- |
16014 | 1 |
(* Title: Pure/simplifier.ML |
2 |
Author: Tobias Nipkow and Markus Wenzel, TU Muenchen |
|
3 |
||
4 |
Generic simplifier, suitable for most logics (see also |
|
41386 | 5 |
raw_simplifier.ML for the actual meta-level rewriting engine). |
16014 | 6 |
*) |
7 |
||
8 |
signature BASIC_SIMPLIFIER = |
|
9 |
sig |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
10 |
include BASIC_RAW_SIMPLIFIER |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
11 |
val simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
12 |
val asm_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
13 |
val full_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
14 |
val asm_lr_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
15 |
val asm_full_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
16 |
val safe_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
17 |
val safe_asm_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
18 |
val safe_full_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
19 |
val safe_asm_lr_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
20 |
val safe_asm_full_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
21 |
val simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
22 |
val asm_simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
23 |
val full_simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
24 |
val asm_lr_simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
25 |
val asm_full_simplify: Proof.context -> thm -> thm |
16014 | 26 |
end; |
27 |
||
28 |
signature SIMPLIFIER = |
|
29 |
sig |
|
30 |
include BASIC_SIMPLIFIER |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
31 |
val map_ss: (Proof.context -> Proof.context) -> Context.generic -> Context.generic |
56510
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
32 |
val attrib: (thm -> Proof.context -> Proof.context) -> attribute |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
33 |
val simp_add: attribute |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
34 |
val simp_del: attribute |
68403 | 35 |
val simp_flip: attribute |
56510
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
36 |
val cong_add: attribute |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
37 |
val cong_del: attribute |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
38 |
val check_simproc: Proof.context -> xstring * Position.T -> string |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
39 |
val the_simproc: Proof.context -> string -> simproc |
62913 | 40 |
type 'a simproc_spec = {lhss: 'a list, proc: morphism -> Proof.context -> cterm -> thm option} |
61144 | 41 |
val make_simproc: Proof.context -> string -> term simproc_spec -> simproc |
42 |
val define_simproc: binding -> term simproc_spec -> local_theory -> local_theory |
|
43 |
val define_simproc_cmd: binding -> string simproc_spec -> local_theory -> local_theory |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59621
diff
changeset
|
44 |
val pretty_simpset: bool -> Proof.context -> Pretty.T |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
45 |
val default_mk_sym: Proof.context -> thm -> thm option |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
46 |
val prems_of: Proof.context -> thm list |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
47 |
val add_simp: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
48 |
val del_simp: thm -> Proof.context -> Proof.context |
63221
7d43fbbaba28
avoid warnings on duplicate rules in the given list;
wenzelm
parents:
62913
diff
changeset
|
49 |
val init_simpset: thm list -> Proof.context -> Proof.context |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
50 |
val add_eqcong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
51 |
val del_eqcong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
52 |
val add_cong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
53 |
val del_cong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
54 |
val add_prems: thm list -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
55 |
val mksimps: Proof.context -> thm -> thm list |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
56 |
val set_mksimps: (Proof.context -> thm -> thm list) -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
57 |
val set_mkcong: (Proof.context -> thm -> thm) -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
58 |
val set_mksym: (Proof.context -> thm -> thm option) -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
59 |
val set_mkeqTrue: (Proof.context -> thm -> thm option) -> Proof.context -> Proof.context |
70586 | 60 |
val set_term_ord: term ord -> Proof.context -> Proof.context |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
61 |
val set_subgoaler: (Proof.context -> int -> tactic) -> Proof.context -> Proof.context |
54729
c5cd7a58cf2d
generic trace operations for main steps of Simplifier;
wenzelm
parents:
54728
diff
changeset
|
62 |
type trace_ops |
54731
384ac33802b0
clarified Trace_Ops: global theory data avoids init of simpset in Pure.thy, which is important to act as neutral element in merge;
wenzelm
parents:
54729
diff
changeset
|
63 |
val set_trace_ops: trace_ops -> theory -> theory |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
64 |
val rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
65 |
val asm_rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
66 |
val full_rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
67 |
val asm_lr_rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
68 |
val asm_full_rewrite: Proof.context -> conv |
30513 | 69 |
val cong_modifiers: Method.modifier parser list |
70 |
val simp_modifiers': Method.modifier parser list |
|
71 |
val simp_modifiers: Method.modifier parser list |
|
72 |
val method_setup: Method.modifier parser list -> theory -> theory |
|
63532
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
73 |
val unsafe_solver_tac: Proof.context -> int -> tactic |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
74 |
val unsafe_solver: solver |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
75 |
val safe_solver_tac: Proof.context -> int -> tactic |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
76 |
val safe_solver: solver |
16014 | 77 |
end; |
78 |
||
79 |
structure Simplifier: SIMPLIFIER = |
|
80 |
struct |
|
81 |
||
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
82 |
open Raw_Simplifier; |
21708 | 83 |
|
84 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
85 |
(** declarations **) |
16014 | 86 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
87 |
(* attributes *) |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
88 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
89 |
fun attrib f = Thm.declaration_attribute (map_ss o f); |
16014 | 90 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
91 |
val simp_add = attrib add_simp; |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
92 |
val simp_del = attrib del_simp; |
68403 | 93 |
val simp_flip = attrib flip_simp; |
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
94 |
val cong_add = attrib add_cong; |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
95 |
val cong_del = attrib del_cong; |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
96 |
|
16014 | 97 |
|
22201 | 98 |
(** named simprocs **) |
99 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
100 |
structure Simprocs = Generic_Data |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
101 |
( |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
102 |
type T = simproc Name_Space.table; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
103 |
val empty : T = Name_Space.empty_table "simproc"; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
104 |
val extend = I; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
105 |
fun merge data : T = Name_Space.merge_tables data; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
106 |
); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
107 |
|
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
108 |
|
22204 | 109 |
(* get simprocs *) |
110 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
111 |
val get_simprocs = Simprocs.get o Context.Proof; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
112 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
113 |
fun check_simproc ctxt = Name_Space.check (Context.Proof ctxt) (get_simprocs ctxt) #> #1; |
42466 | 114 |
val the_simproc = Name_Space.get o get_simprocs; |
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
115 |
|
53171 | 116 |
val _ = Theory.setup |
69592
a80d8ec6c998
support for isabelle update -u control_cartouches;
wenzelm
parents:
69349
diff
changeset
|
117 |
(ML_Antiquotation.value_embedded \<^binding>\<open>simproc\<close> |
69349
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
wenzelm
parents:
68403
diff
changeset
|
118 |
(Args.context -- Scan.lift Args.embedded_position |
53171 | 119 |
>> (fn (ctxt, name) => |
120 |
"Simplifier.the_simproc ML_context " ^ ML_Syntax.print_string (check_simproc ctxt name)))); |
|
22204 | 121 |
|
122 |
||
123 |
(* define simprocs *) |
|
22201 | 124 |
|
62913 | 125 |
type 'a simproc_spec = {lhss: 'a list, proc: morphism -> Proof.context -> cterm -> thm option}; |
61144 | 126 |
|
62913 | 127 |
fun make_simproc ctxt name {lhss, proc} = |
61144 | 128 |
let |
70308 | 129 |
val ctxt' = fold Proof_Context.augment lhss ctxt; |
61144 | 130 |
val lhss' = Variable.export_terms ctxt' ctxt lhss; |
131 |
in |
|
62913 | 132 |
cert_simproc (Proof_Context.theory_of ctxt) name {lhss = lhss', proc = proc} |
61144 | 133 |
end; |
134 |
||
22201 | 135 |
local |
136 |
||
62913 | 137 |
fun def_simproc prep b {lhss, proc} lthy = |
22201 | 138 |
let |
61144 | 139 |
val simproc = |
62913 | 140 |
make_simproc lthy (Local_Theory.full_name lthy b) {lhss = prep lthy lhss, proc = proc}; |
22201 | 141 |
in |
61146
6fced6d926be
clarified declaration flags, like 'declaration' command;
wenzelm
parents:
61144
diff
changeset
|
142 |
lthy |> Local_Theory.declaration {syntax = false, pervasive = false} (fn phi => fn context => |
22201 | 143 |
let |
28991 | 144 |
val b' = Morphism.binding phi b; |
45290 | 145 |
val simproc' = transform_simproc phi simproc; |
22201 | 146 |
in |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42372
diff
changeset
|
147 |
context |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
148 |
|> Simprocs.map (#2 o Name_Space.define context true (b', simproc')) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
149 |
|> map_ss (fn ctxt => ctxt addsimprocs [simproc']) |
22201 | 150 |
end) |
151 |
end; |
|
152 |
||
153 |
in |
|
154 |
||
61144 | 155 |
val define_simproc = def_simproc Syntax.check_terms; |
156 |
val define_simproc_cmd = def_simproc Syntax.read_terms; |
|
22201 | 157 |
|
158 |
end; |
|
159 |
||
160 |
||
161 |
||
56510
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
162 |
(** pretty_simpset **) |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
163 |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59621
diff
changeset
|
164 |
fun pretty_simpset verbose ctxt = |
56510
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
165 |
let |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
166 |
val pretty_term = Syntax.pretty_term ctxt; |
61268 | 167 |
val pretty_thm = Thm.pretty_thm ctxt; |
168 |
val pretty_thm_item = Thm.pretty_thm_item ctxt; |
|
56510
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
169 |
|
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
170 |
fun pretty_simproc (name, lhss) = |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
171 |
Pretty.block |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
172 |
(Pretty.mark_str name :: Pretty.str ":" :: Pretty.fbrk :: |
61098 | 173 |
Pretty.fbreaks (map (Pretty.item o single o pretty_term) lhss)); |
56510
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
174 |
|
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
175 |
fun pretty_cong_name (const, name) = |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
176 |
pretty_term ((if const then Const else Free) (name, dummyT)); |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
177 |
fun pretty_cong (name, thm) = |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
178 |
Pretty.block [pretty_cong_name name, Pretty.str ":", Pretty.brk 1, pretty_thm thm]; |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
179 |
|
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
180 |
val {simps, procs, congs, loopers, unsafe_solvers, safe_solvers, ...} = |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
181 |
dest_ss (simpset_of ctxt); |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
182 |
val simprocs = |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59621
diff
changeset
|
183 |
Name_Space.markup_entries verbose ctxt (Name_Space.space_of_table (get_simprocs ctxt)) procs; |
56510
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
184 |
in |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
185 |
[Pretty.big_list "simplification rules:" (map (pretty_thm_item o #2) simps), |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
186 |
Pretty.big_list "simplification procedures:" (map pretty_simproc simprocs), |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
187 |
Pretty.big_list "congruences:" (map pretty_cong congs), |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
188 |
Pretty.strs ("loopers:" :: map quote loopers), |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
189 |
Pretty.strs ("unsafe solvers:" :: map quote unsafe_solvers), |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
190 |
Pretty.strs ("safe solvers:" :: map quote safe_solvers)] |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
191 |
|> Pretty.chunks |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
192 |
end; |
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
193 |
|
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
194 |
|
aec722524c33
added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents:
56204
diff
changeset
|
195 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
196 |
(** simplification tactics and rules **) |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
197 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
198 |
fun solve_all_tac solvers ctxt = |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
199 |
let |
54728 | 200 |
val {subgoal_tac, ...} = Raw_Simplifier.internal_ss (simpset_of ctxt); |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
201 |
val solve_tac = subgoal_tac (Raw_Simplifier.set_solvers solvers ctxt) THEN_ALL_NEW (K no_tac); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
202 |
in DEPTH_SOLVE (solve_tac 1) end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
203 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
204 |
(*NOTE: may instantiate unknowns that appear also in other subgoals*) |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
205 |
fun generic_simp_tac safe mode ctxt = |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
206 |
let |
54728 | 207 |
val {loop_tacs, solvers = (unsafe_solvers, solvers), ...} = |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
208 |
Raw_Simplifier.internal_ss (simpset_of ctxt); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
209 |
val loop_tac = FIRST' (map (fn (_, tac) => tac ctxt) (rev loop_tacs)); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
210 |
val solve_tac = FIRST' (map (Raw_Simplifier.solver ctxt) |
22717 | 211 |
(rev (if safe then solvers else unsafe_solvers))); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
212 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
213 |
fun simp_loop_tac i = |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
214 |
Raw_Simplifier.generic_rewrite_goal_tac mode (solve_all_tac unsafe_solvers) ctxt i THEN |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
215 |
(solve_tac i ORELSE TRY ((loop_tac THEN_ALL_NEW simp_loop_tac) i)); |
52458
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
51717
diff
changeset
|
216 |
in PREFER_GOAL (simp_loop_tac 1) end; |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
217 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
218 |
local |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
219 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
220 |
fun simp rew mode ctxt thm = |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
221 |
let |
54728 | 222 |
val {solvers = (unsafe_solvers, _), ...} = Raw_Simplifier.internal_ss (simpset_of ctxt); |
22717 | 223 |
val tacf = solve_all_tac (rev unsafe_solvers); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
224 |
fun prover s th = Option.map #1 (Seq.pull (tacf s th)); |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
225 |
in rew mode prover ctxt thm end; |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
226 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
227 |
in |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
228 |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
229 |
val simp_thm = simp Raw_Simplifier.rewrite_thm; |
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
230 |
val simp_cterm = simp Raw_Simplifier.rewrite_cterm; |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
231 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
232 |
end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
233 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
234 |
|
16806 | 235 |
(* tactics *) |
236 |
||
16014 | 237 |
val simp_tac = generic_simp_tac false (false, false, false); |
238 |
val asm_simp_tac = generic_simp_tac false (false, true, false); |
|
239 |
val full_simp_tac = generic_simp_tac false (true, false, false); |
|
240 |
val asm_lr_simp_tac = generic_simp_tac false (true, true, false); |
|
241 |
val asm_full_simp_tac = generic_simp_tac false (true, true, true); |
|
50107 | 242 |
|
243 |
(*not totally safe: may instantiate unknowns that appear also in other subgoals*) |
|
244 |
val safe_simp_tac = generic_simp_tac true (false, false, false); |
|
245 |
val safe_asm_simp_tac = generic_simp_tac true (false, true, false); |
|
246 |
val safe_full_simp_tac = generic_simp_tac true (true, false, false); |
|
247 |
val safe_asm_lr_simp_tac = generic_simp_tac true (true, true, false); |
|
16014 | 248 |
val safe_asm_full_simp_tac = generic_simp_tac true (true, true, true); |
249 |
||
16806 | 250 |
|
251 |
(* conversions *) |
|
252 |
||
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
253 |
val simplify = simp_thm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
254 |
val asm_simplify = simp_thm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
255 |
val full_simplify = simp_thm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
256 |
val asm_lr_simplify = simp_thm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
257 |
val asm_full_simplify = simp_thm (true, true, true); |
16014 | 258 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
259 |
val rewrite = simp_cterm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
260 |
val asm_rewrite = simp_cterm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
261 |
val full_rewrite = simp_cterm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
262 |
val asm_lr_rewrite = simp_cterm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
263 |
val asm_full_rewrite = simp_cterm (true, true, true); |
16014 | 264 |
|
265 |
||
266 |
||
267 |
(** concrete syntax of attributes **) |
|
268 |
||
269 |
(* add / del *) |
|
270 |
||
271 |
val simpN = "simp"; |
|
68403 | 272 |
val flipN = "flip" |
16014 | 273 |
val congN = "cong"; |
274 |
val onlyN = "only"; |
|
275 |
val no_asmN = "no_asm"; |
|
276 |
val no_asm_useN = "no_asm_use"; |
|
277 |
val no_asm_simpN = "no_asm_simp"; |
|
278 |
val asm_lrN = "asm_lr"; |
|
279 |
||
280 |
||
24024 | 281 |
(* simprocs *) |
282 |
||
283 |
local |
|
284 |
||
285 |
val add_del = |
|
286 |
(Args.del -- Args.colon >> K (op delsimprocs) || |
|
287 |
Scan.option (Args.add -- Args.colon) >> K (op addsimprocs)) |
|
288 |
>> (fn f => fn simproc => fn phi => Thm.declaration_attribute |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
289 |
(K (Raw_Simplifier.map_ss (fn ctxt => f (ctxt, [transform_simproc phi simproc]))))); |
24024 | 290 |
|
291 |
in |
|
292 |
||
30528 | 293 |
val simproc_att = |
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
294 |
(Args.context -- Scan.lift add_del) :|-- (fn (ctxt, decl) => |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
295 |
Scan.repeat1 (Scan.lift (Args.named_attribute (decl o the_simproc ctxt o check_simproc ctxt)))) |
45375
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents:
45326
diff
changeset
|
296 |
>> (fn atts => Thm.declaration_attribute (fn th => |
46776 | 297 |
fold (fn att => Thm.attribute_declaration (Morphism.form att) th) atts)); |
24024 | 298 |
|
299 |
end; |
|
24124
4399175e3014
turned simp_depth_limit into configuration option;
wenzelm
parents:
24024
diff
changeset
|
300 |
|
24024 | 301 |
|
16014 | 302 |
(* conversions *) |
303 |
||
304 |
local |
|
305 |
||
306 |
fun conv_mode x = |
|
307 |
((Args.parens (Args.$$$ no_asmN) >> K simplify || |
|
308 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simplify || |
|
309 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simplify || |
|
310 |
Scan.succeed asm_full_simplify) |> Scan.lift) x; |
|
311 |
||
312 |
in |
|
313 |
||
30528 | 314 |
val simplified = conv_mode -- Attrib.thms >> |
61853
fb7756087101
rule_attribute and declaration_attribute implicitly support abstract closure, but mixed_attribute implementations need to be aware of Thm.is_free_dummy;
wenzelm
parents:
61841
diff
changeset
|
315 |
(fn (f, ths) => Thm.rule_attribute ths (fn context => |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
316 |
f ((if null ths then I else Raw_Simplifier.clear_simpset) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
317 |
(Context.proof_of context) addsimps ths))); |
16014 | 318 |
|
319 |
end; |
|
320 |
||
321 |
||
322 |
(* setup attributes *) |
|
323 |
||
53171 | 324 |
val _ = Theory.setup |
67147 | 325 |
(Attrib.setup \<^binding>\<open>simp\<close> (Attrib.add_del simp_add simp_del) |
30528 | 326 |
"declaration of Simplifier rewrite rule" #> |
67147 | 327 |
Attrib.setup \<^binding>\<open>cong\<close> (Attrib.add_del cong_add cong_del) |
30528 | 328 |
"declaration of Simplifier congruence rule" #> |
67147 | 329 |
Attrib.setup \<^binding>\<open>simproc\<close> simproc_att |
33671 | 330 |
"declaration of simplification procedures" #> |
67147 | 331 |
Attrib.setup \<^binding>\<open>simplified\<close> simplified "simplified rule"); |
16014 | 332 |
|
333 |
||
334 |
||
31300 | 335 |
(** method syntax **) |
16014 | 336 |
|
337 |
val cong_modifiers = |
|
64556 | 338 |
[Args.$$$ congN -- Args.colon >> K (Method.modifier cong_add \<^here>), |
339 |
Args.$$$ congN -- Args.add -- Args.colon >> K (Method.modifier cong_add \<^here>), |
|
340 |
Args.$$$ congN -- Args.del -- Args.colon >> K (Method.modifier cong_del \<^here>)]; |
|
16014 | 341 |
|
342 |
val simp_modifiers = |
|
64556 | 343 |
[Args.$$$ simpN -- Args.colon >> K (Method.modifier simp_add \<^here>), |
344 |
Args.$$$ simpN -- Args.add -- Args.colon >> K (Method.modifier simp_add \<^here>), |
|
345 |
Args.$$$ simpN -- Args.del -- Args.colon >> K (Method.modifier simp_del \<^here>), |
|
68403 | 346 |
Args.$$$ simpN -- Args.$$$ flipN -- Args.colon >> K (Method.modifier simp_flip \<^here>), |
58048
aa6296d09e0e
more explicit Method.modifier with reported position;
wenzelm
parents:
58008
diff
changeset
|
347 |
Args.$$$ simpN -- Args.$$$ onlyN -- Args.colon >> |
64556 | 348 |
K {init = Raw_Simplifier.clear_simpset, attribute = simp_add, pos = \<^here>}] |
16014 | 349 |
@ cong_modifiers; |
350 |
||
351 |
val simp_modifiers' = |
|
64556 | 352 |
[Args.add -- Args.colon >> K (Method.modifier simp_add \<^here>), |
353 |
Args.del -- Args.colon >> K (Method.modifier simp_del \<^here>), |
|
68403 | 354 |
Args.$$$ flipN -- Args.colon >> K (Method.modifier simp_flip \<^here>), |
58048
aa6296d09e0e
more explicit Method.modifier with reported position;
wenzelm
parents:
58008
diff
changeset
|
355 |
Args.$$$ onlyN -- Args.colon >> |
64556 | 356 |
K {init = Raw_Simplifier.clear_simpset, attribute = simp_add, pos = \<^here>}] |
16014 | 357 |
@ cong_modifiers; |
358 |
||
31300 | 359 |
val simp_options = |
360 |
(Args.parens (Args.$$$ no_asmN) >> K simp_tac || |
|
361 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simp_tac || |
|
362 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simp_tac || |
|
363 |
Args.parens (Args.$$$ asm_lrN) >> K asm_lr_simp_tac || |
|
364 |
Scan.succeed asm_full_simp_tac); |
|
16014 | 365 |
|
31300 | 366 |
fun simp_method more_mods meth = |
35613 | 367 |
Scan.lift simp_options --| |
31300 | 368 |
Method.sections (more_mods @ simp_modifiers') >> |
35613 | 369 |
(fn tac => fn ctxt => METHOD (fn facts => meth ctxt tac facts)); |
16014 | 370 |
|
371 |
||
372 |
||
18708 | 373 |
(** setup **) |
374 |
||
31300 | 375 |
fun method_setup more_mods = |
67147 | 376 |
Method.setup \<^binding>\<open>simp\<close> |
31300 | 377 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
61841
4d3527b94f2a
more general types Proof.method / context_tactic;
wenzelm
parents:
61268
diff
changeset
|
378 |
HEADGOAL (Method.insert_tac ctxt facts THEN' |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
379 |
(CHANGED_PROP oo tac) ctxt))) |
31300 | 380 |
"simplification" #> |
67147 | 381 |
Method.setup \<^binding>\<open>simp_all\<close> |
31300 | 382 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
61841
4d3527b94f2a
more general types Proof.method / context_tactic;
wenzelm
parents:
61268
diff
changeset
|
383 |
ALLGOALS (Method.insert_tac ctxt facts) THEN |
58008 | 384 |
(CHANGED_PROP o PARALLEL_ALLGOALS o tac) ctxt)) |
31300 | 385 |
"simplification (all goals)"; |
16014 | 386 |
|
63532
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
387 |
fun unsafe_solver_tac ctxt = |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
388 |
FIRST' [resolve_tac ctxt (Drule.reflexive_thm :: Raw_Simplifier.prems_of ctxt), assume_tac ctxt]; |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
389 |
val unsafe_solver = mk_solver "Pure unsafe" unsafe_solver_tac; |
16014 | 390 |
|
63532
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
391 |
(*no premature instantiation of variables during simplification*) |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
392 |
fun safe_solver_tac ctxt = |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
393 |
FIRST' [match_tac ctxt (Drule.reflexive_thm :: Raw_Simplifier.prems_of ctxt), eq_assume_tac]; |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
394 |
val safe_solver = mk_solver "Pure safe" safe_solver_tac; |
16014 | 395 |
|
63532
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
396 |
val _ = |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
397 |
Theory.setup |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
398 |
(method_setup [] #> Context.theory_map (map_ss (fn ctxt => |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
399 |
empty_simpset ctxt |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
400 |
setSSolver safe_solver |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
401 |
setSolver unsafe_solver |
b01154b74314
provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents:
63221
diff
changeset
|
402 |
|> set_subgoaler asm_simp_tac))); |
16014 | 403 |
|
404 |
end; |
|
405 |
||
32738 | 406 |
structure Basic_Simplifier: BASIC_SIMPLIFIER = Simplifier; |
407 |
open Basic_Simplifier; |