author | berghofe |
Wed, 07 May 2008 10:59:21 +0200 | |
changeset 26811 | 067cceb36e26 |
parent 26668 | 65023d4fd226 |
child 26939 | 1035c89b4c02 |
permissions | -rw-r--r-- |
1526 | 1 |
(* Title: Pure/theory.ML |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson and Markus Wenzel |
|
4 |
||
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
5 |
Logical theory content: axioms, definitions, oracles. |
1526 | 6 |
*) |
16291 | 7 |
|
26668
65023d4fd226
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents:
26631
diff
changeset
|
8 |
signature THEORY = |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
9 |
sig |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
10 |
val eq_thy: theory * theory -> bool |
3996 | 11 |
val subthy: theory * theory -> bool |
24666 | 12 |
val assert_super: theory -> theory -> theory |
22684 | 13 |
val parents_of: theory -> theory list |
14 |
val ancestors_of: theory -> theory list |
|
24666 | 15 |
val check_thy: theory -> theory_ref |
16 |
val deref: theory_ref -> theory |
|
17 |
val merge: theory * theory -> theory |
|
18 |
val merge_refs: theory_ref * theory_ref -> theory_ref |
|
19 |
val merge_list: theory list -> theory |
|
16495 | 20 |
val checkpoint: theory -> theory |
21 |
val copy: theory -> theory |
|
24666 | 22 |
val requires: theory -> string -> string -> unit |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
23 |
val axiom_space: theory -> NameSpace.T |
22684 | 24 |
val axiom_table: theory -> term Symtab.table |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
25 |
val oracle_space: theory -> NameSpace.T |
22684 | 26 |
val oracle_table: theory -> ((theory * Object.T -> term) * stamp) Symtab.table |
16339 | 27 |
val axioms_of: theory -> (string * term) list |
28 |
val all_axioms_of: theory -> (string * term) list |
|
24666 | 29 |
val defs_of: theory -> Defs.T |
30 |
val at_begin: (theory -> theory option) -> theory -> theory |
|
31 |
val at_end: (theory -> theory option) -> theory -> theory |
|
32 |
val begin_theory: string -> theory list -> theory |
|
33 |
val end_theory: theory -> theory |
|
3996 | 34 |
val add_axioms: (bstring * string) list -> theory -> theory |
35 |
val add_axioms_i: (bstring * term) list -> theory -> theory |
|
19708
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
36 |
val add_deps: string -> string * typ -> (string * typ) list -> theory -> theory |
19630 | 37 |
val add_defs: bool -> bool -> (bstring * string) list -> theory -> theory |
38 |
val add_defs_i: bool -> bool -> (bstring * term) list -> theory -> theory |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
39 |
val add_finals: bool -> string list -> theory -> theory |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
40 |
val add_finals_i: bool -> term list -> theory -> theory |
25017 | 41 |
val specify_const: Markup.property list -> bstring * typ * mixfix -> (string * typ) list -> |
42 |
theory -> term * theory |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
43 |
val add_oracle: bstring * (theory * Object.T -> term) -> theory -> theory |
16495 | 44 |
end |
1526 | 45 |
|
24666 | 46 |
structure Theory: THEORY = |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
47 |
struct |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
48 |
|
19708
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
49 |
|
24666 | 50 |
(** theory context operations **) |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
51 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
52 |
val eq_thy = Context.eq_thy; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
53 |
val subthy = Context.subthy; |
1526 | 54 |
|
24626
85eceef2edc7
introduced generic concepts for theory interpretators
haftmann
parents:
24199
diff
changeset
|
55 |
fun assert_super thy1 thy2 = |
85eceef2edc7
introduced generic concepts for theory interpretators
haftmann
parents:
24199
diff
changeset
|
56 |
if subthy (thy1, thy2) then thy2 |
85eceef2edc7
introduced generic concepts for theory interpretators
haftmann
parents:
24199
diff
changeset
|
57 |
else raise THEORY ("Not a super theory", [thy1, thy2]); |
85eceef2edc7
introduced generic concepts for theory interpretators
haftmann
parents:
24199
diff
changeset
|
58 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
59 |
val parents_of = Context.parents_of; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
60 |
val ancestors_of = Context.ancestors_of; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
61 |
|
24137
8d7896398147
replaced Theory.self_ref by Theory.check_thy, which now produces a checked ref;
wenzelm
parents:
23655
diff
changeset
|
62 |
val check_thy = Context.check_thy; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
63 |
val deref = Context.deref; |
24666 | 64 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
65 |
val merge = Context.merge; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
66 |
val merge_refs = Context.merge_refs; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
67 |
|
23600 | 68 |
fun merge_list [] = raise THEORY ("Empty merge of theories", []) |
21608 | 69 |
| merge_list (thy :: thys) = Library.foldl merge (thy, thys); |
70 |
||
16495 | 71 |
val checkpoint = Context.checkpoint_thy; |
72 |
val copy = Context.copy_thy; |
|
73 |
||
24666 | 74 |
fun requires thy name what = |
75 |
if Context.exists_name name thy then () |
|
76 |
else error ("Require theory " ^ quote name ^ " as an ancestor for " ^ what); |
|
77 |
||
78 |
||
79 |
||
25059 | 80 |
(** datatype thy **) |
24666 | 81 |
|
82 |
type wrapper = (theory -> theory option) * stamp; |
|
83 |
||
84 |
fun apply_wrappers (wrappers: wrapper list) = |
|
25059 | 85 |
perhaps (perhaps_loop (perhaps_apply (map fst wrappers))); |
24666 | 86 |
|
87 |
datatype thy = Thy of |
|
88 |
{axioms: term NameSpace.table, |
|
89 |
defs: Defs.T, |
|
90 |
oracles: ((theory * Object.T -> term) * stamp) NameSpace.table, |
|
91 |
wrappers: wrapper list * wrapper list}; |
|
92 |
||
93 |
fun make_thy (axioms, defs, oracles, wrappers) = |
|
94 |
Thy {axioms = axioms, defs = defs, oracles = oracles, wrappers = wrappers}; |
|
95 |
||
96 |
fun err_dup_axm dup = error ("Duplicate axiom: " ^ quote dup); |
|
97 |
fun err_dup_ora dup = error ("Duplicate oracle: " ^ quote dup); |
|
98 |
||
99 |
structure ThyData = TheoryDataFun |
|
100 |
( |
|
101 |
type T = thy; |
|
102 |
val empty = make_thy (NameSpace.empty_table, Defs.empty, NameSpace.empty_table, ([], [])); |
|
103 |
val copy = I; |
|
104 |
||
105 |
fun extend (Thy {axioms, defs, oracles, wrappers}) = |
|
106 |
make_thy (NameSpace.empty_table, defs, oracles, wrappers); |
|
107 |
||
108 |
fun merge pp (thy1, thy2) = |
|
109 |
let |
|
110 |
val Thy {axioms = _, defs = defs1, oracles = oracles1, wrappers = (bgs1, ens1)} = thy1; |
|
111 |
val Thy {axioms = _, defs = defs2, oracles = oracles2, wrappers = (bgs2, ens2)} = thy2; |
|
112 |
||
113 |
val axioms' = NameSpace.empty_table; |
|
114 |
val defs' = Defs.merge pp (defs1, defs2); |
|
115 |
val oracles' = NameSpace.merge_tables (eq_snd (op =)) (oracles1, oracles2) |
|
116 |
handle Symtab.DUP dup => err_dup_ora dup; |
|
117 |
val bgs' = Library.merge (eq_snd op =) (bgs1, bgs2); |
|
118 |
val ens' = Library.merge (eq_snd op =) (ens1, ens2); |
|
119 |
in make_thy (axioms', defs', oracles', (bgs', ens')) end; |
|
120 |
); |
|
121 |
||
122 |
fun rep_theory thy = ThyData.get thy |> (fn Thy args => args); |
|
123 |
||
124 |
fun map_thy f = ThyData.map (fn (Thy {axioms, defs, oracles, wrappers}) => |
|
125 |
make_thy (f (axioms, defs, oracles, wrappers))); |
|
126 |
||
127 |
||
128 |
fun map_axioms f = map_thy |
|
129 |
(fn (axioms, defs, oracles, wrappers) => (f axioms, defs, oracles, wrappers)); |
|
130 |
||
131 |
fun map_defs f = map_thy |
|
132 |
(fn (axioms, defs, oracles, wrappers) => (axioms, f defs, oracles, wrappers)); |
|
133 |
||
134 |
fun map_oracles f = map_thy |
|
135 |
(fn (axioms, defs, oracles, wrappers) => (axioms, defs, f oracles, wrappers)); |
|
136 |
||
137 |
fun map_wrappers f = map_thy |
|
138 |
(fn (axioms, defs, oracles, wrappers) => (axioms, defs, oracles, f wrappers)); |
|
139 |
||
140 |
||
141 |
(* basic operations *) |
|
142 |
||
143 |
val axiom_space = #1 o #axioms o rep_theory; |
|
144 |
val axiom_table = #2 o #axioms o rep_theory; |
|
145 |
||
146 |
val oracle_space = #1 o #oracles o rep_theory; |
|
147 |
val oracle_table = #2 o #oracles o rep_theory; |
|
148 |
||
149 |
val axioms_of = Symtab.dest o #2 o #axioms o rep_theory; |
|
150 |
fun all_axioms_of thy = maps axioms_of (thy :: ancestors_of thy); |
|
151 |
||
152 |
val defs_of = #defs o rep_theory; |
|
153 |
||
154 |
||
155 |
(* begin/end theory *) |
|
156 |
||
157 |
val begin_wrappers = rev o #1 o #wrappers o rep_theory; |
|
158 |
val end_wrappers = rev o #2 o #wrappers o rep_theory; |
|
159 |
||
160 |
fun at_begin f = map_wrappers (apfst (cons (f, stamp ()))); |
|
161 |
fun at_end f = map_wrappers (apsnd (cons (f, stamp ()))); |
|
162 |
||
163 |
fun begin_theory name imports = |
|
164 |
let |
|
165 |
val thy = Context.begin_thy Sign.pp name imports; |
|
166 |
val wrappers = begin_wrappers thy; |
|
167 |
in thy |> Sign.local_path |> apply_wrappers wrappers end; |
|
168 |
||
169 |
fun end_theory thy = |
|
170 |
thy |> apply_wrappers (end_wrappers thy) |> Context.finish_thy; |
|
171 |
||
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
172 |
|
3996 | 173 |
|
24666 | 174 |
(** add axioms **) |
3814 | 175 |
|
1526 | 176 |
(* prepare axioms *) |
177 |
||
18678 | 178 |
fun err_in_axm msg name = |
179 |
cat_error msg ("The error(s) above occurred in axiom " ^ quote name); |
|
1526 | 180 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
181 |
fun cert_axm thy (name, raw_tm) = |
1526 | 182 |
let |
18968
52639ad19a96
adapted Sign.infer_types(_simult), Sign.certify_term/prop;
wenzelm
parents:
18943
diff
changeset
|
183 |
val (t, T, _) = Sign.certify_prop thy raw_tm |
2979 | 184 |
handle TYPE (msg, _, _) => error msg |
16291 | 185 |
| TERM (msg, _) => error msg; |
1526 | 186 |
in |
9537 | 187 |
Term.no_dummy_patterns t handle TERM (msg, _) => error msg; |
18968
52639ad19a96
adapted Sign.infer_types(_simult), Sign.certify_term/prop;
wenzelm
parents:
18943
diff
changeset
|
188 |
(name, Sign.no_vars (Sign.pp thy) t) |
9629 | 189 |
end; |
1526 | 190 |
|
22684 | 191 |
fun read_axm thy (name, str) = |
24708 | 192 |
cert_axm thy (name, Syntax.read_prop_global thy str) |
22689 | 193 |
handle ERROR msg => err_in_axm msg name; |
1526 | 194 |
|
195 |
||
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
196 |
(* add_axioms(_i) *) |
1526 | 197 |
|
16291 | 198 |
local |
199 |
||
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
200 |
fun gen_add_axioms prep_axm raw_axms thy = thy |> map_axioms (fn axioms => |
1526 | 201 |
let |
26631
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
25059
diff
changeset
|
202 |
val axms = map (apsnd Logic.varify o prep_axm thy) raw_axms; |
23086 | 203 |
val axioms' = NameSpace.extend_table (Sign.naming_of thy) axms axioms |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
23600
diff
changeset
|
204 |
handle Symtab.DUP dup => err_dup_axm dup; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
205 |
in axioms' end); |
1526 | 206 |
|
16291 | 207 |
in |
208 |
||
209 |
val add_axioms = gen_add_axioms read_axm; |
|
210 |
val add_axioms_i = gen_add_axioms cert_axm; |
|
211 |
||
212 |
end; |
|
1526 | 213 |
|
214 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
215 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
216 |
(** add constant definitions **) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
217 |
|
19708
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
218 |
(* dependencies *) |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
219 |
|
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
220 |
fun dependencies thy unchecked is_def name lhs rhs = |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
221 |
let |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
222 |
val pp = Sign.pp thy; |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
223 |
val consts = Sign.consts_of thy; |
19727 | 224 |
fun prep const = |
225 |
let val Const (c, T) = Sign.no_vars pp (Const const) |
|
26631
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents:
25059
diff
changeset
|
226 |
in (c, Consts.typargs consts (c, Logic.varifyT T)) end; |
19708
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
227 |
|
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
228 |
val lhs_vars = Term.add_tfreesT (#2 lhs) []; |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
229 |
val rhs_extras = fold (#2 #> Term.fold_atyps (fn TFree v => |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
230 |
if member (op =) lhs_vars v then I else insert (op =) v | _ => I)) rhs []; |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
231 |
val _ = |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
232 |
if null rhs_extras then () |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
233 |
else error ("Specification depends on extra type variables: " ^ |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
234 |
commas_quote (map (Pretty.string_of_typ pp o TFree) rhs_extras) ^ |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
235 |
"\nThe error(s) above occurred in " ^ quote name); |
24199 | 236 |
in Defs.define pp unchecked is_def name (prep lhs) (map prep rhs) end; |
19708
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
237 |
|
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
238 |
fun add_deps a raw_lhs raw_rhs thy = |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
239 |
let |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
240 |
val lhs :: rhs = map (dest_Const o Sign.cert_term thy o Const) (raw_lhs :: raw_rhs); |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
241 |
val name = if a = "" then (#1 lhs ^ " axiom") else a; |
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
242 |
in thy |> map_defs (dependencies thy false false name lhs rhs) end; |
17706 | 243 |
|
25017 | 244 |
fun specify_const tags decl deps thy = |
245 |
let val (t as Const const, thy') = Sign.declare_const tags decl thy |
|
246 |
in (t, add_deps "" const deps thy') end; |
|
247 |
||
17706 | 248 |
|
16944 | 249 |
(* check_overloading *) |
9280 | 250 |
|
16944 | 251 |
fun check_overloading thy overloaded (c, T) = |
16291 | 252 |
let |
24763 | 253 |
val declT = Sign.the_const_constraint thy c |
254 |
handle TYPE (msg, _, _) => error msg; |
|
19806 | 255 |
val T' = Logic.varifyT T; |
16944 | 256 |
|
257 |
fun message txt = |
|
258 |
[Pretty.block [Pretty.str "Specification of constant ", |
|
259 |
Pretty.str c, Pretty.str " ::", Pretty.brk 1, Pretty.quote (Sign.pretty_typ thy T)], |
|
260 |
Pretty.str txt] |> Pretty.chunks |> Pretty.string_of; |
|
16291 | 261 |
in |
16944 | 262 |
if Sign.typ_instance thy (declT, T') then () |
263 |
else if Type.raw_instance (declT, T') then |
|
264 |
error (Library.setmp show_sorts true |
|
265 |
message "imposes additional sort constraints on the constant declaration") |
|
266 |
else if overloaded then () |
|
267 |
else warning (message "is strictly less general than the declared type"); |
|
268 |
(c, T) |
|
9280 | 269 |
end; |
270 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
271 |
|
16291 | 272 |
(* check_def *) |
273 |
||
19630 | 274 |
fun check_def thy unchecked overloaded (bname, tm) defs = |
16291 | 275 |
let |
24981
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
wenzelm
parents:
24966
diff
changeset
|
276 |
val ctxt = ProofContext.init thy; |
17706 | 277 |
val name = Sign.full_name thy bname; |
24981
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
wenzelm
parents:
24966
diff
changeset
|
278 |
val (lhs_const, rhs) = Sign.cert_def ctxt tm; |
16944 | 279 |
val rhs_consts = fold_aterms (fn Const const => insert (op =) const | _ => I) rhs []; |
18943 | 280 |
val _ = check_overloading thy overloaded lhs_const; |
19708
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
281 |
in defs |> dependencies thy unchecked true name lhs_const rhs_consts end |
18678 | 282 |
handle ERROR msg => cat_error msg (Pretty.string_of (Pretty.block |
16883 | 283 |
[Pretty.str ("The error(s) above occurred in definition " ^ quote bname ^ ":"), |
19693 | 284 |
Pretty.fbrk, Pretty.quote (Sign.pretty_term thy tm)])); |
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 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
287 |
(* add_defs(_i) *) |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
288 |
|
16291 | 289 |
local |
9320 | 290 |
|
19630 | 291 |
fun gen_add_defs prep_axm unchecked overloaded raw_axms thy = |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
292 |
let val axms = map (prep_axm thy) raw_axms in |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
293 |
thy |
19630 | 294 |
|> map_defs (fold (check_def thy unchecked overloaded) axms) |
9320 | 295 |
|> add_axioms_i axms |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
296 |
end; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
297 |
|
16291 | 298 |
in |
299 |
||
300 |
val add_defs_i = gen_add_defs cert_axm; |
|
301 |
val add_defs = gen_add_defs read_axm; |
|
302 |
||
303 |
end; |
|
3767
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 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
306 |
(* add_finals(_i) *) |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
307 |
|
16291 | 308 |
local |
309 |
||
17706 | 310 |
fun gen_add_finals prep_term overloaded args thy = |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
311 |
let |
17706 | 312 |
fun const_of (Const const) = const |
313 |
| const_of (Free _) = error "Attempt to finalize variable (or undeclared constant)" |
|
314 |
| const_of _ = error "Attempt to finalize non-constant term"; |
|
19708
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents:
19700
diff
changeset
|
315 |
fun specify (c, T) = dependencies thy false false (c ^ " axiom") (c, T) []; |
24708 | 316 |
val finalize = specify o check_overloading thy overloaded o const_of o |
317 |
Sign.cert_term thy o prep_term thy; |
|
17706 | 318 |
in thy |> map_defs (fold finalize args) end; |
16291 | 319 |
|
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
320 |
in |
16291 | 321 |
|
24708 | 322 |
val add_finals = gen_add_finals Syntax.read_term_global; |
323 |
val add_finals_i = gen_add_finals (K I); |
|
16291 | 324 |
|
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
325 |
end; |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
326 |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
327 |
|
3878 | 328 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
329 |
(** add oracle **) |
3814 | 330 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
331 |
fun add_oracle (bname, oracle) thy = thy |> map_oracles (fn oracles => |
23086 | 332 |
NameSpace.extend_table (Sign.naming_of thy) [(bname, (oracle, stamp ()))] oracles |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
23600
diff
changeset
|
333 |
handle Symtab.DUP dup => err_dup_ora dup); |
3885 | 334 |
|
1526 | 335 |
end; |
336 |