author | haftmann |
Sat, 20 Aug 2011 01:21:22 +0200 | |
changeset 44323 | 4b5b430eb00e |
parent 39557 | fe5722fce758 |
child 45375 | 7fe19930dfc9 |
permissions | -rw-r--r-- |
12350 | 1 |
(* Title: Pure/Isar/context_rules.ML |
2 |
Author: Stefan Berghofer and Markus Wenzel, TU Muenchen |
|
3 |
||
18728 | 4 |
Declarations of intro/elim/dest rules in Pure (see also |
5 |
Provers/classical.ML for a more specialized version of the same idea). |
|
12350 | 6 |
*) |
7 |
||
8 |
signature CONTEXT_RULES = |
|
9 |
sig |
|
33370 | 10 |
type netpair = ((int * int) * (bool * thm)) Net.net * ((int * int) * (bool * thm)) Net.net |
20289 | 11 |
val netpair_bang: Proof.context -> netpair |
12 |
val netpair: Proof.context -> netpair |
|
12350 | 13 |
val orderlist: ((int * int) * 'a) list -> 'a list |
12399 | 14 |
val find_rules_netpair: bool -> thm list -> term -> netpair -> thm list |
20289 | 15 |
val find_rules: bool -> thm list -> term -> Proof.context -> thm list list |
21506 | 16 |
val print_rules: Proof.context -> unit |
12350 | 17 |
val addSWrapper: ((int -> tactic) -> int -> tactic) -> theory -> theory |
18 |
val addWrapper: ((int -> tactic) -> int -> tactic) -> theory -> theory |
|
20289 | 19 |
val Swrap: Proof.context -> (int -> tactic) -> int -> tactic |
20 |
val wrap: Proof.context -> (int -> tactic) -> int -> tactic |
|
18728 | 21 |
val intro_bang: int option -> attribute |
22 |
val elim_bang: int option -> attribute |
|
23 |
val dest_bang: int option -> attribute |
|
24 |
val intro: int option -> attribute |
|
25 |
val elim: int option -> attribute |
|
26 |
val dest: int option -> attribute |
|
27 |
val intro_query: int option -> attribute |
|
28 |
val elim_query: int option -> attribute |
|
29 |
val dest_query: int option -> attribute |
|
30 |
val rule_del: attribute |
|
30529 | 31 |
val add: (int option -> attribute) -> (int option -> attribute) -> (int option -> attribute) -> |
32 |
attribute context_parser |
|
12350 | 33 |
end; |
34 |
||
33369 | 35 |
structure Context_Rules: CONTEXT_RULES = |
12350 | 36 |
struct |
37 |
||
38 |
||
39 |
(** rule declaration contexts **) |
|
40 |
||
41 |
(* rule kinds *) |
|
42 |
||
43 |
val intro_bangK = (0, false); |
|
44 |
val elim_bangK = (0, true); |
|
45 |
val introK = (1, false); |
|
46 |
val elimK = (1, true); |
|
47 |
val intro_queryK = (2, false); |
|
48 |
val elim_queryK = (2, true); |
|
49 |
||
50 |
val kind_names = |
|
51 |
[(intro_bangK, "safe introduction rules (intro!)"), |
|
52 |
(elim_bangK, "safe elimination rules (elim!)"), |
|
53 |
(introK, "introduction rules (intro)"), |
|
54 |
(elimK, "elimination rules (elim)"), |
|
55 |
(intro_queryK, "extra introduction rules (intro?)"), |
|
56 |
(elim_queryK, "extra elimination rules (elim?)")]; |
|
57 |
||
58 |
val rule_kinds = map #1 kind_names; |
|
19046
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
18977
diff
changeset
|
59 |
val rule_indexes = distinct (op =) (map #1 rule_kinds); |
12350 | 60 |
|
61 |
||
18637 | 62 |
(* context data *) |
12350 | 63 |
|
64 |
type netpair = ((int * int) * (bool * thm)) Net.net * ((int * int) * (bool * thm)) Net.net; |
|
65 |
val empty_netpairs: netpair list = replicate (length rule_indexes) (Net.empty, Net.empty); |
|
66 |
||
33370 | 67 |
datatype rules = Rules of |
12350 | 68 |
{next: int, |
69 |
rules: (int * ((int * bool) * thm)) list, |
|
70 |
netpairs: netpair list, |
|
71 |
wrappers: (((int -> tactic) -> int -> tactic) * stamp) list * |
|
72 |
(((int -> tactic) -> int -> tactic) * stamp) list}; |
|
73 |
||
74 |
fun make_rules next rules netpairs wrappers = |
|
75 |
Rules {next = next, rules = rules, netpairs = netpairs, wrappers = wrappers}; |
|
76 |
||
77 |
fun add_rule (i, b) opt_w th (Rules {next, rules, netpairs, wrappers}) = |
|
15531 | 78 |
let val w = (case opt_w of SOME w => w | NONE => Tactic.subgoals_of_brl (b, th)) in |
12350 | 79 |
make_rules (next - 1) ((w, ((i, b), th)) :: rules) |
23227 | 80 |
(nth_map i (Tactic.insert_tagged_brl ((w, next), (b, th))) netpairs) wrappers |
12350 | 81 |
end; |
82 |
||
83 |
fun del_rule th (rs as Rules {next, rules, netpairs, wrappers}) = |
|
84 |
let |
|
22360
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
21506
diff
changeset
|
85 |
fun eq_th (_, (_, th')) = Thm.eq_thm_prop (th, th'); |
23227 | 86 |
fun del b netpair = Tactic.delete_tagged_brl (b, th) netpair handle Net.DELETE => netpair; |
12350 | 87 |
in |
88 |
if not (exists eq_th rules) then rs |
|
89 |
else make_rules next (filter_out eq_th rules) (map (del false o del true) netpairs) wrappers |
|
90 |
end; |
|
91 |
||
33519 | 92 |
structure Rules = Generic_Data |
18637 | 93 |
( |
33370 | 94 |
type T = rules; |
12350 | 95 |
val empty = make_rules ~1 [] empty_netpairs ([], []); |
16424 | 96 |
val extend = I; |
33519 | 97 |
fun merge |
98 |
(Rules {rules = rules1, wrappers = (ws1, ws1'), ...}, |
|
12350 | 99 |
Rules {rules = rules2, wrappers = (ws2, ws2'), ...}) = |
100 |
let |
|
18637 | 101 |
val wrappers = |
18921 | 102 |
(Library.merge (eq_snd (op =)) (ws1, ws2), Library.merge (eq_snd (op =)) (ws1', ws2')); |
103 |
val rules = Library.merge (fn ((_, (k1, th1)), (_, (k2, th2))) => |
|
22360
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
21506
diff
changeset
|
104 |
k1 = k2 andalso Thm.eq_thm_prop (th1, th2)) (rules1, rules2); |
12350 | 105 |
val next = ~ (length rules); |
19473 | 106 |
val netpairs = fold (fn (n, (w, ((i, b), th))) => |
23227 | 107 |
nth_map i (Tactic.insert_tagged_brl ((w, n), (b, th)))) |
19473 | 108 |
(next upto ~1 ~~ rules) empty_netpairs; |
23227 | 109 |
in make_rules (next - 1) rules netpairs wrappers end; |
18637 | 110 |
); |
12350 | 111 |
|
22846 | 112 |
fun print_rules ctxt = |
113 |
let |
|
114 |
val Rules {rules, ...} = Rules.get (Context.Proof ctxt); |
|
115 |
fun prt_kind (i, b) = |
|
116 |
Pretty.big_list ((the o AList.lookup (op =) kind_names) (i, b) ^ ":") |
|
117 |
(map_filter (fn (_, (k, th)) => |
|
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:
30529
diff
changeset
|
118 |
if k = (i, b) then SOME (Display.pretty_thm ctxt th) else NONE) |
22846 | 119 |
(sort (int_ord o pairself fst) rules)); |
120 |
in Pretty.writeln (Pretty.chunks (map prt_kind rule_kinds)) end; |
|
12350 | 121 |
|
122 |
||
123 |
(* access data *) |
|
124 |
||
18637 | 125 |
fun netpairs ctxt = let val Rules {netpairs, ...} = Rules.get (Context.Proof ctxt) in netpairs end; |
12350 | 126 |
val netpair_bang = hd o netpairs; |
127 |
val netpair = hd o tl o netpairs; |
|
128 |
||
129 |
||
12399 | 130 |
(* retrieving rules *) |
131 |
||
12350 | 132 |
fun untaglist [] = [] |
32784 | 133 |
| untaglist [(_ : int * int, x)] = [x] |
134 |
| untaglist ((k, x) :: (rest as (k', _) :: _)) = |
|
12350 | 135 |
if k = k' then untaglist rest |
136 |
else x :: untaglist rest; |
|
137 |
||
16424 | 138 |
fun orderlist brls = |
16512 | 139 |
untaglist (sort (prod_ord int_ord int_ord o pairself fst) brls); |
16424 | 140 |
|
141 |
fun orderlist_no_weight brls = |
|
16512 | 142 |
untaglist (sort (int_ord o pairself (snd o fst)) brls); |
12399 | 143 |
|
144 |
fun may_unify weighted t net = |
|
145 |
map snd ((if weighted then orderlist else orderlist_no_weight) (Net.unify_term net t)); |
|
146 |
||
147 |
fun find_erules _ [] = K [] |
|
12805 | 148 |
| find_erules w (fact :: _) = may_unify w (Logic.strip_assums_concl (Thm.prop_of fact)); |
16424 | 149 |
|
12399 | 150 |
fun find_irules w goal = may_unify w (Logic.strip_assums_concl goal); |
12380 | 151 |
|
12399 | 152 |
fun find_rules_netpair weighted facts goal (inet, enet) = |
153 |
find_erules weighted facts enet @ find_irules weighted goal inet; |
|
12380 | 154 |
|
16424 | 155 |
fun find_rules weighted facts goals = |
156 |
map (find_rules_netpair weighted facts goals) o netpairs; |
|
12350 | 157 |
|
158 |
||
12399 | 159 |
(* wrappers *) |
160 |
||
18667 | 161 |
fun gen_add_wrapper upd w = |
32784 | 162 |
Context.theory_map (Rules.map (fn Rules {next, rules, netpairs, wrappers} => |
18667 | 163 |
make_rules next rules netpairs (upd (fn ws => (w, stamp ()) :: ws) wrappers))); |
12350 | 164 |
|
165 |
val addSWrapper = gen_add_wrapper Library.apfst; |
|
166 |
val addWrapper = gen_add_wrapper Library.apsnd; |
|
167 |
||
168 |
||
169 |
fun gen_wrap which ctxt = |
|
18637 | 170 |
let val Rules {wrappers, ...} = Rules.get (Context.Proof ctxt) |
17351 | 171 |
in fold_rev fst (which wrappers) end; |
12350 | 172 |
|
173 |
val Swrap = gen_wrap #1; |
|
174 |
val wrap = gen_wrap #2; |
|
175 |
||
176 |
||
177 |
||
178 |
(** attributes **) |
|
179 |
||
180 |
(* add and del rules *) |
|
181 |
||
18637 | 182 |
fun rule_del (x, th) = |
183 |
(Rules.map (del_rule th o del_rule (Tactic.make_elim th)) x, th); |
|
12350 | 184 |
|
18637 | 185 |
fun rule_add k view opt_w = |
186 |
(fn (x, th) => (Rules.map (add_rule k opt_w (view th)) x, th)) o rule_del; |
|
12350 | 187 |
|
18637 | 188 |
val intro_bang = rule_add intro_bangK I; |
189 |
val elim_bang = rule_add elim_bangK I; |
|
190 |
val dest_bang = rule_add elim_bangK Tactic.make_elim; |
|
191 |
val intro = rule_add introK I; |
|
192 |
val elim = rule_add elimK I; |
|
193 |
val dest = rule_add elimK Tactic.make_elim; |
|
194 |
val intro_query = rule_add intro_queryK I; |
|
195 |
val elim_query = rule_add elim_queryK I; |
|
196 |
val dest_query = rule_add elim_queryK Tactic.make_elim; |
|
12350 | 197 |
|
26463 | 198 |
val _ = Context.>> (Context.map_theory |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
36950
diff
changeset
|
199 |
(snd o Global_Theory.add_thms [((Binding.empty, Drule.equal_intr_rule), [intro_query NONE])])); |
18637 | 200 |
|
12350 | 201 |
|
18637 | 202 |
(* concrete syntax *) |
203 |
||
30529 | 204 |
fun add a b c x = |
27809
a1e409db516b
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
26463
diff
changeset
|
205 |
(Scan.lift ((Args.bang >> K a || Args.query >> K c || Scan.succeed b) -- |
36950 | 206 |
Scan.option Parse.nat) >> (fn (f, n) => f n)) x; |
18637 | 207 |
|
30529 | 208 |
val _ = Context.>> (Context.map_theory |
209 |
(Attrib.setup (Binding.name "intro") (add intro_bang intro intro_query) |
|
210 |
"declaration of introduction rule" #> |
|
211 |
Attrib.setup (Binding.name "elim") (add elim_bang elim elim_query) |
|
212 |
"declaration of elimination rule" #> |
|
213 |
Attrib.setup (Binding.name "dest") (add dest_bang dest dest_query) |
|
214 |
"declaration of destruction rule" #> |
|
215 |
Attrib.setup (Binding.name "rule") (Scan.lift Args.del >> K rule_del) |
|
216 |
"remove declaration of intro/elim/dest rule")); |
|
12350 | 217 |
|
218 |
end; |