author | blanchet |
Wed, 04 Jan 2012 00:32:02 +0100 | |
changeset 46109 | 03e3b4b401e9 |
parent 45625 | 750c5a47400b |
child 46465 | 5ba52c337cd0 |
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 |
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
11 |
val map_simpset: (simpset -> simpset) -> Proof.context -> Proof.context |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
12 |
val simpset_of: Proof.context -> simpset |
32148
253f6808dabe
renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
wenzelm
parents:
32091
diff
changeset
|
13 |
val global_simpset_of: theory -> simpset |
16014 | 14 |
val Addsimprocs: simproc list -> unit |
15 |
val Delsimprocs: simproc list -> unit |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
16 |
val generic_simp_tac: bool -> bool * bool * bool -> simpset -> int -> tactic |
16014 | 17 |
val safe_asm_full_simp_tac: simpset -> int -> tactic |
35613 | 18 |
val simp_tac: simpset -> int -> tactic |
19 |
val asm_simp_tac: simpset -> int -> tactic |
|
20 |
val full_simp_tac: simpset -> int -> tactic |
|
21 |
val asm_lr_simp_tac: simpset -> int -> tactic |
|
22 |
val asm_full_simp_tac: simpset -> int -> tactic |
|
23 |
val simplify: simpset -> thm -> thm |
|
24 |
val asm_simplify: simpset -> thm -> thm |
|
25 |
val full_simplify: simpset -> thm -> thm |
|
26 |
val asm_lr_simplify: simpset -> thm -> thm |
|
16014 | 27 |
val asm_full_simplify: simpset -> thm -> thm |
28 |
end; |
|
29 |
||
30 |
signature SIMPLIFIER = |
|
31 |
sig |
|
32 |
include BASIC_SIMPLIFIER |
|
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
33 |
val map_simpset_global: (simpset -> simpset) -> theory -> theory |
30356 | 34 |
val pretty_ss: Proof.context -> simpset -> Pretty.T |
17004 | 35 |
val clear_ss: simpset -> simpset |
32738 | 36 |
val debug_bounds: bool Unsynchronized.ref |
43597 | 37 |
val prems_of: simpset -> thm list |
41226 | 38 |
val add_simp: thm -> simpset -> simpset |
39 |
val del_simp: thm -> simpset -> simpset |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
40 |
val add_eqcong: thm -> simpset -> simpset |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
41 |
val del_eqcong: thm -> simpset -> simpset |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
42 |
val add_cong: thm -> simpset -> simpset |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
43 |
val del_cong: thm -> simpset -> simpset |
41226 | 44 |
val add_prems: thm list -> simpset -> simpset |
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
45 |
val mksimps: simpset -> thm -> thm list |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
46 |
val set_mksimps: (simpset -> thm -> thm list) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
47 |
val set_mkcong: (simpset -> thm -> thm) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
48 |
val set_mksym: (simpset -> thm -> thm option) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
49 |
val set_mkeqTrue: (simpset -> thm -> thm option) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
50 |
val set_termless: (term * term -> bool) -> simpset -> simpset |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
51 |
val set_subgoaler: (simpset -> int -> tactic) -> simpset -> simpset |
17883
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
52 |
val inherit_context: simpset -> simpset -> simpset |
17898 | 53 |
val the_context: simpset -> Proof.context |
54 |
val context: Proof.context -> simpset -> simpset |
|
37441 | 55 |
val global_context: theory -> simpset -> simpset |
36600 | 56 |
val with_context: Proof.context -> (simpset -> simpset) -> simpset -> simpset |
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
57 |
val simproc_global_i: theory -> string -> term list -> |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
58 |
(theory -> simpset -> term -> thm option) -> simproc |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
59 |
val simproc_global: theory -> string -> string list -> |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
60 |
(theory -> simpset -> term -> thm option) -> simproc |
35613 | 61 |
val rewrite: simpset -> conv |
62 |
val asm_rewrite: simpset -> conv |
|
63 |
val full_rewrite: simpset -> conv |
|
64 |
val asm_lr_rewrite: simpset -> conv |
|
23598 | 65 |
val asm_full_rewrite: simpset -> conv |
22379 | 66 |
val get_ss: Context.generic -> simpset |
67 |
val map_ss: (simpset -> simpset) -> Context.generic -> Context.generic |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
68 |
val attrib: (thm -> simpset -> simpset) -> attribute |
18728 | 69 |
val simp_add: attribute |
70 |
val simp_del: attribute |
|
71 |
val cong_add: attribute |
|
72 |
val cong_del: attribute |
|
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
73 |
val check_simproc: Proof.context -> xstring * Position.T -> string |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
74 |
val the_simproc: Proof.context -> string -> simproc |
42464 | 75 |
val def_simproc: {name: binding, lhss: term list, |
22236 | 76 |
proc: morphism -> simpset -> cterm -> thm option, identifier: thm list} -> |
22201 | 77 |
local_theory -> local_theory |
42464 | 78 |
val def_simproc_cmd: {name: binding, lhss: string list, |
22236 | 79 |
proc: morphism -> simpset -> cterm -> thm option, identifier: thm list} -> |
22201 | 80 |
local_theory -> local_theory |
30513 | 81 |
val cong_modifiers: Method.modifier parser list |
82 |
val simp_modifiers': Method.modifier parser list |
|
83 |
val simp_modifiers: Method.modifier parser list |
|
84 |
val method_setup: Method.modifier parser list -> theory -> theory |
|
18708 | 85 |
val easy_setup: thm -> thm list -> theory -> theory |
16014 | 86 |
end; |
87 |
||
88 |
structure Simplifier: SIMPLIFIER = |
|
89 |
struct |
|
90 |
||
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
91 |
open Raw_Simplifier; |
21708 | 92 |
|
93 |
||
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
94 |
(** data **) |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
95 |
|
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
96 |
structure Data = Generic_Data |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
97 |
( |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
98 |
type T = simpset * simproc Name_Space.table; |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
99 |
val empty : T = (empty_ss, Name_Space.empty_table "simproc"); |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
100 |
fun extend (ss, tab) = (Raw_Simplifier.inherit_context empty_ss ss, tab); |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
101 |
fun merge ((ss1, tab1), (ss2, tab2)) = |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
102 |
(merge_ss (ss1, ss2), Name_Space.merge_tables (tab1, tab2)); |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
103 |
); |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
104 |
|
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
105 |
val get_ss = fst o Data.get; |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
106 |
|
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
107 |
fun map_ss f context = |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
108 |
Data.map (apfst ((Raw_Simplifier.with_context (Context.proof_of context) f))) context; |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
109 |
|
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
110 |
val get_simprocs = snd o Data.get o Context.Proof; |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
111 |
|
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
112 |
|
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
113 |
|
30356 | 114 |
(** pretty printing **) |
115 |
||
116 |
fun pretty_ss ctxt ss = |
|
117 |
let |
|
118 |
val pretty_cterm = Syntax.pretty_term ctxt o Thm.term_of; |
|
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
31300
diff
changeset
|
119 |
val pretty_thm = Display.pretty_thm ctxt; |
30356 | 120 |
fun pretty_proc (name, lhss) = Pretty.big_list (name ^ ":") (map pretty_cterm lhss); |
121 |
fun pretty_cong (name, thm) = |
|
122 |
Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, pretty_thm thm]; |
|
123 |
||
124 |
val {simps, procs, congs, loopers, unsafe_solvers, safe_solvers, ...} = dest_ss ss; |
|
125 |
in |
|
126 |
[Pretty.big_list "simplification rules:" (map (pretty_thm o #2) simps), |
|
127 |
Pretty.big_list "simplification procedures:" (map pretty_proc (sort_wrt #1 procs)), |
|
128 |
Pretty.big_list "congruences:" (map pretty_cong congs), |
|
129 |
Pretty.strs ("loopers:" :: map quote loopers), |
|
130 |
Pretty.strs ("unsafe solvers:" :: map quote unsafe_solvers), |
|
131 |
Pretty.strs ("safe solvers:" :: map quote safe_solvers)] |
|
132 |
|> Pretty.chunks |
|
133 |
end; |
|
134 |
||
135 |
||
136 |
||
17883
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
137 |
(** simpset data **) |
16014 | 138 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
139 |
(* attributes *) |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
140 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
141 |
fun attrib f = Thm.declaration_attribute (map_ss o f); |
16014 | 142 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
143 |
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
|
144 |
val simp_del = attrib del_simp; |
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
145 |
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
|
146 |
val cong_del = attrib del_cong; |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
147 |
|
16014 | 148 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
149 |
(* local simpset *) |
16014 | 150 |
|
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
151 |
fun map_simpset f = Context.proof_map (map_ss f); |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
152 |
fun simpset_of ctxt = Raw_Simplifier.context ctxt (get_ss (Context.Proof ctxt)); |
16014 | 153 |
|
43560
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
154 |
val _ = Context.>> (Context.map_theory |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
155 |
(ML_Antiquote.value (Binding.name "simpset") |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
156 |
(Scan.succeed "Simplifier.simpset_of (ML_Context.the_local_context ())"))); |
22132 | 157 |
|
16014 | 158 |
|
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
159 |
(* global simpset *) |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
160 |
|
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
161 |
fun map_simpset_global f = Context.theory_map (map_ss f); |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
162 |
fun global_simpset_of thy = |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
163 |
Raw_Simplifier.context (Proof_Context.init_global thy) (get_ss (Context.Theory thy)); |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
164 |
|
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
165 |
fun Addsimprocs args = Context.>> (map_ss (fn ss => ss addsimprocs args)); |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
166 |
fun Delsimprocs args = Context.>> (map_ss (fn ss => ss delsimprocs args)); |
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
167 |
|
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
168 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
169 |
|
22201 | 170 |
(** named simprocs **) |
171 |
||
22204 | 172 |
(* get simprocs *) |
173 |
||
43560
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
174 |
fun check_simproc ctxt = Name_Space.check ctxt (get_simprocs ctxt) #> #1; |
42466 | 175 |
val the_simproc = Name_Space.get o get_simprocs; |
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
176 |
|
42464 | 177 |
val _ = |
43560
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
178 |
Context.>> (Context.map_theory |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
179 |
(ML_Antiquote.value (Binding.name "simproc") |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
180 |
(Args.context -- Scan.lift (Parse.position Args.name) |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
181 |
>> (fn (ctxt, name) => |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
182 |
"Simplifier.the_simproc (ML_Context.the_local_context ()) " ^ |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
183 |
ML_Syntax.print_string (check_simproc ctxt name))))); |
22204 | 184 |
|
185 |
||
186 |
(* define simprocs *) |
|
22201 | 187 |
|
188 |
local |
|
189 |
||
42464 | 190 |
fun gen_simproc prep {name = b, lhss, proc, identifier} lthy = |
22201 | 191 |
let |
33671 | 192 |
val naming = Local_Theory.naming_of lthy; |
22236 | 193 |
val simproc = make_simproc |
33169 | 194 |
{name = Name_Space.full_name naming b, |
22236 | 195 |
lhss = |
196 |
let |
|
197 |
val lhss' = prep lthy lhss; |
|
45326
8fa859aebc0d
tuned -- Variable.declare_term is already part of Variable.auto_fixes;
wenzelm
parents:
45291
diff
changeset
|
198 |
val ctxt' = fold Variable.auto_fixes lhss' lthy; |
22236 | 199 |
in Variable.export_terms ctxt' lthy lhss' end |
42360 | 200 |
|> map (Thm.cterm_of (Proof_Context.theory_of lthy)), |
22236 | 201 |
proc = proc, |
33551
c40ced05b10a
define simprocs: do not apply target_morphism prematurely, this is already done in LocalTheory.declaration;
wenzelm
parents:
33519
diff
changeset
|
202 |
identifier = identifier}; |
22201 | 203 |
in |
45291
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
wenzelm
parents:
45290
diff
changeset
|
204 |
lthy |> Local_Theory.declaration {syntax = false, pervasive = false} (fn phi => fn context => |
22201 | 205 |
let |
28991 | 206 |
val b' = Morphism.binding phi b; |
45290 | 207 |
val simproc' = transform_simproc phi simproc; |
22201 | 208 |
in |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42372
diff
changeset
|
209 |
context |
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
210 |
|> Data.map (fn (ss, tab) => |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
211 |
(ss addsimprocs [simproc'], |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
212 |
#2 (Name_Space.define (Context.proof_of context) true naming (b', simproc') tab))) |
22201 | 213 |
end) |
214 |
end; |
|
215 |
||
216 |
in |
|
217 |
||
42464 | 218 |
val def_simproc = gen_simproc Syntax.check_terms; |
219 |
val def_simproc_cmd = gen_simproc Syntax.read_terms; |
|
22201 | 220 |
|
221 |
end; |
|
222 |
||
223 |
||
224 |
||
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
225 |
(** simplification tactics and rules **) |
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 |
fun solve_all_tac solvers ss = |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
228 |
let |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
229 |
val (_, {subgoal_tac, ...}) = Raw_Simplifier.internal_ss ss; |
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
230 |
val solve_tac = subgoal_tac (Raw_Simplifier.set_solvers solvers ss) THEN_ALL_NEW (K no_tac); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
231 |
in DEPTH_SOLVE (solve_tac 1) end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
232 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
233 |
(*NOTE: may instantiate unknowns that appear also in other subgoals*) |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
234 |
fun generic_simp_tac safe mode ss = |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
235 |
let |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
236 |
val (_, {loop_tacs, solvers = (unsafe_solvers, solvers), ...}) = Raw_Simplifier.internal_ss ss; |
21286
b5e7b80caa6a
introduces canonical AList functions for loop_tacs
haftmann
parents:
20872
diff
changeset
|
237 |
val loop_tac = FIRST' (map (fn (_, tac) => tac ss) (rev loop_tacs)); |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
238 |
val solve_tac = FIRST' (map (Raw_Simplifier.solver ss) |
22717 | 239 |
(rev (if safe then solvers else unsafe_solvers))); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
240 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
241 |
fun simp_loop_tac i = |
41253
42f24340ae53
more explicit references to structure Raw_Simplifier;
wenzelm
parents:
41228
diff
changeset
|
242 |
Raw_Simplifier.asm_rewrite_goal_tac mode (solve_all_tac unsafe_solvers) ss i THEN |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
243 |
(solve_tac i ORELSE TRY ((loop_tac THEN_ALL_NEW simp_loop_tac) i)); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
244 |
in simp_loop_tac end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
245 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
246 |
local |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
247 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
248 |
fun simp rew mode ss thm = |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
249 |
let |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
250 |
val (_, {solvers = (unsafe_solvers, _), ...}) = Raw_Simplifier.internal_ss ss; |
22717 | 251 |
val tacf = solve_all_tac (rev unsafe_solvers); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
252 |
fun prover s th = Option.map #1 (Seq.pull (tacf s th)); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
253 |
in rew mode prover ss thm end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
254 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
255 |
in |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
256 |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
257 |
val simp_thm = simp Raw_Simplifier.rewrite_thm; |
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
258 |
val simp_cterm = simp Raw_Simplifier.rewrite_cterm; |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
259 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
260 |
end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
261 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
262 |
|
16806 | 263 |
(* tactics *) |
264 |
||
16014 | 265 |
val simp_tac = generic_simp_tac false (false, false, false); |
266 |
val asm_simp_tac = generic_simp_tac false (false, true, false); |
|
267 |
val full_simp_tac = generic_simp_tac false (true, false, false); |
|
268 |
val asm_lr_simp_tac = generic_simp_tac false (true, true, false); |
|
269 |
val asm_full_simp_tac = generic_simp_tac false (true, true, true); |
|
270 |
val safe_asm_full_simp_tac = generic_simp_tac true (true, true, true); |
|
271 |
||
16806 | 272 |
|
273 |
(* conversions *) |
|
274 |
||
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
275 |
val simplify = simp_thm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
276 |
val asm_simplify = simp_thm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
277 |
val full_simplify = simp_thm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
278 |
val asm_lr_simplify = simp_thm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
279 |
val asm_full_simplify = simp_thm (true, true, true); |
16014 | 280 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
281 |
val rewrite = simp_cterm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
282 |
val asm_rewrite = simp_cterm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
283 |
val full_rewrite = simp_cterm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
284 |
val asm_lr_rewrite = simp_cterm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
285 |
val asm_full_rewrite = simp_cterm (true, true, true); |
16014 | 286 |
|
287 |
||
288 |
||
289 |
(** concrete syntax of attributes **) |
|
290 |
||
291 |
(* add / del *) |
|
292 |
||
293 |
val simpN = "simp"; |
|
294 |
val congN = "cong"; |
|
295 |
val onlyN = "only"; |
|
296 |
val no_asmN = "no_asm"; |
|
297 |
val no_asm_useN = "no_asm_use"; |
|
298 |
val no_asm_simpN = "no_asm_simp"; |
|
299 |
val asm_lrN = "asm_lr"; |
|
300 |
||
301 |
||
24024 | 302 |
(* simprocs *) |
303 |
||
304 |
local |
|
305 |
||
306 |
val add_del = |
|
307 |
(Args.del -- Args.colon >> K (op delsimprocs) || |
|
308 |
Scan.option (Args.add -- Args.colon) >> K (op addsimprocs)) |
|
309 |
>> (fn f => fn simproc => fn phi => Thm.declaration_attribute |
|
45290 | 310 |
(K (map_ss (fn ss => f (ss, [transform_simproc phi simproc]))))); |
24024 | 311 |
|
312 |
in |
|
313 |
||
30528 | 314 |
val simproc_att = |
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
315 |
(Args.context -- Scan.lift add_del) :|-- (fn (ctxt, decl) => |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
316 |
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
|
317 |
>> (fn atts => Thm.declaration_attribute (fn th => |
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents:
45326
diff
changeset
|
318 |
Library.apply (map (fn att => Thm.attribute_declaration (Morphism.form att) th) atts))); |
24024 | 319 |
|
320 |
end; |
|
24124
4399175e3014
turned simp_depth_limit into configuration option;
wenzelm
parents:
24024
diff
changeset
|
321 |
|
24024 | 322 |
|
16014 | 323 |
(* conversions *) |
324 |
||
325 |
local |
|
326 |
||
327 |
fun conv_mode x = |
|
328 |
((Args.parens (Args.$$$ no_asmN) >> K simplify || |
|
329 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simplify || |
|
330 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simplify || |
|
331 |
Scan.succeed asm_full_simplify) |> Scan.lift) x; |
|
332 |
||
333 |
in |
|
334 |
||
30528 | 335 |
val simplified = conv_mode -- Attrib.thms >> |
336 |
(fn (f, ths) => Thm.rule_attribute (fn context => |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
337 |
f ((if null ths then I else Raw_Simplifier.clear_ss) |
32148
253f6808dabe
renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
wenzelm
parents:
32091
diff
changeset
|
338 |
(simpset_of (Context.proof_of context)) addsimps ths))); |
16014 | 339 |
|
340 |
end; |
|
341 |
||
342 |
||
343 |
(* setup attributes *) |
|
344 |
||
26463 | 345 |
val _ = Context.>> (Context.map_theory |
30528 | 346 |
(Attrib.setup (Binding.name simpN) (Attrib.add_del simp_add simp_del) |
347 |
"declaration of Simplifier rewrite rule" #> |
|
348 |
Attrib.setup (Binding.name congN) (Attrib.add_del cong_add cong_del) |
|
349 |
"declaration of Simplifier congruence rule" #> |
|
33671 | 350 |
Attrib.setup (Binding.name "simproc") simproc_att |
351 |
"declaration of simplification procedures" #> |
|
30528 | 352 |
Attrib.setup (Binding.name "simplified") simplified "simplified rule")); |
16014 | 353 |
|
354 |
||
355 |
||
31300 | 356 |
(** method syntax **) |
16014 | 357 |
|
358 |
val cong_modifiers = |
|
18728 | 359 |
[Args.$$$ congN -- Args.colon >> K ((I, cong_add): Method.modifier), |
360 |
Args.$$$ congN -- Args.add -- Args.colon >> K (I, cong_add), |
|
361 |
Args.$$$ congN -- Args.del -- Args.colon >> K (I, cong_del)]; |
|
16014 | 362 |
|
363 |
val simp_modifiers = |
|
18728 | 364 |
[Args.$$$ simpN -- Args.colon >> K (I, simp_add), |
365 |
Args.$$$ simpN -- Args.add -- Args.colon >> K (I, simp_add), |
|
366 |
Args.$$$ simpN -- Args.del -- Args.colon >> K (I, simp_del), |
|
17883
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
367 |
Args.$$$ simpN -- Args.$$$ onlyN -- Args.colon |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
368 |
>> K (Context.proof_map (map_ss Raw_Simplifier.clear_ss), simp_add)] |
16014 | 369 |
@ cong_modifiers; |
370 |
||
371 |
val simp_modifiers' = |
|
18728 | 372 |
[Args.add -- Args.colon >> K (I, simp_add), |
373 |
Args.del -- Args.colon >> K (I, simp_del), |
|
18688 | 374 |
Args.$$$ onlyN -- Args.colon |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
375 |
>> K (Context.proof_map (map_ss Raw_Simplifier.clear_ss), simp_add)] |
16014 | 376 |
@ cong_modifiers; |
377 |
||
31300 | 378 |
val simp_options = |
379 |
(Args.parens (Args.$$$ no_asmN) >> K simp_tac || |
|
380 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simp_tac || |
|
381 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simp_tac || |
|
382 |
Args.parens (Args.$$$ asm_lrN) >> K asm_lr_simp_tac || |
|
383 |
Scan.succeed asm_full_simp_tac); |
|
16014 | 384 |
|
31300 | 385 |
fun simp_method more_mods meth = |
35613 | 386 |
Scan.lift simp_options --| |
31300 | 387 |
Method.sections (more_mods @ simp_modifiers') >> |
35613 | 388 |
(fn tac => fn ctxt => METHOD (fn facts => meth ctxt tac facts)); |
16014 | 389 |
|
390 |
||
391 |
||
18708 | 392 |
(** setup **) |
393 |
||
31300 | 394 |
fun method_setup more_mods = |
395 |
Method.setup (Binding.name simpN) |
|
396 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
|
397 |
HEADGOAL (Method.insert_tac facts THEN' |
|
32148
253f6808dabe
renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
wenzelm
parents:
32091
diff
changeset
|
398 |
(CHANGED_PROP oo tac) (simpset_of ctxt)))) |
31300 | 399 |
"simplification" #> |
400 |
Method.setup (Binding.name "simp_all") |
|
401 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
|
402 |
ALLGOALS (Method.insert_tac facts) THEN |
|
42372 | 403 |
(CHANGED_PROP o PARALLEL_GOALS o ALLGOALS o tac) (simpset_of ctxt))) |
31300 | 404 |
"simplification (all goals)"; |
16014 | 405 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
406 |
fun easy_setup reflect trivs = method_setup [] #> Context.theory_map (map_ss (fn _ => |
16014 | 407 |
let |
408 |
val trivialities = Drule.reflexive_thm :: trivs; |
|
409 |
||
43597 | 410 |
fun unsafe_solver_tac ss = |
411 |
FIRST' [resolve_tac (trivialities @ Raw_Simplifier.prems_of ss), assume_tac]; |
|
16014 | 412 |
val unsafe_solver = mk_solver "easy unsafe" unsafe_solver_tac; |
413 |
||
414 |
(*no premature instantiation of variables during simplification*) |
|
43597 | 415 |
fun safe_solver_tac ss = |
416 |
FIRST' [match_tac (trivialities @ Raw_Simplifier.prems_of ss), eq_assume_tac]; |
|
16014 | 417 |
val safe_solver = mk_solver "easy safe" safe_solver_tac; |
418 |
||
419 |
fun mk_eq thm = |
|
20872 | 420 |
if can Logic.dest_equals (Thm.concl_of thm) then [thm] |
16014 | 421 |
else [thm RS reflect] handle THM _ => []; |
422 |
||
44058 | 423 |
fun mksimps thm = mk_eq (Thm.forall_elim_vars (Thm.maxidx_of thm + 1) thm); |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
424 |
in |
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
425 |
empty_ss |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
426 |
setSSolver safe_solver |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
427 |
setSolver unsafe_solver |
45625
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
428 |
|> set_subgoaler asm_simp_tac |
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45620
diff
changeset
|
429 |
|> set_mksimps (K mksimps) |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
430 |
end)); |
16014 | 431 |
|
432 |
end; |
|
433 |
||
32738 | 434 |
structure Basic_Simplifier: BASIC_SIMPLIFIER = Simplifier; |
435 |
open Basic_Simplifier; |