| author | wenzelm | 
| Wed, 21 Sep 2011 22:18:17 +0200 | |
| changeset 45028 | d608dd8cd409 | 
| parent 42375 | 774df7c59508 | 
| child 45375 | 7fe19930dfc9 | 
| 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: 
29606diff
changeset | 11 | val add_judgment: binding * typ * mixfix -> theory -> theory | 
| 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
29606diff
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: 
23540diff
changeset | 19 | val judgment_conv: conv -> conv | 
| 41581 
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
 wenzelm parents: 
41493diff
changeset | 20 | val elim_concl: thm -> term option | 
| 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: 
23586diff
changeset | 24 | val atomize: conv | 
| 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
changeset | 25 | val atomize_prems: conv | 
| 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
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 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
36610diff
changeset | 49 | structure Data = 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" | |
| 41493 | 57 | | merge_opt _ data = merge_options data; | 
| 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: 
23602diff
changeset | 63 | (Thm.merge_thms (atomize1, atomize2), Thm.merge_thms (rulify1, rulify2))); | 
| 22846 | 64 | ); | 
| 15801 | 65 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
36610diff
changeset | 66 | fun map_data f = Data.map (fn (Data {base_sort, judgment, atomize_rulify}) =>
 | 
| 25497 | 67 | make_data (f (base_sort, judgment, atomize_rulify))); | 
| 68 | ||
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
36610diff
changeset | 69 | fun get_data thy = Data.get thy |> (fn Data args => args); | 
| 25497 | 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: 
29606diff
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: 
29606diff
changeset | 91 | |> add_consts [(b, T, mx)] | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 92 | |> (fn thy' => Theory.add_deps_global 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: 
29606diff
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: 
29606diff
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: 
23540diff
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: 
23540diff
changeset | 140 | fun judgment_conv cv ct = | 
| 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 wenzelm parents: 
23540diff
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: 
23540diff
changeset | 142 | then Conv.arg_conv cv ct | 
| 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 wenzelm parents: 
23540diff
changeset | 143 |   else raise CTERM ("judgment_conv", [ct]);
 | 
| 
b65692d4adcd
replaced HOLogic.Trueprop_conv by ObjectLogic.judgment_conv;
 wenzelm parents: 
23540diff
changeset | 144 | |
| 11897 | 145 | |
| 19261 | 146 | (* elimination rules *) | 
| 147 | ||
| 41581 
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
 wenzelm parents: 
41493diff
changeset | 148 | fun elim_concl rule = | 
| 19261 | 149 | let | 
| 150 | val thy = Thm.theory_of_thm rule; | |
| 151 | val concl = Thm.concl_of rule; | |
| 41581 
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
 wenzelm parents: 
41493diff
changeset | 152 | val C = drop_judgment thy concl; | 
| 19261 | 153 | in | 
| 41581 
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
 wenzelm parents: 
41493diff
changeset | 154 | if Term.is_Var C andalso | 
| 19261 | 155 | exists (fn prem => concl aconv Logic.strip_assums_concl prem) (Thm.prems_of rule) | 
| 41581 
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
 wenzelm parents: 
41493diff
changeset | 156 | then SOME C else NONE | 
| 19261 | 157 | end; | 
| 158 | ||
| 159 | ||
| 11897 | 160 | |
| 161 | (** treatment of meta-level connectives **) | |
| 162 | ||
| 163 | (* maintain rules *) | |
| 164 | ||
| 25497 | 165 | val get_atomize = #1 o #atomize_rulify o get_data; | 
| 166 | val get_rulify = #2 o #atomize_rulify o get_data; | |
| 11897 | 167 | |
| 25497 | 168 | fun add_atomize th = map_data (fn (base_sort, judgment, (atomize, rulify)) => | 
| 169 | (base_sort, judgment, (Thm.add_thm th atomize, rulify))); | |
| 170 | ||
| 171 | fun add_rulify th = map_data (fn (base_sort, judgment, (atomize, rulify)) => | |
| 172 | (base_sort, judgment, (atomize, Thm.add_thm th rulify))); | |
| 11897 | 173 | |
| 22846 | 174 | val declare_atomize = Thm.declaration_attribute (fn th => Context.mapping (add_atomize th) I); | 
| 175 | val declare_rulify = Thm.declaration_attribute (fn th => Context.mapping (add_rulify th) I); | |
| 176 | ||
| 28620 | 177 | val _ = Context.>> (Context.map_theory (fold add_rulify Drule.norm_hhf_eqs)); | 
| 11897 | 178 | |
| 179 | ||
| 180 | (* atomize *) | |
| 181 | ||
| 16449 | 182 | fun atomize_term thy = | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
37216diff
changeset | 183 | drop_judgment thy o Raw_Simplifier.rewrite_term thy (get_atomize thy) []; | 
| 12729 | 184 | |
| 23602 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
changeset | 185 | fun atomize ct = | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
37216diff
changeset | 186 | Raw_Simplifier.rewrite true (get_atomize (Thm.theory_of_cterm ct)) ct; | 
| 14743 | 187 | |
| 23602 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
changeset | 188 | fun atomize_prems ct = | 
| 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
changeset | 189 | if Logic.has_meta_prems (Thm.term_of ct) then | 
| 26568 | 190 | Conv.params_conv ~1 (K (Conv.prems_conv ~1 atomize)) | 
| 42360 | 191 | (Proof_Context.init_global (Thm.theory_of_cterm ct)) ct | 
| 23602 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
changeset | 192 | else Conv.all_conv ct; | 
| 11897 | 193 | |
| 23602 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
changeset | 194 | val atomize_prems_tac = CONVERSION atomize_prems; | 
| 
361e9c3a5e3a
tuned interfaces: atomize, atomize_prems, atomize_prems_tac;
 wenzelm parents: 
23586diff
changeset | 195 | val full_atomize_tac = CONVERSION atomize; | 
| 11897 | 196 | |
| 197 | ||
| 198 | (* rulify *) | |
| 199 | ||
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
37216diff
changeset | 200 | fun rulify_term thy = Raw_Simplifier.rewrite_term thy (get_rulify thy) []; | 
| 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
37216diff
changeset | 201 | fun rulify_tac i st = rewrite_goal_tac (get_rulify (Thm.theory_of_thm st)) i st; | 
| 18807 | 202 | |
| 11897 | 203 | fun gen_rulify full thm = | 
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
37216diff
changeset | 204 | Raw_Simplifier.simplify full (get_rulify (Thm.theory_of_thm thm)) thm | 
| 20912 | 205 | |> Drule.gen_all |> Thm.strip_shyps |> Drule.zero_var_indexes; | 
| 11897 | 206 | |
| 207 | val rulify = gen_rulify true; | |
| 208 | val rulify_no_asm = gen_rulify false; | |
| 209 | ||
| 18728 | 210 | fun rule_format x = Thm.rule_attribute (fn _ => rulify) x; | 
| 211 | fun rule_format_no_asm x = Thm.rule_attribute (fn _ => rulify_no_asm) x; | |
| 11897 | 212 | |
| 213 | end; |