author | wenzelm |
Mon, 12 Aug 2013 13:30:54 +0200 | |
changeset 52975 | 457c006f91bb |
parent 52458 | 210bca64b894 |
child 53171 | a5e54d4d9081 |
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 |
16014 | 11 |
val Addsimprocs: simproc list -> unit |
12 |
val Delsimprocs: simproc list -> unit |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
13 |
val 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_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
15 |
val 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 asm_lr_simp_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
17 |
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
|
18 |
val safe_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_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_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 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
|
22 |
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
|
23 |
val simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
24 |
val asm_simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
25 |
val full_simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
26 |
val asm_lr_simplify: Proof.context -> thm -> thm |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
27 |
val asm_full_simplify: Proof.context -> thm -> thm |
16014 | 28 |
end; |
29 |
||
30 |
signature SIMPLIFIER = |
|
31 |
sig |
|
32 |
include BASIC_SIMPLIFIER |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
33 |
val map_ss: (Proof.context -> Proof.context) -> Context.generic -> Context.generic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
34 |
val pretty_simpset: Proof.context -> Pretty.T |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
35 |
val default_mk_sym: Proof.context -> thm -> thm option |
32738 | 36 |
val debug_bounds: bool Unsynchronized.ref |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
37 |
val prems_of: Proof.context -> thm list |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
38 |
val add_simp: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
39 |
val del_simp: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
40 |
val add_eqcong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
41 |
val del_eqcong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
42 |
val add_cong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
43 |
val del_cong: thm -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
44 |
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
|
45 |
val mksimps: Proof.context -> thm -> thm list |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
val set_mkeqTrue: (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
|
50 |
val set_termless: (term * term -> bool) -> Proof.context -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
51 |
val set_subgoaler: (Proof.context -> int -> tactic) -> Proof.context -> Proof.context |
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
52 |
val simproc_global_i: theory -> string -> term list -> |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
53 |
(Proof.context -> term -> thm option) -> simproc |
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
54 |
val simproc_global: theory -> string -> string list -> |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
55 |
(Proof.context -> term -> thm option) -> simproc |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
56 |
val rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
57 |
val asm_rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
58 |
val full_rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
59 |
val asm_lr_rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
60 |
val asm_full_rewrite: Proof.context -> conv |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
61 |
val attrib: (thm -> Proof.context -> Proof.context) -> attribute |
18728 | 62 |
val simp_add: attribute |
63 |
val simp_del: attribute |
|
64 |
val cong_add: attribute |
|
65 |
val cong_del: attribute |
|
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
66 |
val check_simproc: Proof.context -> xstring * Position.T -> string |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
67 |
val the_simproc: Proof.context -> string -> simproc |
42464 | 68 |
val def_simproc: {name: binding, lhss: term list, |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
69 |
proc: morphism -> Proof.context -> cterm -> thm option, identifier: thm list} -> |
22201 | 70 |
local_theory -> local_theory |
42464 | 71 |
val def_simproc_cmd: {name: binding, lhss: string list, |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
72 |
proc: morphism -> Proof.context -> cterm -> thm option, identifier: thm list} -> |
22201 | 73 |
local_theory -> local_theory |
30513 | 74 |
val cong_modifiers: Method.modifier parser list |
75 |
val simp_modifiers': Method.modifier parser list |
|
76 |
val simp_modifiers: Method.modifier parser list |
|
77 |
val method_setup: Method.modifier parser list -> theory -> theory |
|
18708 | 78 |
val easy_setup: thm -> thm list -> theory -> theory |
16014 | 79 |
end; |
80 |
||
81 |
structure Simplifier: SIMPLIFIER = |
|
82 |
struct |
|
83 |
||
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
84 |
open Raw_Simplifier; |
21708 | 85 |
|
86 |
||
30356 | 87 |
(** pretty printing **) |
88 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
89 |
fun pretty_simpset ctxt = |
30356 | 90 |
let |
51590 | 91 |
val pretty_term = Syntax.pretty_term ctxt; |
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
|
92 |
val pretty_thm = Display.pretty_thm ctxt; |
51584 | 93 |
val pretty_thm_item = Display.pretty_thm_item ctxt; |
94 |
||
51580
64ef8260dc60
Pretty.item markup for improved readability of lists of items;
wenzelm
parents:
50107
diff
changeset
|
95 |
fun pretty_proc (name, lhss) = |
51590 | 96 |
Pretty.big_list (name ^ ":") (map (Pretty.item o single o pretty_term o Thm.term_of) lhss); |
97 |
||
98 |
fun pretty_cong_name (const, name) = |
|
99 |
pretty_term ((if const then Const else Free) (name, dummyT)); |
|
30356 | 100 |
fun pretty_cong (name, thm) = |
51590 | 101 |
Pretty.block [pretty_cong_name name, Pretty.str ":", Pretty.brk 1, pretty_thm thm]; |
30356 | 102 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
103 |
val {simps, procs, congs, loopers, unsafe_solvers, safe_solvers, ...} = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
104 |
dest_ss (simpset_of ctxt); |
30356 | 105 |
in |
51584 | 106 |
[Pretty.big_list "simplification rules:" (map (pretty_thm_item o #2) simps), |
30356 | 107 |
Pretty.big_list "simplification procedures:" (map pretty_proc (sort_wrt #1 procs)), |
108 |
Pretty.big_list "congruences:" (map pretty_cong congs), |
|
109 |
Pretty.strs ("loopers:" :: map quote loopers), |
|
110 |
Pretty.strs ("unsafe solvers:" :: map quote unsafe_solvers), |
|
111 |
Pretty.strs ("safe solvers:" :: map quote safe_solvers)] |
|
112 |
|> Pretty.chunks |
|
113 |
end; |
|
114 |
||
115 |
||
116 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
117 |
(** declarations **) |
16014 | 118 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
119 |
(* attributes *) |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
120 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
121 |
fun attrib f = Thm.declaration_attribute (map_ss o f); |
16014 | 122 |
|
45620
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents:
45375
diff
changeset
|
123 |
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
|
124 |
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
|
125 |
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
|
126 |
val cong_del = attrib del_cong; |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
127 |
|
16014 | 128 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
129 |
(* global simprocs *) |
16014 | 130 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
131 |
fun Addsimprocs args = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
132 |
Context.>> (Context.map_theory (map_theory_simpset (fn ctxt => ctxt addsimprocs args))); |
16014 | 133 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
134 |
fun Delsimprocs args = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
135 |
Context.>> (Context.map_theory (map_theory_simpset (fn ctxt => ctxt delsimprocs args))); |
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
136 |
|
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
42793
diff
changeset
|
137 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
138 |
|
22201 | 139 |
(** named simprocs **) |
140 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
141 |
structure Simprocs = Generic_Data |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
142 |
( |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
143 |
type T = simproc Name_Space.table; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
144 |
val empty : T = Name_Space.empty_table "simproc"; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
145 |
val extend = I; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
146 |
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
|
147 |
); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
148 |
|
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
149 |
|
22204 | 150 |
(* get simprocs *) |
151 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
152 |
val get_simprocs = Simprocs.get o Context.Proof; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
153 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
47001
diff
changeset
|
154 |
fun check_simproc ctxt = Name_Space.check (Context.Proof ctxt) (get_simprocs ctxt) #> #1; |
42466 | 155 |
val the_simproc = Name_Space.get o get_simprocs; |
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
156 |
|
42464 | 157 |
val _ = |
43560
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
158 |
Context.>> (Context.map_theory |
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
159 |
(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
|
160 |
(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
|
161 |
>> (fn (ctxt, name) => |
48776
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
wenzelm
parents:
47468
diff
changeset
|
162 |
"Simplifier.the_simproc ML_context " ^ |
43560
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42795
diff
changeset
|
163 |
ML_Syntax.print_string (check_simproc ctxt name))))); |
22204 | 164 |
|
165 |
||
166 |
(* define simprocs *) |
|
22201 | 167 |
|
168 |
local |
|
169 |
||
42464 | 170 |
fun gen_simproc prep {name = b, lhss, proc, identifier} lthy = |
22201 | 171 |
let |
22236 | 172 |
val simproc = make_simproc |
47001
a0e370d3d149
proper naming of simprocs according to actual target context;
wenzelm
parents:
46776
diff
changeset
|
173 |
{name = Local_Theory.full_name lthy b, |
22236 | 174 |
lhss = |
175 |
let |
|
176 |
val lhss' = prep lthy lhss; |
|
45326
8fa859aebc0d
tuned -- Variable.declare_term is already part of Variable.auto_fixes;
wenzelm
parents:
45291
diff
changeset
|
177 |
val ctxt' = fold Variable.auto_fixes lhss' lthy; |
22236 | 178 |
in Variable.export_terms ctxt' lthy lhss' end |
42360 | 179 |
|> map (Thm.cterm_of (Proof_Context.theory_of lthy)), |
22236 | 180 |
proc = proc, |
33551
c40ced05b10a
define simprocs: do not apply target_morphism prematurely, this is already done in LocalTheory.declaration;
wenzelm
parents:
33519
diff
changeset
|
181 |
identifier = identifier}; |
22201 | 182 |
in |
47001
a0e370d3d149
proper naming of simprocs according to actual target context;
wenzelm
parents:
46776
diff
changeset
|
183 |
lthy |> Local_Theory.declaration {syntax = false, pervasive = true} (fn phi => fn context => |
22201 | 184 |
let |
28991 | 185 |
val b' = Morphism.binding phi b; |
45290 | 186 |
val simproc' = transform_simproc phi simproc; |
22201 | 187 |
in |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42372
diff
changeset
|
188 |
context |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
189 |
|> 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
|
190 |
|> map_ss (fn ctxt => ctxt addsimprocs [simproc']) |
22201 | 191 |
end) |
192 |
end; |
|
193 |
||
194 |
in |
|
195 |
||
42464 | 196 |
val def_simproc = gen_simproc Syntax.check_terms; |
197 |
val def_simproc_cmd = gen_simproc Syntax.read_terms; |
|
22201 | 198 |
|
199 |
end; |
|
200 |
||
201 |
||
202 |
||
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
203 |
(** simplification tactics and rules **) |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
204 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
205 |
fun solve_all_tac solvers ctxt = |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
206 |
let |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
207 |
val (_, {subgoal_tac, ...}) = Raw_Simplifier.internal_ss (simpset_of ctxt); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
208 |
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
|
209 |
in DEPTH_SOLVE (solve_tac 1) end; |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
210 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
211 |
(*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
|
212 |
fun generic_simp_tac safe mode ctxt = |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
213 |
let |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
214 |
val (_, {loop_tacs, solvers = (unsafe_solvers, solvers), ...}) = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
215 |
Raw_Simplifier.internal_ss (simpset_of ctxt); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
216 |
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
|
217 |
val solve_tac = FIRST' (map (Raw_Simplifier.solver ctxt) |
22717 | 218 |
(rev (if safe then solvers else unsafe_solvers))); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
219 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
220 |
fun simp_loop_tac i = |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
221 |
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
|
222 |
(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
|
223 |
in PREFER_GOAL (simp_loop_tac 1) end; |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
224 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
225 |
local |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
226 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
227 |
fun simp rew mode ctxt thm = |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
228 |
let |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
229 |
val (_, {solvers = (unsafe_solvers, _), ...}) = Raw_Simplifier.internal_ss (simpset_of ctxt); |
22717 | 230 |
val tacf = solve_all_tac (rev unsafe_solvers); |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
231 |
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
|
232 |
in rew mode prover ctxt thm end; |
17967
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 |
in |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
235 |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
236 |
val simp_thm = simp Raw_Simplifier.rewrite_thm; |
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41226
diff
changeset
|
237 |
val simp_cterm = simp Raw_Simplifier.rewrite_cterm; |
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
238 |
|
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
239 |
end; |
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 |
|
16806 | 242 |
(* tactics *) |
243 |
||
16014 | 244 |
val simp_tac = generic_simp_tac false (false, false, false); |
245 |
val asm_simp_tac = generic_simp_tac false (false, true, false); |
|
246 |
val full_simp_tac = generic_simp_tac false (true, false, false); |
|
247 |
val asm_lr_simp_tac = generic_simp_tac false (true, true, false); |
|
248 |
val asm_full_simp_tac = generic_simp_tac false (true, true, true); |
|
50107 | 249 |
|
250 |
(*not totally safe: may instantiate unknowns that appear also in other subgoals*) |
|
251 |
val safe_simp_tac = generic_simp_tac true (false, false, false); |
|
252 |
val safe_asm_simp_tac = generic_simp_tac true (false, true, false); |
|
253 |
val safe_full_simp_tac = generic_simp_tac true (true, false, false); |
|
254 |
val safe_asm_lr_simp_tac = generic_simp_tac true (true, true, false); |
|
16014 | 255 |
val safe_asm_full_simp_tac = generic_simp_tac true (true, true, true); |
256 |
||
16806 | 257 |
|
258 |
(* conversions *) |
|
259 |
||
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
260 |
val simplify = simp_thm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
261 |
val asm_simplify = simp_thm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
262 |
val full_simplify = simp_thm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
263 |
val asm_lr_simplify = simp_thm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
264 |
val asm_full_simplify = simp_thm (true, true, true); |
16014 | 265 |
|
17967
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
266 |
val rewrite = simp_cterm (false, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
267 |
val asm_rewrite = simp_cterm (false, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
268 |
val full_rewrite = simp_cterm (true, false, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
269 |
val asm_lr_rewrite = simp_cterm (true, true, false); |
7a733b7438e1
added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents:
17898
diff
changeset
|
270 |
val asm_full_rewrite = simp_cterm (true, true, true); |
16014 | 271 |
|
272 |
||
273 |
||
274 |
(** concrete syntax of attributes **) |
|
275 |
||
276 |
(* add / del *) |
|
277 |
||
278 |
val simpN = "simp"; |
|
279 |
val congN = "cong"; |
|
280 |
val onlyN = "only"; |
|
281 |
val no_asmN = "no_asm"; |
|
282 |
val no_asm_useN = "no_asm_use"; |
|
283 |
val no_asm_simpN = "no_asm_simp"; |
|
284 |
val asm_lrN = "asm_lr"; |
|
285 |
||
286 |
||
24024 | 287 |
(* simprocs *) |
288 |
||
289 |
local |
|
290 |
||
291 |
val add_del = |
|
292 |
(Args.del -- Args.colon >> K (op delsimprocs) || |
|
293 |
Scan.option (Args.add -- Args.colon) >> K (op addsimprocs)) |
|
294 |
>> (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
|
295 |
(K (Raw_Simplifier.map_ss (fn ctxt => f (ctxt, [transform_simproc phi simproc]))))); |
24024 | 296 |
|
297 |
in |
|
298 |
||
30528 | 299 |
val simproc_att = |
42465
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
300 |
(Args.context -- Scan.lift add_del) :|-- (fn (ctxt, decl) => |
1ba52683512a
clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents:
42464
diff
changeset
|
301 |
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
|
302 |
>> (fn atts => Thm.declaration_attribute (fn th => |
46776 | 303 |
fold (fn att => Thm.attribute_declaration (Morphism.form att) th) atts)); |
24024 | 304 |
|
305 |
end; |
|
24124
4399175e3014
turned simp_depth_limit into configuration option;
wenzelm
parents:
24024
diff
changeset
|
306 |
|
24024 | 307 |
|
16014 | 308 |
(* conversions *) |
309 |
||
310 |
local |
|
311 |
||
312 |
fun conv_mode x = |
|
313 |
((Args.parens (Args.$$$ no_asmN) >> K simplify || |
|
314 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simplify || |
|
315 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simplify || |
|
316 |
Scan.succeed asm_full_simplify) |> Scan.lift) x; |
|
317 |
||
318 |
in |
|
319 |
||
30528 | 320 |
val simplified = conv_mode -- Attrib.thms >> |
321 |
(fn (f, ths) => Thm.rule_attribute (fn context => |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
322 |
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
|
323 |
(Context.proof_of context) addsimps ths))); |
16014 | 324 |
|
325 |
end; |
|
326 |
||
327 |
||
328 |
(* setup attributes *) |
|
329 |
||
26463 | 330 |
val _ = Context.>> (Context.map_theory |
30528 | 331 |
(Attrib.setup (Binding.name simpN) (Attrib.add_del simp_add simp_del) |
332 |
"declaration of Simplifier rewrite rule" #> |
|
333 |
Attrib.setup (Binding.name congN) (Attrib.add_del cong_add cong_del) |
|
334 |
"declaration of Simplifier congruence rule" #> |
|
33671 | 335 |
Attrib.setup (Binding.name "simproc") simproc_att |
336 |
"declaration of simplification procedures" #> |
|
30528 | 337 |
Attrib.setup (Binding.name "simplified") simplified "simplified rule")); |
16014 | 338 |
|
339 |
||
340 |
||
31300 | 341 |
(** method syntax **) |
16014 | 342 |
|
343 |
val cong_modifiers = |
|
18728 | 344 |
[Args.$$$ congN -- Args.colon >> K ((I, cong_add): Method.modifier), |
345 |
Args.$$$ congN -- Args.add -- Args.colon >> K (I, cong_add), |
|
346 |
Args.$$$ congN -- Args.del -- Args.colon >> K (I, cong_del)]; |
|
16014 | 347 |
|
348 |
val simp_modifiers = |
|
18728 | 349 |
[Args.$$$ simpN -- Args.colon >> K (I, simp_add), |
350 |
Args.$$$ simpN -- Args.add -- Args.colon >> K (I, simp_add), |
|
351 |
Args.$$$ simpN -- Args.del -- Args.colon >> K (I, simp_del), |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
352 |
Args.$$$ simpN -- Args.$$$ onlyN -- Args.colon >> K (Raw_Simplifier.clear_simpset, simp_add)] |
16014 | 353 |
@ cong_modifiers; |
354 |
||
355 |
val simp_modifiers' = |
|
18728 | 356 |
[Args.add -- Args.colon >> K (I, simp_add), |
357 |
Args.del -- Args.colon >> K (I, simp_del), |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
358 |
Args.$$$ onlyN -- Args.colon >> K (Raw_Simplifier.clear_simpset, simp_add)] |
16014 | 359 |
@ cong_modifiers; |
360 |
||
31300 | 361 |
val simp_options = |
362 |
(Args.parens (Args.$$$ no_asmN) >> K simp_tac || |
|
363 |
Args.parens (Args.$$$ no_asm_simpN) >> K asm_simp_tac || |
|
364 |
Args.parens (Args.$$$ no_asm_useN) >> K full_simp_tac || |
|
365 |
Args.parens (Args.$$$ asm_lrN) >> K asm_lr_simp_tac || |
|
366 |
Scan.succeed asm_full_simp_tac); |
|
16014 | 367 |
|
31300 | 368 |
fun simp_method more_mods meth = |
35613 | 369 |
Scan.lift simp_options --| |
31300 | 370 |
Method.sections (more_mods @ simp_modifiers') >> |
35613 | 371 |
(fn tac => fn ctxt => METHOD (fn facts => meth ctxt tac facts)); |
16014 | 372 |
|
373 |
||
374 |
||
18708 | 375 |
(** setup **) |
376 |
||
31300 | 377 |
fun method_setup more_mods = |
378 |
Method.setup (Binding.name simpN) |
|
379 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
|
380 |
HEADGOAL (Method.insert_tac facts THEN' |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
381 |
(CHANGED_PROP oo tac) ctxt))) |
31300 | 382 |
"simplification" #> |
383 |
Method.setup (Binding.name "simp_all") |
|
384 |
(simp_method more_mods (fn ctxt => fn tac => fn facts => |
|
385 |
ALLGOALS (Method.insert_tac facts) THEN |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
386 |
(CHANGED_PROP o PARALLEL_GOALS o ALLGOALS o tac) ctxt)) |
31300 | 387 |
"simplification (all goals)"; |
16014 | 388 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
389 |
fun easy_setup reflect trivs = method_setup [] #> Context.theory_map (map_ss (fn ctxt0 => |
16014 | 390 |
let |
391 |
val trivialities = Drule.reflexive_thm :: trivs; |
|
392 |
||
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
393 |
fun unsafe_solver_tac ctxt = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
394 |
FIRST' [resolve_tac (trivialities @ Raw_Simplifier.prems_of ctxt), assume_tac]; |
16014 | 395 |
val unsafe_solver = mk_solver "easy unsafe" unsafe_solver_tac; |
396 |
||
397 |
(*no premature instantiation of variables during simplification*) |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
398 |
fun safe_solver_tac ctxt = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
399 |
FIRST' [match_tac (trivialities @ Raw_Simplifier.prems_of ctxt), eq_assume_tac]; |
16014 | 400 |
val safe_solver = mk_solver "easy safe" safe_solver_tac; |
401 |
||
402 |
fun mk_eq thm = |
|
20872 | 403 |
if can Logic.dest_equals (Thm.concl_of thm) then [thm] |
16014 | 404 |
else [thm RS reflect] handle THM _ => []; |
405 |
||
44058 | 406 |
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
|
407 |
in |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51688
diff
changeset
|
408 |
empty_simpset ctxt0 |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
409 |
setSSolver safe_solver |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
410 |
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
|
411 |
|> 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
|
412 |
|> set_mksimps (K mksimps) |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26463
diff
changeset
|
413 |
end)); |
16014 | 414 |
|
415 |
end; |
|
416 |
||
32738 | 417 |
structure Basic_Simplifier: BASIC_SIMPLIFIER = Simplifier; |
418 |
open Basic_Simplifier; |