| author | wenzelm | 
| Fri, 24 Oct 1997 17:14:02 +0200 | |
| changeset 3992 | 8b87ba92f7a1 | 
| parent 3971 | b19d38604042 | 
| child 3996 | b7548325adc4 | 
| permissions | -rw-r--r-- | 
| 1526 | 1 | (* Title: Pure/theory.ML | 
| 2 | ID: $Id$ | |
| 3 | Author: Lawrence C Paulson and Markus Wenzel | |
| 4 | Copyright 1996 University of Cambridge | |
| 5 | ||
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 6 | Theories. | 
| 1526 | 7 | *) | 
| 8 | ||
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 9 | (*this part made pervasive*) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 10 | signature BASIC_THEORY = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 11 | sig | 
| 1526 | 12 | type theory | 
| 13 | exception THEORY of string * theory list | |
| 14 | val rep_theory : theory -> | |
| 3814 | 15 |     {sign: Sign.sg,
 | 
| 16 | new_axioms: term Symtab.table, | |
| 17 | oracles: ((Sign.sg * exn -> term) * stamp) Symtab.table, | |
| 18 | parents: theory list} | |
| 1526 | 19 | val sign_of : theory -> Sign.sg | 
| 20 | val syn_of : theory -> Syntax.syntax | |
| 21 | val parents_of : theory -> theory list | |
| 22 | val subthy : theory * theory -> bool | |
| 23 | val eq_thy : theory * theory -> bool | |
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 24 | val cert_axm : Sign.sg -> string * term -> string * term | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 25 | val read_axm : Sign.sg -> string * string -> string * term | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 26 | val inferT_axm : Sign.sg -> string * term -> string * term | 
| 3885 | 27 | val merge_theories : string -> theory * theory -> theory | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 28 | end | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 29 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 30 | signature THEORY = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 31 | sig | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 32 | include BASIC_THEORY | 
| 3971 | 33 | val proto_pure : theory | 
| 34 | val pure : theory | |
| 35 | val cpure : theory | |
| 3814 | 36 | val thmK : string | 
| 37 | val oracleK : string | |
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 38 | (*theory extendsion primitives*) | 
| 3956 | 39 | val add_classes : (bclass * xclass list) list -> theory -> theory | 
| 40 | val add_classes_i : (bclass * class list) list -> theory -> theory | |
| 3806 | 41 | val add_classrel : (xclass * xclass) list -> theory -> theory | 
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 42 | val add_classrel_i : (class * class) list -> theory -> theory | 
| 3806 | 43 | val add_defsort : xsort -> theory -> theory | 
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 44 | val add_defsort_i : sort -> theory -> theory | 
| 3956 | 45 | val add_types : (bstring * int * mixfix) list -> theory -> theory | 
| 46 | val add_tyabbrs : (bstring * string list * string * mixfix) list | |
| 1526 | 47 | -> theory -> theory | 
| 3956 | 48 | val add_tyabbrs_i : (bstring * string list * typ * mixfix) list | 
| 1526 | 49 | -> theory -> theory | 
| 3806 | 50 | val add_arities : (xstring * xsort list * xsort) list -> theory -> theory | 
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 51 | val add_arities_i : (string * sort list * sort) list -> theory -> theory | 
| 3956 | 52 | val add_consts : (bstring * string * mixfix) list -> theory -> theory | 
| 53 | val add_consts_i : (bstring * typ * mixfix) list -> theory -> theory | |
| 54 | val add_syntax : (bstring * string * mixfix) list -> theory -> theory | |
| 55 | val add_syntax_i : (bstring * typ * mixfix) list -> theory -> theory | |
| 56 | val add_modesyntax : string * bool -> (bstring * string * mixfix) list -> theory -> theory | |
| 57 | val add_modesyntax_i : string * bool -> (bstring * typ * mixfix) list -> theory -> theory | |
| 1539 | 58 | val add_trfuns : | 
| 3956 | 59 | (bstring * (Syntax.ast list -> Syntax.ast)) list * | 
| 60 | (bstring * (term list -> term)) list * | |
| 61 | (bstring * (term list -> term)) list * | |
| 62 | (bstring * (Syntax.ast list -> Syntax.ast)) list -> theory -> theory | |
| 2385 | 63 | val add_trfunsT : | 
| 3956 | 64 | (bstring * (typ -> term list -> term)) list -> theory -> theory | 
| 2693 | 65 | val add_tokentrfuns: | 
| 66 | (string * string * (string -> string * int)) list -> theory -> theory | |
| 3933 | 67 | val add_trrules : (string * string) Syntax.trrule list -> theory -> theory | 
| 1539 | 68 | val add_trrules_i : Syntax.ast Syntax.trrule list -> theory -> theory | 
| 3956 | 69 | val add_axioms : (bstring * string) list -> theory -> theory | 
| 70 | val add_axioms_i : (bstring * term) list -> theory -> theory | |
| 71 | val add_oracle : bstring * (Sign.sg * exn -> term) -> theory -> theory | |
| 72 | val add_defs : (bstring * string) list -> theory -> theory | |
| 73 | val add_defs_i : (bstring * term) list -> theory -> theory | |
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 74 | val add_path : string -> theory -> theory | 
| 3814 | 75 | val add_space : string * string list -> theory -> theory | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 76 | val add_name : string -> theory -> theory | 
| 3878 | 77 | val init_data : string * exn * (exn -> exn) * (exn * exn -> exn) * | 
| 78 | (string -> exn -> unit) -> theory -> theory | |
| 3865 | 79 | val get_data : theory -> string -> exn | 
| 80 | val put_data : string * exn -> theory -> theory | |
| 3971 | 81 | val prep_ext : theory -> theory | 
| 3967 
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
 wenzelm parents: 
3956diff
changeset | 82 | val prep_ext_merge : theory list -> theory | 
| 1526 | 83 | end; | 
| 84 | ||
| 85 | ||
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 86 | structure Theory: THEORY = | 
| 1526 | 87 | struct | 
| 2206 | 88 | |
| 89 | (** datatype theory **) | |
| 1526 | 90 | |
| 91 | datatype theory = | |
| 92 |   Theory of {
 | |
| 93 | sign: Sign.sg, | |
| 94 | new_axioms: term Symtab.table, | |
| 3814 | 95 | oracles: ((Sign.sg * exn -> term) * stamp) Symtab.table, | 
| 1526 | 96 | parents: theory list}; | 
| 97 | ||
| 98 | fun rep_theory (Theory args) = args; | |
| 99 | ||
| 100 | (*errors involving theories*) | |
| 101 | exception THEORY of string * theory list; | |
| 102 | ||
| 103 | ||
| 104 | val sign_of = #sign o rep_theory; | |
| 105 | val syn_of = #syn o Sign.rep_sg o sign_of; | |
| 106 | ||
| 107 | (*return the immediate ancestors*) | |
| 108 | val parents_of = #parents o rep_theory; | |
| 109 | ||
| 110 | ||
| 111 | (*compare theories*) | |
| 112 | val subthy = Sign.subsig o pairself sign_of; | |
| 113 | val eq_thy = Sign.eq_sg o pairself sign_of; | |
| 114 | ||
| 115 | ||
| 116 | (* the Pure theories *) | |
| 117 | ||
| 3878 | 118 | fun make_thy sign axms oras parents = | 
| 119 |   Theory {sign = sign, new_axioms = axms, oracles = oras, parents = parents};
 | |
| 1526 | 120 | |
| 3971 | 121 | val proto_pure = make_thy Sign.proto_pure Symtab.null Symtab.null []; | 
| 122 | val pure = make_thy Sign.pure Symtab.null Symtab.null [proto_pure]; | |
| 123 | val cpure = make_thy Sign.cpure Symtab.null Symtab.null [proto_pure]; | |
| 1526 | 124 | |
| 125 | ||
| 126 | ||
| 127 | (** extend theory **) | |
| 128 | ||
| 3814 | 129 | (*name space kinds*) | 
| 130 | val thmK = "thm"; | |
| 131 | val oracleK = "oracle"; | |
| 132 | ||
| 133 | ||
| 134 | (* extend logical part of a theory *) | |
| 135 | ||
| 1526 | 136 | fun err_dup_axms names = | 
| 137 |   error ("Duplicate axiom name(s) " ^ commas_quote names);
 | |
| 138 | ||
| 3814 | 139 | fun err_dup_oras names = | 
| 140 |   error ("Duplicate oracles " ^ commas_quote names);
 | |
| 141 | ||
| 142 | ||
| 143 | fun ext_thy thy sign' new_axms new_oras = | |
| 1526 | 144 | let | 
| 3814 | 145 |     val Theory {sign, new_axioms, oracles, parents} = thy;
 | 
| 1526 | 146 | val draft = Sign.is_draft sign; | 
| 3814 | 147 | val new_axioms' = | 
| 1526 | 148 | Symtab.extend_new (if draft then new_axioms else Symtab.null, new_axms) | 
| 149 | handle Symtab.DUPS names => err_dup_axms names; | |
| 3814 | 150 | val oracles' = | 
| 151 | Symtab.extend_new (oracles, new_oras) | |
| 152 | handle Symtab.DUPS names => err_dup_oras names; | |
| 153 | val parents' = if draft then parents else [thy]; | |
| 1526 | 154 | in | 
| 3878 | 155 | make_thy sign' new_axioms' oracles' parents' | 
| 1526 | 156 | end; | 
| 157 | ||
| 158 | ||
| 159 | (* extend signature of a theory *) | |
| 160 | ||
| 161 | fun ext_sg extfun decls (thy as Theory {sign, ...}) =
 | |
| 3814 | 162 | ext_thy thy (extfun decls sign) [] []; | 
| 1526 | 163 | |
| 2206 | 164 | val add_classes = ext_sg Sign.add_classes; | 
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 165 | val add_classes_i = ext_sg Sign.add_classes_i; | 
| 2206 | 166 | val add_classrel = ext_sg Sign.add_classrel; | 
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 167 | val add_classrel_i = ext_sg Sign.add_classrel_i; | 
| 2206 | 168 | val add_defsort = ext_sg Sign.add_defsort; | 
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 169 | val add_defsort_i = ext_sg Sign.add_defsort_i; | 
| 2206 | 170 | val add_types = ext_sg Sign.add_types; | 
| 171 | val add_tyabbrs = ext_sg Sign.add_tyabbrs; | |
| 172 | val add_tyabbrs_i = ext_sg Sign.add_tyabbrs_i; | |
| 173 | val add_arities = ext_sg Sign.add_arities; | |
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 174 | val add_arities_i = ext_sg Sign.add_arities_i; | 
| 2206 | 175 | val add_consts = ext_sg Sign.add_consts; | 
| 176 | val add_consts_i = ext_sg Sign.add_consts_i; | |
| 177 | val add_syntax = ext_sg Sign.add_syntax; | |
| 178 | val add_syntax_i = ext_sg Sign.add_syntax_i; | |
| 179 | val add_modesyntax = curry (ext_sg Sign.add_modesyntax); | |
| 180 | val add_modesyntax_i = curry (ext_sg Sign.add_modesyntax_i); | |
| 181 | val add_trfuns = ext_sg Sign.add_trfuns; | |
| 2385 | 182 | val add_trfunsT = ext_sg Sign.add_trfunsT; | 
| 2693 | 183 | val add_tokentrfuns = ext_sg Sign.add_tokentrfuns; | 
| 2206 | 184 | val add_trrules = ext_sg Sign.add_trrules; | 
| 185 | val add_trrules_i = ext_sg Sign.add_trrules_i; | |
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 186 | val add_path = ext_sg Sign.add_path; | 
| 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 187 | val add_space = ext_sg Sign.add_space; | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 188 | val add_name = ext_sg Sign.add_name; | 
| 3971 | 189 | val prep_ext = ext_sg (K Sign.prep_ext) (); | 
| 1526 | 190 | |
| 3814 | 191 | |
| 192 | (** add axioms **) | |
| 193 | ||
| 1526 | 194 | (* prepare axioms *) | 
| 195 | ||
| 196 | fun err_in_axm name = | |
| 197 |   error ("The error(s) above occurred in axiom " ^ quote name);
 | |
| 198 | ||
| 199 | fun no_vars tm = | |
| 200 | if null (term_vars tm) andalso null (term_tvars tm) then tm | |
| 201 | else error "Illegal schematic variable(s) in term"; | |
| 202 | ||
| 203 | fun cert_axm sg (name, raw_tm) = | |
| 204 | let | |
| 205 | val (t, T, _) = Sign.certify_term sg raw_tm | |
| 2979 | 206 | handle TYPE (msg, _, _) => error msg | 
| 1526 | 207 | | TERM (msg, _) => error msg; | 
| 208 | in | |
| 209 | assert (T = propT) "Term not of type prop"; | |
| 210 | (name, no_vars t) | |
| 211 | end | |
| 212 | handle ERROR => err_in_axm name; | |
| 213 | ||
| 214 | (*Some duplication of code with read_def_cterm*) | |
| 215 | fun read_axm sg (name, str) = | |
| 3814 | 216 | let | 
| 217 | val ts = Syntax.read (#syn (Sign.rep_sg sg)) propT str; | |
| 218 | val (_, t, _) = | |
| 219 | Sign.infer_types sg (K None) (K None) [] true (ts, propT); | |
| 1960 
ae390b599213
Improved error handling: if there are syntax or type-checking
 paulson parents: 
1539diff
changeset | 220 | in cert_axm sg (name,t) end | 
| 
ae390b599213
Improved error handling: if there are syntax or type-checking
 paulson parents: 
1539diff
changeset | 221 | handle ERROR => err_in_axm name; | 
| 1526 | 222 | |
| 223 | fun inferT_axm sg (name, pre_tm) = | |
| 3814 | 224 | let | 
| 225 | val (_, t, _) = | |
| 226 | Sign.infer_types sg (K None) (K None) [] true ([pre_tm], propT); | |
| 227 | in (name, no_vars t) end | |
| 1526 | 228 | handle ERROR => err_in_axm name; | 
| 229 | ||
| 230 | ||
| 231 | (* extend axioms of a theory *) | |
| 232 | ||
| 3814 | 233 | fun ext_axms prep_axm raw_axms (thy as Theory {sign, ...}) =
 | 
| 1526 | 234 | let | 
| 3814 | 235 | val raw_axms' = map (apfst (Sign.full_name sign)) raw_axms; | 
| 236 | val axioms = | |
| 237 | map (apsnd (Term.compress_term o Logic.varify) o prep_axm sign) raw_axms'; | |
| 238 | val sign' = Sign.add_space (thmK, map fst axioms) sign; | |
| 1526 | 239 | in | 
| 3814 | 240 | ext_thy thy sign' axioms [] | 
| 1526 | 241 | end; | 
| 242 | ||
| 243 | val add_axioms = ext_axms read_axm; | |
| 244 | val add_axioms_i = ext_axms cert_axm; | |
| 245 | ||
| 246 | ||
| 3814 | 247 | (* add oracle **) | 
| 248 | ||
| 249 | fun add_oracle (raw_name, oracle) (thy as Theory {sign, ...}) =
 | |
| 250 | let | |
| 251 | val name = Sign.full_name sign raw_name; | |
| 252 | val sign' = Sign.add_space (oracleK, [name]) sign; | |
| 253 | in | |
| 254 | ext_thy thy sign' [] [(name, (oracle, stamp ()))] | |
| 255 | end; | |
| 256 | ||
| 257 | ||
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 258 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 259 | (** add constant definitions **) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 260 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 261 | (* all_axioms_of *) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 262 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 263 | (*results may contain duplicates!*) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 264 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 265 | fun ancestry_of thy = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 266 | thy :: List.concat (map ancestry_of (parents_of thy)); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 267 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 268 | val all_axioms_of = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 269 | List.concat o map (Symtab.dest o #new_axioms o rep_theory) o ancestry_of; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 270 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 271 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 272 | (* clash_types, clash_consts *) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 273 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 274 | (*check if types have common instance (ignoring sorts)*) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 275 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 276 | fun clash_types ty1 ty2 = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 277 | let | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 278 | val ty1' = Type.varifyT ty1; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 279 | val ty2' = incr_tvar (maxidx_of_typ ty1' + 1) (Type.varifyT ty2); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 280 | in | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 281 | Type.raw_unify (ty1', ty2') | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 282 | end; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 283 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 284 | fun clash_consts (c1, ty1) (c2, ty2) = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 285 | c1 = c2 andalso clash_types ty1 ty2; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 286 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 287 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 288 | (* clash_defns *) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 289 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 290 | fun clash_defn c_ty (name, tm) = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 291 | let val (c, ty') = dest_Const (head_of (fst (Logic.dest_equals tm))) in | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 292 | if clash_consts c_ty (c, ty') then Some (name, ty') else None | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 293 | end handle TERM _ => None; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 294 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 295 | fun clash_defns c_ty axms = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 296 | distinct (mapfilter (clash_defn c_ty) axms); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 297 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 298 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 299 | (* dest_defn *) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 300 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 301 | fun dest_defn tm = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 302 | let | 
| 3787 
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
 wenzelm parents: 
3767diff
changeset | 303 | fun err msg = raise TERM (msg, [tm]); | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 304 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 305 | val (lhs, rhs) = Logic.dest_equals (Logic.strip_imp_concl tm) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 306 | handle TERM _ => err "Not a meta-equality (==)"; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 307 | val (head, args) = strip_comb lhs; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 308 | val (c, ty) = dest_Const head | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 309 | handle TERM _ => err "Head of lhs not a constant"; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 310 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 311 | fun occs_const (Const c_ty') = (c_ty' = (c, ty)) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 312 | | occs_const (Abs (_, _, t)) = occs_const t | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 313 | | occs_const (t $ u) = occs_const t orelse occs_const u | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 314 | | occs_const _ = false; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 315 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 316 | val show_frees = commas_quote o map (fst o dest_Free); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 317 | val show_tfrees = commas_quote o map fst; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 318 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 319 | val lhs_dups = duplicates args; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 320 | val rhs_extras = gen_rems (op =) (term_frees rhs, args); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 321 | val rhs_extrasT = gen_rems (op =) (term_tfrees rhs, typ_tfrees ty); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 322 | in | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 323 | if not (forall is_Free args) then | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 324 | err "Arguments (on lhs) must be variables" | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 325 | else if not (null lhs_dups) then | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 326 |       err ("Duplicate variables on lhs: " ^ show_frees lhs_dups)
 | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 327 | else if not (null rhs_extras) then | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 328 |       err ("Extra variables on rhs: " ^ show_frees rhs_extras)
 | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 329 | else if not (null rhs_extrasT) then | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 330 |       err ("Extra type variables on rhs: " ^ show_tfrees rhs_extrasT)
 | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 331 | else if occs_const rhs then | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 332 |       err ("Constant to be defined occurs on rhs")
 | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 333 | else (c, ty) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 334 | end; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 335 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 336 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 337 | (* check_defn *) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 338 | |
| 3814 | 339 | fun err_in_defn sg name msg = | 
| 340 |   (writeln msg; error ("The error(s) above occurred in definition " ^
 | |
| 341 | quote (Sign.full_name sg name))); | |
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 342 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 343 | fun check_defn sign (axms, (name, tm)) = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 344 | let | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 345 | fun show_const (c, ty) = quote (Pretty.string_of (Pretty.block | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 346 | [Pretty.str (c ^ " ::"), Pretty.brk 1, Sign.pretty_typ sign ty])); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 347 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 348 | fun show_defn c (dfn, ty') = show_const (c, ty') ^ " in " ^ dfn; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 349 | fun show_defns c = cat_lines o map (show_defn c); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 350 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 351 | val (c, ty) = dest_defn tm | 
| 3814 | 352 | handle TERM (msg, _) => err_in_defn sign name msg; | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 353 | val defns = clash_defns (c, ty) axms; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 354 | in | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 355 | if not (null defns) then | 
| 3814 | 356 |       err_in_defn sign name ("Definition of " ^ show_const (c, ty) ^
 | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 357 | "\nclashes with " ^ show_defns c defns) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 358 | else (name, tm) :: axms | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 359 | end; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 360 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 361 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 362 | (* add_defs *) | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 363 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 364 | fun ext_defns prep_axm raw_axms thy = | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 365 | let | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 366 | val axms = map (prep_axm (sign_of thy)) raw_axms; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 367 | val all_axms = all_axioms_of thy; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 368 | in | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 369 | foldl (check_defn (sign_of thy)) (all_axms, axms); | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 370 | add_axioms_i axms thy | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 371 | end; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 372 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 373 | val add_defs_i = ext_defns cert_axm; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 374 | val add_defs = ext_defns read_axm; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 375 | |
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 376 | |
| 3878 | 377 | |
| 3865 | 378 | (** additional theory data **) | 
| 379 | ||
| 380 | val init_data = ext_sg Sign.init_data; | |
| 381 | val get_data = Sign.get_data o sign_of; | |
| 382 | val put_data = ext_sg Sign.put_data; | |
| 383 | ||
| 384 | ||
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 385 | |
| 1526 | 386 | (** merge theories **) | 
| 387 | ||
| 3878 | 388 | (*merge list of theories from left to right, preparing extend*) | 
| 3967 
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
 wenzelm parents: 
3956diff
changeset | 389 | fun prep_ext_merge thys = | 
| 1526 | 390 | let | 
| 391 | fun is_union thy = forall (fn t => subthy (t, thy)) thys; | |
| 392 | val is_draft = Sign.is_draft o sign_of; | |
| 3971 | 393 | val begin_ext = Sign.add_path "/" o Sign.prep_ext; | 
| 1526 | 394 | |
| 395 |     fun add_sign (sg, Theory {sign, ...}) =
 | |
| 3967 
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
 wenzelm parents: 
3956diff
changeset | 396 | Sign.merge (sg, sign) handle TERM (msg, _) => error msg; | 
| 3814 | 397 | |
| 398 |     fun oracles_of (Theory {oracles, ...}) = Symtab.dest oracles;
 | |
| 399 | fun eq_ora ((_, (_, s1: stamp)), (_, (_, s2))) = s1 = s2; | |
| 1526 | 400 | in | 
| 3878 | 401 | if exists is_draft thys then | 
| 3967 
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
 wenzelm parents: 
3956diff
changeset | 402 |       raise THEORY ("Attempt to merge draft theories", thys)
 | 
| 3878 | 403 | else | 
| 404 | (case find_first is_union thys of | |
| 405 |         Some (Theory {sign, oracles, new_axioms = _, parents = _}) =>
 | |
| 3971 | 406 | make_thy (begin_ext sign) Symtab.null oracles thys | 
| 3878 | 407 | | None => | 
| 408 | make_thy | |
| 3971 | 409 | (begin_ext (foldl add_sign (Sign.proto_pure, thys))) | 
| 3878 | 410 | Symtab.null | 
| 411 | (Symtab.make (gen_distinct eq_ora (flat (map oracles_of thys))) | |
| 412 | handle Symtab.DUPS names => err_dup_oras names) | |
| 413 | thys) | |
| 1526 | 414 | end; | 
| 415 | ||
| 416 | ||
| 3885 | 417 | fun merge_theories name (thy1, thy2) = | 
| 3967 
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
 wenzelm parents: 
3956diff
changeset | 418 | prep_ext_merge [thy1, thy2] | 
| 3885 | 419 | |> add_name name; | 
| 420 | ||
| 421 | ||
| 1526 | 422 | end; | 
| 423 | ||
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 424 | structure BasicTheory: BASIC_THEORY = Theory; | 
| 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 425 | open BasicTheory; |