author | blanchet |
Mon, 06 Dec 2010 13:29:23 +0100 | |
changeset 40996 | 63112be4a469 |
parent 38715 | 6513ea67d95d |
child 41226 | adcb9a1198e7 |
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 |
|
5 |
meta_simplifier.ML for the actual meta-level rewriting engine). |
|
6 |
*) |
|
7 |
||
8 |
signature BASIC_SIMPLIFIER = |
|
9 |
sig |
|
10 |
include BASIC_META_SIMPLIFIER |
|
17883
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
11 |
val change_simpset: (simpset -> simpset) -> unit |
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
|
12 |
val global_simpset_of: theory -> simpset |
16014 | 13 |
val Addsimprocs: simproc list -> unit |
14 |
val Delsimprocs: simproc list -> unit |
|
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
|
15 |
val simpset_of: Proof.context -> simpset |
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 |
|
30356 | 33 |
val pretty_ss: Proof.context -> simpset -> Pretty.T |
17004 | 34 |
val clear_ss: simpset -> simpset |
32738 | 35 |
val debug_bounds: bool Unsynchronized.ref |
17883
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
36 |
val inherit_context: simpset -> simpset -> simpset |
17898 | 37 |
val the_context: simpset -> Proof.context |
38 |
val context: Proof.context -> simpset -> simpset |
|
37441 | 39 |
val global_context: theory -> simpset -> simpset |
36600 | 40 |
val with_context: Proof.context -> (simpset -> simpset) -> simpset -> simpset |
38715
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents:
37441
diff
changeset
|
41 |
val simproc_global_i: theory -> string -> term list |
16458 | 42 |
-> (theory -> simpset -> term -> thm option) -> simproc |
38715
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents:
37441
diff
changeset
|
43 |
val simproc_global: theory -> string -> string list |
16458 | 44 |
-> (theory -> simpset -> term -> thm option) -> simproc |
35613 | 45 |
val rewrite: simpset -> conv |
46 |
val asm_rewrite: simpset -> conv |
|
47 |
val full_rewrite: simpset -> conv |
|
48 |
val asm_lr_rewrite: simpset -> conv |
|
23598 | 49 |
val asm_full_rewrite: simpset -> conv |
22379 | 50 |
val get_ss: Context.generic -> simpset |
51 |
val map_ss: (simpset -> simpset) -> Context.generic -> Context.generic |
|
18728 | 52 |
val attrib: (simpset * thm list -> simpset) -> attribute |
53 |
val simp_add: attribute |
|
54 |
val simp_del: attribute |
|
55 |
val cong_add: attribute |
|
56 |
val cong_del: attribute |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
57 |
val map_simpset: (simpset -> simpset) -> theory -> theory |
24024 | 58 |
val get_simproc: Context.generic -> xstring -> simproc |
22236 | 59 |
val def_simproc: {name: string, lhss: string list, |
60 |
proc: morphism -> simpset -> cterm -> thm option, identifier: thm list} -> |
|
22201 | 61 |
local_theory -> local_theory |
22236 | 62 |
val def_simproc_i: {name: string, lhss: term list, |
63 |
proc: morphism -> simpset -> cterm -> thm option, identifier: thm list} -> |
|
22201 | 64 |
local_theory -> local_theory |
30513 | 65 |
val cong_modifiers: Method.modifier parser list |
66 |
val simp_modifiers': Method.modifier parser list |
|
67 |
val simp_modifiers: Method.modifier parser list |
|
68 |
val method_setup: Method.modifier parser list -> theory -> theory |
|
18708 | 69 |
val easy_setup: thm -> thm list -> theory -> theory |
16014 | 70 |
end; |
71 |
||
72 |
structure Simplifier: SIMPLIFIER = |
|
73 |
struct |
|
74 |
||
21708 | 75 |
open MetaSimplifier; |
76 |
||
77 |
||
30356 | 78 |
(** pretty printing **) |
79 |
||
80 |
fun pretty_ss ctxt ss = |
|
81 |
let |
|
82 |
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
|
83 |
val pretty_thm = Display.pretty_thm ctxt; |
30356 | 84 |
fun pretty_proc (name, lhss) = Pretty.big_list (name ^ ":") (map pretty_cterm lhss); |
85 |
fun pretty_cong (name, thm) = |
|
86 |
Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, pretty_thm thm]; |
|
87 |
||
88 |
val {simps, procs, congs, loopers, unsafe_solvers, safe_solvers, ...} = dest_ss ss; |
|
89 |
in |
|
90 |
[Pretty.big_list "simplification rules:" (map (pretty_thm o #2) simps), |
|
91 |
Pretty.big_list "simplification procedures:" (map pretty_proc (sort_wrt #1 procs)), |
|
92 |
Pretty.big_list "congruences:" (map pretty_cong congs), |
|
93 |
Pretty.strs ("loopers:" :: map quote loopers), |
|
94 |
Pretty.strs ("unsafe solvers:" :: map quote unsafe_solvers), |
|
95 |
Pretty.strs ("safe solvers:" :: map quote safe_solvers)] |
|
96 |
|> Pretty.chunks |
|
97 |
end; |
|
98 |
||
99 |
||
100 |
||
17883
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
101 |
(** simpset data **) |
16014 | 102 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36610
diff
changeset
|
103 |
structure Simpset = Generic_Data |
22846 | 104 |
( |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
105 |
type T = simpset; |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
106 |
val empty = empty_ss; |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
107 |
fun extend ss = MetaSimplifier.inherit_context empty_ss ss; |
33519 | 108 |
val merge = merge_ss; |
22846 | 109 |
); |
16014 | 110 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36610
diff
changeset
|
111 |
val get_ss = Simpset.get; |
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36610
diff
changeset
|
112 |
fun map_ss f context = Simpset.map (with_context (Context.proof_of context) f) context; |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
113 |
|
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
114 |
|
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
115 |
(* attributes *) |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
116 |
|
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
117 |
fun attrib f = Thm.declaration_attribute (fn th => map_ss (fn ss => f (ss, [th]))); |
16014 | 118 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
119 |
val simp_add = attrib (op addsimps); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
120 |
val simp_del = attrib (op delsimps); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
121 |
val cong_add = attrib (op addcongs); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
122 |
val cong_del = attrib (op delcongs); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
123 |
|
16014 | 124 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
125 |
(* global simpset *) |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
126 |
|
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
127 |
fun map_simpset f = Context.theory_map (map_ss f); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
128 |
fun change_simpset f = Context.>> (Context.map_theory (map_simpset f)); |
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
|
129 |
fun global_simpset_of thy = |
36610
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents:
36600
diff
changeset
|
130 |
MetaSimplifier.context (ProofContext.init_global thy) (get_ss (Context.Theory thy)); |
16014 | 131 |
|
17883
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
132 |
fun Addsimprocs args = change_simpset (fn ss => ss addsimprocs args); |
efa1bc2bdcc6
removed obsolete/experimental context components (superceded by Simplifier.the_context);
wenzelm
parents:
17723
diff
changeset
|
133 |
fun Delsimprocs args = change_simpset (fn ss => ss delsimprocs args); |
16014 | 134 |
|
135 |
||
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
136 |
(* local simpset *) |
16014 | 137 |
|
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
|
138 |
fun simpset_of ctxt = MetaSimplifier.context ctxt (get_ss (Context.Proof ctxt)); |
16014 | 139 |
|
27338 | 140 |
val _ = ML_Antiquote.value "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
|
141 |
(Scan.succeed "Simplifier.simpset_of (ML_Context.the_local_context ())"); |
22132 | 142 |
|
16014 | 143 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
144 |
|
22201 | 145 |
(** named simprocs **) |
146 |
||
22204 | 147 |
(* data *) |
148 |
||
33519 | 149 |
structure Simprocs = Generic_Data |
22201 | 150 |
( |
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33092
diff
changeset
|
151 |
type T = simproc Name_Space.table; |
33159 | 152 |
val empty : T = Name_Space.empty_table "simproc"; |
22201 | 153 |
val extend = I; |
33519 | 154 |
fun merge simprocs = Name_Space.merge_tables simprocs; |
22201 | 155 |
); |
156 |
||
22204 | 157 |
|
158 |
(* get simprocs *) |
|
159 |
||
24024 | 160 |
fun get_simproc context xname = |
22204 | 161 |
let |
24024 | 162 |
val (space, tab) = Simprocs.get context; |
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33092
diff
changeset
|
163 |
val name = Name_Space.intern space xname; |
22204 | 164 |
in |
165 |
(case Symtab.lookup tab name of |
|
22236 | 166 |
SOME proc => proc |
22204 | 167 |
| NONE => error ("Undefined simplification procedure: " ^ quote name)) |
168 |
end; |
|
169 |
||
27338 | 170 |
val _ = ML_Antiquote.value "simproc" (Scan.lift Args.name >> (fn name => |
171 |
"Simplifier.get_simproc (ML_Context.the_generic_context ()) " ^ ML_Syntax.print_string name)); |
|
22204 | 172 |
|
173 |
||
174 |
(* define simprocs *) |
|
22201 | 175 |
|
176 |
local |
|
177 |
||
22236 | 178 |
fun gen_simproc prep {name, lhss, proc, identifier} lthy = |
22201 | 179 |
let |
28991 | 180 |
val b = Binding.name name; |
33671 | 181 |
val naming = Local_Theory.naming_of lthy; |
22236 | 182 |
val simproc = make_simproc |
33169 | 183 |
{name = Name_Space.full_name naming b, |
22236 | 184 |
lhss = |
185 |
let |
|
186 |
val lhss' = prep lthy lhss; |
|
187 |
val ctxt' = lthy |
|
188 |
|> fold Variable.declare_term lhss' |
|
189 |
|> fold Variable.auto_fixes lhss'; |
|
190 |
in Variable.export_terms ctxt' lthy lhss' end |
|
191 |
|> map (Thm.cterm_of (ProofContext.theory_of lthy)), |
|
192 |
proc = proc, |
|
33551
c40ced05b10a
define simprocs: do not apply target_morphism prematurely, this is already done in LocalTheory.declaration;
wenzelm
parents:
33519
diff
changeset
|
193 |
identifier = identifier}; |
22201 | 194 |
in |
33671 | 195 |
lthy |> Local_Theory.declaration false (fn phi => |
22201 | 196 |
let |
28991 | 197 |
val b' = Morphism.binding phi b; |
22236 | 198 |
val simproc' = morph_simproc phi simproc; |
22201 | 199 |
in |
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
33092
diff
changeset
|
200 |
Simprocs.map (#2 o Name_Space.define true naming (b', simproc')) |
24024 | 201 |
#> map_ss (fn ss => ss addsimprocs [simproc']) |
22201 | 202 |
end) |
203 |
end; |
|
204 |
||
205 |
in |
|
206 |
||
24509
23ee6b7788c2
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents:
24124
diff
changeset
|
207 |
val def_simproc = gen_simproc Syntax.read_terms; |
23ee6b7788c2
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
wenzelm
parents:
24124
diff
changeset
|
208 |
val def_simproc_i = gen_simproc Syntax.check_terms; |
22201 | 209 |
|
210 |
end; |
|
211 |
||
212 |
||
213 |
||
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
214 |
(** simplification tactics and rules **) |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
215 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
216 |
fun solve_all_tac solvers ss = |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
217 |
let |
30336 | 218 |
val (_, {subgoal_tac, ...}) = MetaSimplifier.internal_ss ss; |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
219 |
val solve_tac = subgoal_tac (MetaSimplifier.set_solvers solvers ss) THEN_ALL_NEW (K no_tac); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
220 |
in DEPTH_SOLVE (solve_tac 1) end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
221 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
222 |
(*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
|
223 |
fun generic_simp_tac safe mode ss = |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
224 |
let |
30336 | 225 |
val (_, {loop_tacs, solvers = (unsafe_solvers, solvers), ...}) = MetaSimplifier.internal_ss ss; |
21286
b5e7b80caa6a
introduces canonical AList functions for loop_tacs
haftmann
parents:
20872
diff
changeset
|
226 |
val loop_tac = FIRST' (map (fn (_, tac) => tac ss) (rev loop_tacs)); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
227 |
val solve_tac = FIRST' (map (MetaSimplifier.solver ss) |
22717 | 228 |
(rev (if safe then solvers else unsafe_solvers))); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
229 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
230 |
fun simp_loop_tac i = |
23536
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
wenzelm
parents:
23086
diff
changeset
|
231 |
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
|
232 |
(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
|
233 |
in simp_loop_tac end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
234 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
235 |
local |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
236 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
237 |
fun simp rew mode ss thm = |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
238 |
let |
30336 | 239 |
val (_, {solvers = (unsafe_solvers, _), ...}) = MetaSimplifier.internal_ss ss; |
22717 | 240 |
val tacf = solve_all_tac (rev unsafe_solvers); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
241 |
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
|
242 |
in rew mode prover ss thm end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
243 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
244 |
in |
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 |
val simp_thm = simp MetaSimplifier.rewrite_thm; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
247 |
val simp_cterm = simp MetaSimplifier.rewrite_cterm; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
248 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
249 |
end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
250 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
251 |
|
16806 | 252 |
(* tactics *) |
253 |
||
16014 | 254 |
val simp_tac = generic_simp_tac false (false, false, false); |
255 |
val asm_simp_tac = generic_simp_tac false (false, true, false); |
|
256 |
val full_simp_tac = generic_simp_tac false (true, false, false); |
|
257 |
val asm_lr_simp_tac = generic_simp_tac false (true, true, false); |
|
258 |
val asm_full_simp_tac = generic_simp_tac false (true, true, true); |
|
259 |
val safe_asm_full_simp_tac = generic_simp_tac true (true, true, true); |
|
260 |
||
16806 | 261 |
|
262 |
(* conversions *) |
|
263 |
||
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
264 |
val simplify = simp_thm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
265 |
val asm_simplify = simp_thm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
266 |
val full_simplify = simp_thm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
267 |
val asm_lr_simplify = simp_thm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
268 |
val asm_full_simplify = simp_thm (true, true, true); |
16014 | 269 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
270 |
val rewrite = simp_cterm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
271 |
val asm_rewrite = simp_cterm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
272 |
val full_rewrite = simp_cterm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
273 |
val asm_lr_rewrite = simp_cterm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
274 |
val asm_full_rewrite = simp_cterm (true, true, true); |
16014 | 275 |
|
276 |
||
277 |
||
278 |
(** concrete syntax of attributes **) |
|
279 |
||
280 |
(* add / del *) |
|
281 |
||
282 |
val simpN = "simp"; |
|
283 |
val congN = "cong"; |
|
284 |
val onlyN = "only"; |
|
285 |
val no_asmN = "no_asm"; |
|
286 |
val no_asm_useN = "no_asm_use"; |
|
287 |
val no_asm_simpN = "no_asm_simp"; |
|
288 |
val asm_lrN = "asm_lr"; |
|
289 |
||
290 |
||
24024 | 291 |
(* simprocs *) |
292 |
||
293 |
local |
|
294 |
||
295 |
val add_del = |
|
296 |
(Args.del -- Args.colon >> K (op delsimprocs) || |
|
297 |
Scan.option (Args.add -- Args.colon) >> K (op addsimprocs)) |
|
298 |
>> (fn f => fn simproc => fn phi => Thm.declaration_attribute |
|
299 |
(K (map_ss (fn ss => f (ss, [morph_simproc phi simproc]))))); |
|
300 |
||
301 |
in |
|
302 |
||
30528 | 303 |
val simproc_att = |
304 |
Scan.peek (fn context => |
|
24024 | 305 |
add_del :|-- (fn decl => |
306 |
Scan.repeat1 (Args.named_attribute (decl o get_simproc context)) |
|
30528 | 307 |
>> (Library.apply o map Morphism.form))); |
24024 | 308 |
|
309 |
end; |
|
24124
4399175e3014
turned simp_depth_limit into configuration option;
wenzelm
parents:
24024
diff
changeset
|
310 |
|
24024 | 311 |
|
16014 | 312 |
(* conversions *) |
313 |
||
314 |
local |
|
315 |
||
316 |
fun conv_mode x = |
|
317 |
((Args.parens (Args.$$$ no_asmN) >> K simplify || |
|
318 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simplify || |
|
319 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simplify || |
|
320 |
Scan.succeed asm_full_simplify) |> Scan.lift) x; |
|
321 |
||
322 |
in |
|
323 |
||
30528 | 324 |
val simplified = conv_mode -- Attrib.thms >> |
325 |
(fn (f, ths) => Thm.rule_attribute (fn context => |
|
27021 | 326 |
f ((if null ths then I else MetaSimplifier.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
|
327 |
(simpset_of (Context.proof_of context)) addsimps ths))); |
16014 | 328 |
|
329 |
end; |
|
330 |
||
331 |
||
332 |
(* setup attributes *) |
|
333 |
||
26463 | 334 |
val _ = Context.>> (Context.map_theory |
30528 | 335 |
(Attrib.setup (Binding.name simpN) (Attrib.add_del simp_add simp_del) |
336 |
"declaration of Simplifier rewrite rule" #> |
|
337 |
Attrib.setup (Binding.name congN) (Attrib.add_del cong_add cong_del) |
|
338 |
"declaration of Simplifier congruence rule" #> |
|
33671 | 339 |
Attrib.setup (Binding.name "simproc") simproc_att |
340 |
"declaration of simplification procedures" #> |
|
30528 | 341 |
Attrib.setup (Binding.name "simplified") simplified "simplified rule")); |
16014 | 342 |
|
343 |
||
344 |
||
31300 | 345 |
(** method syntax **) |
16014 | 346 |
|
347 |
val cong_modifiers = |
|
18728 | 348 |
[Args.$$$ congN -- Args.colon >> K ((I, cong_add): Method.modifier), |
349 |
Args.$$$ congN -- Args.add -- Args.colon >> K (I, cong_add), |
|
350 |
Args.$$$ congN -- Args.del -- Args.colon >> K (I, cong_del)]; |
|
16014 | 351 |
|
352 |
val simp_modifiers = |
|
18728 | 353 |
[Args.$$$ simpN -- Args.colon >> K (I, simp_add), |
354 |
Args.$$$ simpN -- Args.add -- Args.colon >> K (I, simp_add), |
|
355 |
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
|
356 |
Args.$$$ simpN -- Args.$$$ onlyN -- Args.colon |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
357 |
>> K (Context.proof_map (map_ss MetaSimplifier.clear_ss), simp_add)] |
16014 | 358 |
@ cong_modifiers; |
359 |
||
360 |
val simp_modifiers' = |
|
18728 | 361 |
[Args.add -- Args.colon >> K (I, simp_add), |
362 |
Args.del -- Args.colon >> K (I, simp_del), |
|
18688 | 363 |
Args.$$$ onlyN -- Args.colon |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
364 |
>> K (Context.proof_map (map_ss MetaSimplifier.clear_ss), simp_add)] |
16014 | 365 |
@ cong_modifiers; |
366 |
||
31300 | 367 |
val simp_options = |
368 |
(Args.parens (Args.$$$ no_asmN) >> K simp_tac || |
|
369 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simp_tac || |
|
370 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simp_tac || |
|
371 |
Args.parens (Args.$$$ asm_lrN) >> K asm_lr_simp_tac || |
|
372 |
Scan.succeed asm_full_simp_tac); |
|
16014 | 373 |
|
31300 | 374 |
fun simp_method more_mods meth = |
35613 | 375 |
Scan.lift simp_options --| |
31300 | 376 |
Method.sections (more_mods @ simp_modifiers') >> |
35613 | 377 |
(fn tac => fn ctxt => METHOD (fn facts => meth ctxt tac facts)); |
16014 | 378 |
|
379 |
||
380 |
||
18708 | 381 |
(** setup **) |
382 |
||
31300 | 383 |
fun method_setup more_mods = |
384 |
Method.setup (Binding.name simpN) |
|
385 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
|
386 |
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
|
387 |
(CHANGED_PROP oo tac) (simpset_of ctxt)))) |
31300 | 388 |
"simplification" #> |
389 |
Method.setup (Binding.name "simp_all") |
|
390 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
|
391 |
ALLGOALS (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
|
392 |
(CHANGED_PROP o ALLGOALS o tac) (simpset_of ctxt))) |
31300 | 393 |
"simplification (all goals)"; |
16014 | 394 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
395 |
fun easy_setup reflect trivs = method_setup [] #> Context.theory_map (map_ss (fn _ => |
16014 | 396 |
let |
397 |
val trivialities = Drule.reflexive_thm :: trivs; |
|
398 |
||
399 |
fun unsafe_solver_tac prems = FIRST' [resolve_tac (trivialities @ prems), assume_tac]; |
|
400 |
val unsafe_solver = mk_solver "easy unsafe" unsafe_solver_tac; |
|
401 |
||
402 |
(*no premature instantiation of variables during simplification*) |
|
403 |
fun safe_solver_tac prems = FIRST' [match_tac (trivialities @ prems), eq_assume_tac]; |
|
404 |
val safe_solver = mk_solver "easy safe" safe_solver_tac; |
|
405 |
||
406 |
fun mk_eq thm = |
|
20872 | 407 |
if can Logic.dest_equals (Thm.concl_of thm) then [thm] |
16014 | 408 |
else [thm RS reflect] handle THM _ => []; |
409 |
||
26653 | 410 |
fun mksimps thm = mk_eq (Thm.forall_elim_vars (#maxidx (Thm.rep_thm thm) + 1) thm); |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
411 |
in |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
412 |
empty_ss setsubgoaler asm_simp_tac |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
413 |
setSSolver safe_solver |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
414 |
setSolver unsafe_solver |
36543
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
wenzelm
parents:
35613
diff
changeset
|
415 |
setmksimps (K mksimps) |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
416 |
end)); |
16014 | 417 |
|
418 |
end; |
|
419 |
||
32738 | 420 |
structure Basic_Simplifier: BASIC_SIMPLIFIER = Simplifier; |
421 |
open Basic_Simplifier; |