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