| author | haftmann | 
| Thu, 11 Mar 2010 15:52:33 +0100 | |
| changeset 35728 | c36ade6f4c33 | 
| parent 35626 | 06197484c6ad | 
| child 36610 | bafd82950e24 | 
| permissions | -rw-r--r-- | 
| 11897 | 1  | 
(* Title: Pure/Isar/object_logic.ML  | 
2  | 
Author: Markus Wenzel, TU Muenchen  | 
|
3  | 
||
4  | 
Specifics about common object-logics.  | 
|
5  | 
*)  | 
|
6  | 
||
7  | 
signature OBJECT_LOGIC =  | 
|
8  | 
sig  | 
|
| 25497 | 9  | 
val get_base_sort: theory -> sort option  | 
10  | 
val add_base_sort: sort -> theory -> theory  | 
|
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
29606 
diff
changeset
 | 
11  | 
val add_judgment: binding * typ * mixfix -> theory -> theory  | 
| 
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
29606 
diff
changeset
 | 
12  | 
val add_judgment_cmd: binding * string * mixfix -> theory -> theory  | 
| 16449 | 13  | 
val judgment_name: theory -> string  | 
14  | 
val is_judgment: theory -> term -> bool  | 
|
15  | 
val drop_judgment: theory -> term -> term  | 
|
16  | 
val fixed_judgment: theory -> string -> term  | 
|
| 18121 | 17  | 
val ensure_propT: theory -> term -> term  | 
| 23586 | 18  | 
val dest_judgment: cterm -> cterm  | 
| 
23566
 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 
wenzelm 
parents: 
23540 
diff
changeset
 | 
19  | 
val judgment_conv: conv -> conv  | 
| 19261 | 20  | 
val is_elim: thm -> bool  | 
| 18728 | 21  | 
val declare_atomize: attribute  | 
22  | 
val declare_rulify: attribute  | 
|
| 16449 | 23  | 
val atomize_term: theory -> term -> term  | 
| 
23602
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
24  | 
val atomize: conv  | 
| 
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
25  | 
val atomize_prems: conv  | 
| 
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
26  | 
val atomize_prems_tac: int -> tactic  | 
| 12829 | 27  | 
val full_atomize_tac: int -> tactic  | 
| 18807 | 28  | 
val rulify_term: theory -> term -> term  | 
29  | 
val rulify_tac: int -> tactic  | 
|
| 11897 | 30  | 
val rulify: thm -> thm  | 
31  | 
val rulify_no_asm: thm -> thm  | 
|
| 18728 | 32  | 
val rule_format: attribute  | 
33  | 
val rule_format_no_asm: attribute  | 
|
| 11897 | 34  | 
end;  | 
35  | 
||
| 35625 | 36  | 
structure Object_Logic: OBJECT_LOGIC =  | 
| 11897 | 37  | 
struct  | 
38  | 
||
| 25497 | 39  | 
(** theory data **)  | 
| 11897 | 40  | 
|
| 25497 | 41  | 
datatype data = Data of  | 
42  | 
 {base_sort: sort option,
 | 
|
43  | 
judgment: string option,  | 
|
44  | 
atomize_rulify: thm list * thm list};  | 
|
45  | 
||
46  | 
fun make_data (base_sort, judgment, atomize_rulify) =  | 
|
47  | 
  Data {base_sort = base_sort, judgment = judgment, atomize_rulify = atomize_rulify};
 | 
|
| 11897 | 48  | 
|
| 33522 | 49  | 
structure ObjectLogicData = Theory_Data  | 
| 22846 | 50  | 
(  | 
| 25497 | 51  | 
type T = data;  | 
52  | 
val empty = make_data (NONE, NONE, ([], []));  | 
|
| 16449 | 53  | 
val extend = I;  | 
| 11897 | 54  | 
|
| 25497 | 55  | 
fun merge_opt eq (SOME x, SOME y) =  | 
56  | 
if eq (x, y) then SOME x else error "Attempt to merge different object-logics"  | 
|
57  | 
| merge_opt _ (x, y) = if is_some x then x else y;  | 
|
| 11897 | 58  | 
|
| 33522 | 59  | 
fun merge  | 
| 25497 | 60  | 
     (Data {base_sort = base_sort1, judgment = judgment1, atomize_rulify = (atomize1, rulify1)},
 | 
61  | 
      Data {base_sort = base_sort2, judgment = judgment2, atomize_rulify = (atomize2, rulify2)}) =
 | 
|
62  | 
make_data (merge_opt (op =) (base_sort1, base_sort2), merge_opt (op =) (judgment1, judgment2),  | 
|
| 
24039
 
273698405054
renamed Drule.add/del/merge_rules to Thm.add/del/merge_thms;
 
wenzelm 
parents: 
23602 
diff
changeset
 | 
63  | 
(Thm.merge_thms (atomize1, atomize2), Thm.merge_thms (rulify1, rulify2)));  | 
| 22846 | 64  | 
);  | 
| 15801 | 65  | 
|
| 25497 | 66  | 
fun map_data f = ObjectLogicData.map (fn (Data {base_sort, judgment, atomize_rulify}) =>
 | 
67  | 
make_data (f (base_sort, judgment, atomize_rulify)));  | 
|
68  | 
||
69  | 
fun get_data thy = ObjectLogicData.get thy |> (fn Data args => args);  | 
|
70  | 
||
| 11897 | 71  | 
|
72  | 
||
73  | 
(** generic treatment of judgments -- with a single argument only **)  | 
|
74  | 
||
| 25497 | 75  | 
(* base_sort *)  | 
76  | 
||
77  | 
val get_base_sort = #base_sort o get_data;  | 
|
78  | 
||
79  | 
fun add_base_sort S = map_data (fn (base_sort, judgment, atomize_rulify) =>  | 
|
80  | 
if is_some base_sort then error "Attempt to redeclare object-logic base sort"  | 
|
81  | 
else (SOME S, judgment, atomize_rulify));  | 
|
82  | 
||
83  | 
||
| 18825 | 84  | 
(* add judgment *)  | 
| 11897 | 85  | 
|
86  | 
local  | 
|
87  | 
||
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
29606 
diff
changeset
 | 
88  | 
fun gen_add_judgment add_consts (b, T, mx) thy =  | 
| 35129 | 89  | 
let val c = Sign.full_name thy b in  | 
| 14226 | 90  | 
thy  | 
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
29606 
diff
changeset
 | 
91  | 
|> add_consts [(b, T, mx)]  | 
| 
25018
 
fac2ceba75b4
replaced obsolete Theory.add_finals_i by Theory.add_deps;
 
wenzelm 
parents: 
24848 
diff
changeset
 | 
92  | 
|> (fn thy' => Theory.add_deps c (c, Sign.the_const_type thy' c) [] thy')  | 
| 25497 | 93  | 
|> map_data (fn (base_sort, judgment, atomize_rulify) =>  | 
94  | 
if is_some judgment then error "Attempt to redeclare object-logic judgment"  | 
|
95  | 
else (base_sort, SOME c, atomize_rulify))  | 
|
| 14226 | 96  | 
end;  | 
| 11897 | 97  | 
|
98  | 
in  | 
|
99  | 
||
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
29606 
diff
changeset
 | 
100  | 
val add_judgment = gen_add_judgment Sign.add_consts_i;  | 
| 
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
29606 
diff
changeset
 | 
101  | 
val add_judgment_cmd = gen_add_judgment Sign.add_consts;  | 
| 11897 | 102  | 
|
103  | 
end;  | 
|
104  | 
||
105  | 
||
| 
23566
 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 
wenzelm 
parents: 
23540 
diff
changeset
 | 
106  | 
(* judgments *)  | 
| 11897 | 107  | 
|
| 16449 | 108  | 
fun judgment_name thy =  | 
| 25497 | 109  | 
(case #judgment (get_data thy) of  | 
110  | 
SOME name => name  | 
|
| 11897 | 111  | 
  | _ => raise TERM ("Unknown object-logic judgment", []));
 | 
112  | 
||
| 16449 | 113  | 
fun is_judgment thy (Const (c, _) $ _) = c = judgment_name thy  | 
| 11897 | 114  | 
| is_judgment _ _ = false;  | 
115  | 
||
| 16449 | 116  | 
fun drop_judgment thy (Abs (x, T, t)) = Abs (x, T, drop_judgment thy t)  | 
117  | 
| drop_judgment thy (tm as (Const (c, _) $ t)) =  | 
|
118  | 
if (c = judgment_name thy handle TERM _ => false) then t else tm  | 
|
| 11897 | 119  | 
| drop_judgment _ tm = tm;  | 
120  | 
||
| 16449 | 121  | 
fun fixed_judgment thy x =  | 
| 11897 | 122  | 
let (*be robust wrt. low-level errors*)  | 
| 16449 | 123  | 
val c = judgment_name thy;  | 
| 24848 | 124  | 
val aT = TFree (Name.aT, []);  | 
| 11897 | 125  | 
val T =  | 
| 18939 | 126  | 
the_default (aT --> propT) (Sign.const_type thy c)  | 
| 11897 | 127  | 
|> Term.map_type_tvar (fn ((x, _), S) => TFree (x, S));  | 
128  | 
val U = Term.domain_type T handle Match => aT;  | 
|
129  | 
in Const (c, T) $ Free (x, U) end;  | 
|
130  | 
||
| 18121 | 131  | 
fun ensure_propT thy t =  | 
| 13376 | 132  | 
let val T = Term.fastype_of t  | 
| 16449 | 133  | 
in if T = propT then t else Const (judgment_name thy, T --> propT) $ t end;  | 
| 13376 | 134  | 
|
| 23586 | 135  | 
fun dest_judgment ct =  | 
136  | 
if is_judgment (Thm.theory_of_cterm ct) (Thm.term_of ct)  | 
|
137  | 
then Thm.dest_arg ct  | 
|
138  | 
  else raise CTERM ("dest_judgment", [ct]);
 | 
|
139  | 
||
| 
23566
 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 
wenzelm 
parents: 
23540 
diff
changeset
 | 
140  | 
fun judgment_conv cv ct =  | 
| 
 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 
wenzelm 
parents: 
23540 
diff
changeset
 | 
141  | 
if is_judgment (Thm.theory_of_cterm ct) (Thm.term_of ct)  | 
| 
 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 
wenzelm 
parents: 
23540 
diff
changeset
 | 
142  | 
then Conv.arg_conv cv ct  | 
| 
 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 
wenzelm 
parents: 
23540 
diff
changeset
 | 
143  | 
  else raise CTERM ("judgment_conv", [ct]);
 | 
| 
 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 
wenzelm 
parents: 
23540 
diff
changeset
 | 
144  | 
|
| 11897 | 145  | 
|
| 19261 | 146  | 
(* elimination rules *)  | 
147  | 
||
148  | 
fun is_elim rule =  | 
|
149  | 
let  | 
|
150  | 
val thy = Thm.theory_of_thm rule;  | 
|
151  | 
val concl = Thm.concl_of rule;  | 
|
152  | 
in  | 
|
153  | 
Term.is_Var (drop_judgment thy concl) andalso  | 
|
154  | 
exists (fn prem => concl aconv Logic.strip_assums_concl prem) (Thm.prems_of rule)  | 
|
155  | 
end;  | 
|
156  | 
||
157  | 
||
| 11897 | 158  | 
|
159  | 
(** treatment of meta-level connectives **)  | 
|
160  | 
||
161  | 
(* maintain rules *)  | 
|
162  | 
||
| 25497 | 163  | 
val get_atomize = #1 o #atomize_rulify o get_data;  | 
164  | 
val get_rulify = #2 o #atomize_rulify o get_data;  | 
|
| 11897 | 165  | 
|
| 25497 | 166  | 
fun add_atomize th = map_data (fn (base_sort, judgment, (atomize, rulify)) =>  | 
167  | 
(base_sort, judgment, (Thm.add_thm th atomize, rulify)));  | 
|
168  | 
||
169  | 
fun add_rulify th = map_data (fn (base_sort, judgment, (atomize, rulify)) =>  | 
|
170  | 
(base_sort, judgment, (atomize, Thm.add_thm th rulify)));  | 
|
| 11897 | 171  | 
|
| 22846 | 172  | 
val declare_atomize = Thm.declaration_attribute (fn th => Context.mapping (add_atomize th) I);  | 
173  | 
val declare_rulify = Thm.declaration_attribute (fn th => Context.mapping (add_rulify th) I);  | 
|
174  | 
||
| 28620 | 175  | 
val _ = Context.>> (Context.map_theory (fold add_rulify Drule.norm_hhf_eqs));  | 
| 11897 | 176  | 
|
177  | 
||
178  | 
(* atomize *)  | 
|
179  | 
||
| 16449 | 180  | 
fun atomize_term thy =  | 
181  | 
drop_judgment thy o MetaSimplifier.rewrite_term thy (get_atomize thy) [];  | 
|
| 12729 | 182  | 
|
| 
23602
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
183  | 
fun atomize ct =  | 
| 
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
184  | 
MetaSimplifier.rewrite true (get_atomize (Thm.theory_of_cterm ct)) ct;  | 
| 14743 | 185  | 
|
| 
23602
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
186  | 
fun atomize_prems ct =  | 
| 
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
187  | 
if Logic.has_meta_prems (Thm.term_of ct) then  | 
| 26568 | 188  | 
Conv.params_conv ~1 (K (Conv.prems_conv ~1 atomize))  | 
| 24832 | 189  | 
(ProofContext.init (Thm.theory_of_cterm ct)) ct  | 
| 
23602
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
190  | 
else Conv.all_conv ct;  | 
| 11897 | 191  | 
|
| 
23602
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
192  | 
val atomize_prems_tac = CONVERSION atomize_prems;  | 
| 
 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 
wenzelm 
parents: 
23586 
diff
changeset
 | 
193  | 
val full_atomize_tac = CONVERSION atomize;  | 
| 11897 | 194  | 
|
195  | 
||
196  | 
(* rulify *)  | 
|
197  | 
||
| 18807 | 198  | 
fun rulify_term thy = MetaSimplifier.rewrite_term thy (get_rulify thy) [];  | 
| 23540 | 199  | 
fun rulify_tac i st = MetaSimplifier.rewrite_goal_tac (get_rulify (Thm.theory_of_thm st)) i st;  | 
| 18807 | 200  | 
|
| 11897 | 201  | 
fun gen_rulify full thm =  | 
| 21708 | 202  | 
MetaSimplifier.simplify full (get_rulify (Thm.theory_of_thm thm)) thm  | 
| 20912 | 203  | 
|> Drule.gen_all |> Thm.strip_shyps |> Drule.zero_var_indexes;  | 
| 11897 | 204  | 
|
205  | 
val rulify = gen_rulify true;  | 
|
206  | 
val rulify_no_asm = gen_rulify false;  | 
|
207  | 
||
| 18728 | 208  | 
fun rule_format x = Thm.rule_attribute (fn _ => rulify) x;  | 
209  | 
fun rule_format_no_asm x = Thm.rule_attribute (fn _ => rulify_no_asm) x;  | 
|
| 11897 | 210  | 
|
211  | 
end;  |