author | berghofe |
Thu, 04 Sep 2003 16:04:15 +0200 | |
changeset 14184 | 2e0e02d68cbb |
parent 13646 | 46ed3d042ba5 |
child 14204 | 2fa6ecb87d47 |
permissions | -rw-r--r-- |
1526 | 1 |
(* Title: Pure/theory.ML |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson and Markus Wenzel |
|
12785 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
1526 | 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, |
9320 | 15 |
const_deps: unit Graph.T, |
3996 | 16 |
axioms: term Symtab.table, |
4996 | 17 |
oracles: ((Sign.sg * Object.T -> term) * stamp) Symtab.table, |
4019 | 18 |
parents: theory list, |
19 |
ancestors: theory list} |
|
3996 | 20 |
val sign_of: theory -> Sign.sg |
6188 | 21 |
val is_draft: theory -> bool |
3996 | 22 |
val syn_of: theory -> Syntax.syntax |
23 |
val parents_of: theory -> theory list |
|
4019 | 24 |
val ancestors_of: theory -> theory list |
3996 | 25 |
val subthy: theory * theory -> bool |
26 |
val eq_thy: theory * theory -> bool |
|
27 |
val cert_axm: Sign.sg -> string * term -> string * term |
|
6311 | 28 |
val read_def_axm: Sign.sg * (indexname -> typ option) * (indexname -> sort option) -> |
29 |
string list -> string * string -> string * term |
|
3996 | 30 |
val read_axm: Sign.sg -> string * string -> string * term |
31 |
val inferT_axm: Sign.sg -> string * term -> string * term |
|
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 |
|
8897 | 44 |
val add_defsort: string -> theory -> theory |
3996 | 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 |
8897 | 52 |
val add_arities: (xstring * string list * string) list -> theory -> theory |
3996 | 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: |
6311 | 68 |
(string * string * (string -> string * real)) list -> theory -> theory |
69 |
val add_mode_tokentrfuns: string -> (string * (string -> string * real)) list |
|
70 |
-> theory -> theory |
|
4617 | 71 |
val add_trrules: (xstring * string) Syntax.trrule list -> theory -> theory |
3996 | 72 |
val add_trrules_i: Syntax.ast Syntax.trrule list -> theory -> theory |
73 |
val add_axioms: (bstring * string) list -> theory -> theory |
|
74 |
val add_axioms_i: (bstring * term) list -> theory -> theory |
|
4996 | 75 |
val add_oracle: bstring * (Sign.sg * Object.T -> term) -> theory -> theory |
9320 | 76 |
val add_defs: bool -> (bstring * string) list -> theory -> theory |
77 |
val add_defs_i: bool -> (bstring * term) list -> theory -> theory |
|
3996 | 78 |
val add_path: string -> theory -> theory |
4846 | 79 |
val parent_path: theory -> theory |
80 |
val root_path: theory -> theory |
|
11501 | 81 |
val absolute_path: theory -> theory |
12588 | 82 |
val hide_space: bool -> string * xstring list -> theory -> theory |
83 |
val hide_space_i: bool -> string * string list -> theory -> theory |
|
84 |
val hide_classes: bool -> string list -> theory -> theory |
|
85 |
val hide_types: bool -> string list -> theory -> theory |
|
86 |
val hide_consts: bool -> string list -> theory -> theory |
|
3996 | 87 |
val add_name: string -> theory -> theory |
5862 | 88 |
val copy: theory -> theory |
6661 | 89 |
val prep_ext: theory -> theory |
3996 | 90 |
val prep_ext_merge: theory list -> theory |
4970 | 91 |
val requires: theory -> string -> string -> unit |
6369 | 92 |
val assert_super: theory -> theory -> theory |
3996 | 93 |
val pre_pure: theory |
1526 | 94 |
end; |
95 |
||
6188 | 96 |
signature PRIVATE_THEORY = |
5642 | 97 |
sig |
98 |
include THEORY |
|
6546 | 99 |
val init_data: Object.kind -> (Object.T * (Object.T -> Object.T) * (Object.T -> Object.T) * |
12311 | 100 |
(Object.T * Object.T -> Object.T) * (Sign.sg -> Object.T -> unit)) -> theory -> theory |
5642 | 101 |
val print_data: Object.kind -> theory -> unit |
102 |
val get_data: Object.kind -> (Object.T -> 'a) -> theory -> 'a |
|
103 |
val put_data: Object.kind -> ('a -> Object.T) -> 'a -> theory -> theory |
|
104 |
end; |
|
1526 | 105 |
|
5642 | 106 |
|
6188 | 107 |
structure Theory: PRIVATE_THEORY = |
1526 | 108 |
struct |
2206 | 109 |
|
3996 | 110 |
|
2206 | 111 |
(** datatype theory **) |
1526 | 112 |
|
9320 | 113 |
(*Note: dependencies are only tracked for non-overloaded constant definitions*) |
114 |
||
1526 | 115 |
datatype theory = |
116 |
Theory of { |
|
117 |
sign: Sign.sg, |
|
9320 | 118 |
const_deps: unit Graph.T, |
3996 | 119 |
axioms: term Symtab.table, |
4996 | 120 |
oracles: ((Sign.sg * Object.T -> term) * stamp) Symtab.table, |
4019 | 121 |
parents: theory list, |
122 |
ancestors: theory list}; |
|
1526 | 123 |
|
9320 | 124 |
fun make_theory sign const_deps axioms oracles parents ancestors = |
125 |
Theory {sign = sign, const_deps = const_deps, axioms = axioms, oracles = oracles, |
|
4019 | 126 |
parents = parents, ancestors = ancestors}; |
3996 | 127 |
|
1526 | 128 |
fun rep_theory (Theory args) = args; |
129 |
||
3996 | 130 |
val sign_of = #sign o rep_theory; |
6188 | 131 |
val is_draft = Sign.is_draft o sign_of; |
3996 | 132 |
val syn_of = #syn o Sign.rep_sg o sign_of; |
133 |
val parents_of = #parents o rep_theory; |
|
4019 | 134 |
val ancestors_of = #ancestors o rep_theory; |
3996 | 135 |
|
1526 | 136 |
(*errors involving theories*) |
137 |
exception THEORY of string * theory list; |
|
138 |
||
139 |
(*compare theories*) |
|
140 |
val subthy = Sign.subsig o pairself sign_of; |
|
141 |
val eq_thy = Sign.eq_sg o pairself sign_of; |
|
142 |
||
6369 | 143 |
(*check for some theory*) |
4970 | 144 |
fun requires thy name what = |
10930 | 145 |
if Sign.exists_stamp name (sign_of thy) then () |
4846 | 146 |
else error ("Require theory " ^ quote name ^ " as an ancestor for " ^ what); |
1526 | 147 |
|
6369 | 148 |
fun assert_super thy1 thy2 = |
149 |
if subthy (thy1, thy2) then thy2 |
|
150 |
else raise THEORY ("Not a super theory", [thy1, thy2]); |
|
151 |
||
4846 | 152 |
(*partial Pure theory*) |
9282
0181ac100520
Defs are now checked for circularity (if not overloaded).
nipkow
parents:
9280
diff
changeset
|
153 |
val pre_pure = |
9320 | 154 |
make_theory Sign.pre_pure Graph.empty Symtab.empty Symtab.empty [] []; |
1526 | 155 |
|
156 |
||
157 |
||
158 |
(** extend theory **) |
|
159 |
||
8725 | 160 |
(*name spaces*) |
3996 | 161 |
val axiomK = "axiom"; |
3814 | 162 |
val oracleK = "oracle"; |
163 |
||
164 |
||
165 |
(* extend logical part of a theory *) |
|
166 |
||
1526 | 167 |
fun err_dup_axms names = |
10494 | 168 |
error ("Duplicate axiom name(s): " ^ commas_quote names); |
1526 | 169 |
|
3814 | 170 |
fun err_dup_oras names = |
10494 | 171 |
error ("Duplicate oracles: " ^ commas_quote names); |
3814 | 172 |
|
9320 | 173 |
fun ext_theory thy ext_sg ext_deps new_axms new_oras = |
1526 | 174 |
let |
9282
0181ac100520
Defs are now checked for circularity (if not overloaded).
nipkow
parents:
9280
diff
changeset
|
175 |
val Theory {sign, const_deps, axioms, oracles, parents, ancestors} = thy; |
1526 | 176 |
val draft = Sign.is_draft sign; |
3996 | 177 |
val axioms' = |
4488 | 178 |
Symtab.extend (if draft then axioms else Symtab.empty, new_axms) |
1526 | 179 |
handle Symtab.DUPS names => err_dup_axms names; |
3814 | 180 |
val oracles' = |
4488 | 181 |
Symtab.extend (oracles, new_oras) |
3814 | 182 |
handle Symtab.DUPS names => err_dup_oras names; |
4019 | 183 |
val (parents', ancestors') = |
184 |
if draft then (parents, ancestors) else ([thy], thy :: ancestors); |
|
1526 | 185 |
in |
9320 | 186 |
make_theory (ext_sg sign) (ext_deps const_deps) axioms' oracles' parents' ancestors' |
1526 | 187 |
end; |
188 |
||
189 |
||
190 |
(* extend signature of a theory *) |
|
191 |
||
9320 | 192 |
fun ext_sign extfun decls thy = ext_theory thy (extfun decls) I [] []; |
1526 | 193 |
|
4996 | 194 |
val add_classes = ext_sign Sign.add_classes; |
195 |
val add_classes_i = ext_sign Sign.add_classes_i; |
|
196 |
val add_classrel = ext_sign Sign.add_classrel; |
|
197 |
val add_classrel_i = ext_sign Sign.add_classrel_i; |
|
198 |
val add_defsort = ext_sign Sign.add_defsort; |
|
199 |
val add_defsort_i = ext_sign Sign.add_defsort_i; |
|
200 |
val add_types = ext_sign Sign.add_types; |
|
201 |
val add_nonterminals = ext_sign Sign.add_nonterminals; |
|
202 |
val add_tyabbrs = ext_sign Sign.add_tyabbrs; |
|
203 |
val add_tyabbrs_i = ext_sign Sign.add_tyabbrs_i; |
|
204 |
val add_arities = ext_sign Sign.add_arities; |
|
205 |
val add_arities_i = ext_sign Sign.add_arities_i; |
|
206 |
val add_consts = ext_sign Sign.add_consts; |
|
207 |
val add_consts_i = ext_sign Sign.add_consts_i; |
|
208 |
val add_syntax = ext_sign Sign.add_syntax; |
|
209 |
val add_syntax_i = ext_sign Sign.add_syntax_i; |
|
210 |
val add_modesyntax = curry (ext_sign Sign.add_modesyntax); |
|
211 |
val add_modesyntax_i = curry (ext_sign Sign.add_modesyntax_i); |
|
212 |
val add_trfuns = ext_sign Sign.add_trfuns; |
|
213 |
val add_trfunsT = ext_sign Sign.add_trfunsT; |
|
214 |
val add_tokentrfuns = ext_sign Sign.add_tokentrfuns; |
|
6311 | 215 |
fun add_mode_tokentrfuns m = add_tokentrfuns o map (fn (s, f) => (m, s, f)); |
4996 | 216 |
val add_trrules = ext_sign Sign.add_trrules; |
217 |
val add_trrules_i = ext_sign Sign.add_trrules_i; |
|
218 |
val add_path = ext_sign Sign.add_path; |
|
4846 | 219 |
val parent_path = add_path ".."; |
220 |
val root_path = add_path "/"; |
|
11501 | 221 |
val absolute_path = add_path "//"; |
4996 | 222 |
val add_space = ext_sign Sign.add_space; |
12588 | 223 |
val hide_space = ext_sign o Sign.hide_space; |
224 |
val hide_space_i = ext_sign o Sign.hide_space_i; |
|
225 |
fun hide_classes b = curry (hide_space_i b) Sign.classK; |
|
226 |
fun hide_types b = curry (hide_space_i b) Sign.typeK; |
|
227 |
fun hide_consts b = curry (hide_space_i b) Sign.constK; |
|
4996 | 228 |
val add_name = ext_sign Sign.add_name; |
6546 | 229 |
val copy = ext_sign (K Sign.copy) (); |
6661 | 230 |
val prep_ext = ext_sign (K Sign.prep_ext) (); |
3814 | 231 |
|
3996 | 232 |
|
6311 | 233 |
|
3814 | 234 |
(** add axioms **) |
235 |
||
1526 | 236 |
(* prepare axioms *) |
237 |
||
238 |
fun err_in_axm name = |
|
239 |
error ("The error(s) above occurred in axiom " ^ quote name); |
|
240 |
||
14184
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
241 |
fun no_vars sg tm = (case (term_vars tm, term_tvars tm) of |
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
242 |
([], []) => tm |
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
243 |
| (ts, ixns) => error (Pretty.string_of (Pretty.block (Pretty.breaks |
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
244 |
(Pretty.str "Illegal schematic variable(s) in term:" :: |
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
245 |
map (Sign.pretty_term sg) ts @ |
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
246 |
map (Sign.pretty_typ sg o TVar) ixns))))); |
1526 | 247 |
|
248 |
fun cert_axm sg (name, raw_tm) = |
|
249 |
let |
|
250 |
val (t, T, _) = Sign.certify_term sg raw_tm |
|
2979 | 251 |
handle TYPE (msg, _, _) => error msg |
3996 | 252 |
| TERM (msg, _) => error msg; |
1526 | 253 |
in |
9537 | 254 |
Term.no_dummy_patterns t handle TERM (msg, _) => error msg; |
1526 | 255 |
assert (T = propT) "Term not of type prop"; |
14184
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
256 |
(name, no_vars sg t) |
9629 | 257 |
end; |
1526 | 258 |
|
5057 | 259 |
(*some duplication of code with read_def_cterm*) |
6661 | 260 |
fun read_def_axm (sg, types, sorts) used (name, str) = |
3814 | 261 |
let |
262 |
val ts = Syntax.read (#syn (Sign.rep_sg sg)) propT str; |
|
5057 | 263 |
val (t, _) = Sign.infer_types sg types sorts used true (ts, propT); |
9320 | 264 |
in cert_axm sg (name, t) end |
1960
ae390b599213
Improved error handling: if there are syntax or type-checking
paulson
parents:
1539
diff
changeset
|
265 |
handle ERROR => err_in_axm name; |
1526 | 266 |
|
5057 | 267 |
fun read_axm sg name_str = read_def_axm (sg, K None, K None) [] name_str; |
268 |
||
1526 | 269 |
fun inferT_axm sg (name, pre_tm) = |
3814 | 270 |
let |
4251 | 271 |
val (t, _) = Sign.infer_types sg (K None) (K None) [] true ([pre_tm], propT); |
14184
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
272 |
in (name, no_vars sg t) end |
1526 | 273 |
handle ERROR => err_in_axm name; |
274 |
||
275 |
||
276 |
(* extend axioms of a theory *) |
|
277 |
||
3814 | 278 |
fun ext_axms prep_axm raw_axms (thy as Theory {sign, ...}) = |
1526 | 279 |
let |
3814 | 280 |
val raw_axms' = map (apfst (Sign.full_name sign)) raw_axms; |
281 |
val axioms = |
|
282 |
map (apsnd (Term.compress_term o Logic.varify) o prep_axm sign) raw_axms'; |
|
4996 | 283 |
val ext_sg = Sign.add_space (axiomK, map fst axioms); |
9320 | 284 |
in ext_theory thy ext_sg I axioms [] end; |
1526 | 285 |
|
286 |
val add_axioms = ext_axms read_axm; |
|
287 |
val add_axioms_i = ext_axms cert_axm; |
|
288 |
||
289 |
||
3814 | 290 |
(* add oracle **) |
291 |
||
292 |
fun add_oracle (raw_name, oracle) (thy as Theory {sign, ...}) = |
|
293 |
let |
|
294 |
val name = Sign.full_name sign raw_name; |
|
4996 | 295 |
val ext_sg = Sign.add_space (oracleK, [name]); |
9320 | 296 |
in ext_theory thy ext_sg I [] [(name, (oracle, stamp ()))] end; |
3814 | 297 |
|
298 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
299 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
300 |
(** add constant definitions **) |
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 |
(* clash_types, clash_consts *) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
303 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
304 |
(*check if types have common instance (ignoring sorts)*) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
305 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
306 |
fun clash_types ty1 ty2 = |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
307 |
let |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
308 |
val ty1' = Type.varifyT ty1; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
309 |
val ty2' = incr_tvar (maxidx_of_typ ty1' + 1) (Type.varifyT ty2); |
9320 | 310 |
in Type.raw_unify (ty1', ty2') end; |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
311 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
312 |
fun clash_consts (c1, ty1) (c2, ty2) = |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
313 |
c1 = c2 andalso clash_types ty1 ty2; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
314 |
|
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 |
(* clash_defns *) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
317 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
318 |
fun clash_defn c_ty (name, tm) = |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
319 |
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
|
320 |
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
|
321 |
end handle TERM _ => None; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
322 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
323 |
fun clash_defns c_ty axms = |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
324 |
distinct (mapfilter (clash_defn c_ty) axms); |
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 |
|
9320 | 327 |
(* overloading *) |
9280 | 328 |
|
9320 | 329 |
datatype overloading = NoOverloading | Useless | Plain; |
330 |
||
331 |
fun overloading sg declT defT = |
|
10403 | 332 |
let val T = Term.incr_tvar (maxidx_of_typ declT + 1) (Type.varifyT defT) in |
333 |
if Sign.typ_instance sg (declT, T) then NoOverloading |
|
334 |
else if Sign.typ_instance sg (Type.rem_sorts declT, Type.rem_sorts T) then Useless |
|
9320 | 335 |
else Plain |
9280 | 336 |
end; |
337 |
||
338 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
339 |
(* dest_defn *) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
340 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
341 |
fun dest_defn tm = |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
342 |
let |
3787
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
wenzelm
parents:
3767
diff
changeset
|
343 |
fun err msg = raise TERM (msg, [tm]); |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
344 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
345 |
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
|
346 |
handle TERM _ => err "Not a meta-equality (==)"; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
347 |
val (head, args) = strip_comb lhs; |
9320 | 348 |
val c_ty as (c, ty) = dest_Const head |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
349 |
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
|
350 |
|
4141 | 351 |
fun dest_free (Free (x, _)) = x |
352 |
| dest_free (Const ("TYPE", Type ("itself", [TFree (x, _)]))) = x |
|
353 |
| dest_free _ = raise Match; |
|
354 |
||
355 |
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
|
356 |
val show_tfrees = commas_quote o map fst; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
357 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
358 |
val lhs_dups = duplicates args; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
359 |
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
|
360 |
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
|
361 |
in |
4141 | 362 |
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
|
363 |
err "Arguments (on lhs) must be variables" |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
364 |
else if not (null lhs_dups) then |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
365 |
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
|
366 |
else if not (null rhs_extras) then |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
367 |
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
|
368 |
else if not (null rhs_extrasT) then |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
369 |
err ("Extra type variables on rhs: " ^ show_tfrees rhs_extrasT) |
9282
0181ac100520
Defs are now checked for circularity (if not overloaded).
nipkow
parents:
9280
diff
changeset
|
370 |
else if exists_Const (fn c_ty' => c_ty' = c_ty) rhs then |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
371 |
err ("Constant to be defined occurs on rhs") |
9320 | 372 |
else (c_ty, rhs) |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
373 |
end; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
374 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
375 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
376 |
(* check_defn *) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
377 |
|
3814 | 378 |
fun err_in_defn sg name msg = |
9320 | 379 |
(error_msg msg; |
380 |
error ("The error(s) above occurred in definition " ^ quote (Sign.full_name sg name))); |
|
381 |
||
9332 | 382 |
fun cycle_msg namess = "Cyclic dependency of constants:\n" ^ |
383 |
cat_lines (map (space_implode " -> " o map quote o rev) namess); |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
384 |
|
9320 | 385 |
fun add_deps (c, cs) deps = |
386 |
let fun declare (G, x) = Graph.new_node (x, ()) G handle Graph.DUP _ => G |
|
387 |
in foldl declare (deps, c :: cs) |> Graph.add_deps_acyclic (c, cs) end; |
|
388 |
||
389 |
||
390 |
fun check_defn sg overloaded ((deps, axms), def as (name, tm)) = |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
391 |
let |
10494 | 392 |
fun pretty_const (c, ty) = [Pretty.str c, Pretty.str " ::", Pretty.brk 1, |
393 |
Pretty.quote (Sign.pretty_typ sg (#1 (Type.freeze_thaw_type ty)))]; |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
394 |
|
10494 | 395 |
fun def_txt (c_ty, txt) = Pretty.block |
396 |
(Pretty.str "Definition of " :: pretty_const c_ty @ |
|
397 |
(if txt = "" then [] else [Pretty.str txt])); |
|
398 |
||
399 |
fun show_defn c (dfn, ty') = Pretty.block |
|
400 |
(Pretty.str " " :: pretty_const (c, ty') @ [Pretty.str " in ", Pretty.str dfn]); |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
401 |
|
9320 | 402 |
val (c_ty as (c, ty), rhs) = dest_defn tm |
9280 | 403 |
handle TERM (msg, _) => err_in_defn sg name msg; |
9320 | 404 |
val c_decl = |
405 |
(case Sign.const_type sg c of Some T => T |
|
406 |
| None => err_in_defn sg name ("Undeclared constant " ^ quote c)); |
|
407 |
||
408 |
val clashed = clash_defns c_ty axms; |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
409 |
in |
9320 | 410 |
if not (null clashed) then |
10494 | 411 |
err_in_defn sg name (Pretty.string_of (Pretty.chunks |
412 |
(def_txt (c_ty, " clashes with") :: map (show_defn c) clashed))) |
|
9320 | 413 |
else |
414 |
(case overloading sg c_decl ty of |
|
415 |
NoOverloading => |
|
13646 | 416 |
(add_deps (c, Term.term_consts rhs) deps |
9320 | 417 |
handle Graph.CYCLES namess => err_in_defn sg name (cycle_msg namess), |
418 |
def :: axms) |
|
419 |
| Useless => |
|
10494 | 420 |
err_in_defn sg name (Pretty.string_of (Pretty.chunks |
421 |
[Library.setmp show_sorts true def_txt (c_ty, ""), Pretty.str |
|
422 |
"imposes additional sort constraints on the declared type of the constant"])) |
|
9320 | 423 |
| Plain => |
10494 | 424 |
(if not overloaded then warning (Pretty.string_of (Pretty.chunks |
425 |
[def_txt (c_ty, ""), Pretty.str ("is strictly less general than the declared type (see " |
|
426 |
^ quote (Sign.full_name sg name) ^ ")")])) |
|
9320 | 427 |
else (); (deps, def :: axms))) |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
428 |
end; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
429 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
430 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
431 |
(* add_defs *) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
432 |
|
9320 | 433 |
fun ext_defns prep_axm overloaded raw_axms thy = |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
434 |
let |
9320 | 435 |
val Theory {sign, const_deps, axioms, oracles, parents, ancestors} = thy; |
436 |
val all_axioms = flat (map (Symtab.dest o #axioms o rep_theory) (thy :: ancestors)); |
|
437 |
||
438 |
val axms = map (prep_axm sign) raw_axms; |
|
439 |
val (const_deps', _) = foldl (check_defn sign overloaded) ((const_deps, all_axioms), axms); |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
440 |
in |
9320 | 441 |
make_theory sign const_deps' axioms oracles parents ancestors |
442 |
|> add_axioms_i axms |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
443 |
end; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
444 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
445 |
val add_defs_i = ext_defns cert_axm; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
446 |
val add_defs = ext_defns read_axm; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
447 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
448 |
|
3878 | 449 |
|
3865 | 450 |
(** additional theory data **) |
451 |
||
4996 | 452 |
val init_data = curry (ext_sign Sign.init_data); |
453 |
fun print_data kind = Sign.print_data kind o sign_of; |
|
454 |
fun get_data kind f = Sign.get_data kind f o sign_of; |
|
455 |
fun put_data kind f = ext_sign (Sign.put_data kind f); |
|
3865 | 456 |
|
457 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
458 |
|
6661 | 459 |
(** merge theories **) (*exception ERROR*) |
4019 | 460 |
|
461 |
fun merge_sign (sg, thy) = |
|
4627 | 462 |
Sign.nontriv_merge (sg, sign_of thy) handle TERM (msg, _) => error msg; |
1526 | 463 |
|
3878 | 464 |
(*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
|
465 |
fun prep_ext_merge thys = |
3996 | 466 |
if null thys then |
4019 | 467 |
error "Merge: no parent theories" |
6188 | 468 |
else if exists is_draft thys then |
4019 | 469 |
error "Attempt to merge draft theories" |
3996 | 470 |
else |
471 |
let |
|
472 |
val sign' = |
|
4019 | 473 |
foldl merge_sign (sign_of (hd thys), tl thys) |
3996 | 474 |
|> Sign.prep_ext |
475 |
|> Sign.add_path "/"; |
|
3814 | 476 |
|
9282
0181ac100520
Defs are now checked for circularity (if not overloaded).
nipkow
parents:
9280
diff
changeset
|
477 |
val depss = map (#const_deps o rep_theory) thys; |
9320 | 478 |
val deps' = foldl (Graph.merge_acyclic (K true)) (hd depss, tl depss) |
479 |
handle Graph.CYCLES namess => error (cycle_msg namess); |
|
9282
0181ac100520
Defs are now checked for circularity (if not overloaded).
nipkow
parents:
9280
diff
changeset
|
480 |
|
4488 | 481 |
val axioms' = Symtab.empty; |
4019 | 482 |
|
3996 | 483 |
fun eq_ora ((_, (_, s1: stamp)), (_, (_, s2))) = s1 = s2; |
484 |
val oracles' = |
|
485 |
Symtab.make (gen_distinct eq_ora |
|
486 |
(flat (map (Symtab.dest o #oracles o rep_theory) thys))) |
|
487 |
handle Symtab.DUPS names => err_dup_oras names; |
|
4019 | 488 |
|
489 |
val parents' = gen_distinct eq_thy thys; |
|
490 |
val ancestors' = |
|
491 |
gen_distinct eq_thy (parents' @ flat (map ancestors_of thys)); |
|
3996 | 492 |
in |
9282
0181ac100520
Defs are now checked for circularity (if not overloaded).
nipkow
parents:
9280
diff
changeset
|
493 |
make_theory sign' deps' axioms' oracles' parents' ancestors' |
3996 | 494 |
end; |
1526 | 495 |
|
3885 | 496 |
|
1526 | 497 |
end; |
498 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
499 |
structure BasicTheory: BASIC_THEORY = Theory; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
500 |
open BasicTheory; |