author | webertj |
Tue, 26 Jul 2005 12:23:10 +0200 | |
changeset 16911 | 20a139ca2f62 |
parent 16883 | a89fafe1cbd8 |
child 16944 | 83ea7e3c6ec9 |
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 |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
8 |
signature BASIC_THEORY = |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
9 |
sig |
1526 | 10 |
type theory |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
11 |
type theory_ref |
16495 | 12 |
val sign_of: theory -> theory (*obsolete*) |
3996 | 13 |
val rep_theory: theory -> |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
14 |
{axioms: term NameSpace.table, |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
15 |
defs: Defs.graph, |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
16 |
oracles: ((theory * Object.T -> term) * stamp) NameSpace.table} |
3996 | 17 |
val parents_of: theory -> theory list |
4019 | 18 |
val ancestors_of: theory -> theory list |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
19 |
val eq_thy: theory * theory -> bool |
3996 | 20 |
val subthy: theory * theory -> bool |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
21 |
val cert_axm: theory -> string * term -> string * term |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
22 |
val read_def_axm: theory * (indexname -> typ option) * (indexname -> sort option) -> |
6311 | 23 |
string list -> string * string -> string * term |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
24 |
val read_axm: theory -> string * string -> string * term |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
25 |
val inferT_axm: theory -> string * term -> string * term |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
26 |
end |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
27 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
28 |
signature THEORY = |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
29 |
sig |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
30 |
include BASIC_THEORY |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
31 |
include SIGN_THEORY |
16495 | 32 |
val begin_theory: string -> theory list -> theory |
33 |
val end_theory: theory -> theory |
|
34 |
val checkpoint: theory -> theory |
|
35 |
val copy: theory -> theory |
|
16536 | 36 |
val init_data: theory -> theory |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
37 |
val axiom_space: theory -> NameSpace.T |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
38 |
val oracle_space: theory -> NameSpace.T |
16339 | 39 |
val axioms_of: theory -> (string * term) list |
40 |
val all_axioms_of: theory -> (string * term) list |
|
16743
21dbff595bf6
1) all theorems in Orderings can now be given as a parameter
obua
parents:
16600
diff
changeset
|
41 |
val defs_of : theory -> Defs.graph |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
42 |
val self_ref: theory -> theory_ref |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
43 |
val deref: theory_ref -> theory |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
44 |
val merge: theory * theory -> theory (*exception TERM*) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
45 |
val merge_refs: theory_ref * theory_ref -> theory_ref (*exception TERM*) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
46 |
val requires: theory -> string -> string -> unit |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
47 |
val assert_super: theory -> theory -> theory |
3996 | 48 |
val add_axioms: (bstring * string) list -> theory -> theory |
49 |
val add_axioms_i: (bstring * term) list -> theory -> theory |
|
9320 | 50 |
val add_defs: bool -> (bstring * string) list -> theory -> theory |
51 |
val add_defs_i: 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
|
52 |
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
|
53 |
val add_finals_i: bool -> term list -> theory -> theory |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
54 |
val add_oracle: bstring * (theory * Object.T -> term) -> theory -> theory |
16495 | 55 |
end |
1526 | 56 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
57 |
structure Theory: THEORY = |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
58 |
struct |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
59 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
60 |
(** type theory **) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
61 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
62 |
(* context operations *) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
63 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
64 |
type theory = Context.theory; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
65 |
type theory_ref = Context.theory_ref; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
66 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
67 |
val eq_thy = Context.eq_thy; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
68 |
val subthy = Context.subthy; |
1526 | 69 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
70 |
val parents_of = Context.parents_of; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
71 |
val ancestors_of = Context.ancestors_of; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
72 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
73 |
val self_ref = Context.self_ref; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
74 |
val deref = Context.deref; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
75 |
val merge = Context.merge; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
76 |
val merge_refs = Context.merge_refs; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
77 |
|
16495 | 78 |
val begin_theory = Sign.local_path oo Context.begin_thy Sign.pp; |
79 |
val end_theory = Context.finish_thy; |
|
80 |
val checkpoint = Context.checkpoint_thy; |
|
81 |
val copy = Context.copy_thy; |
|
82 |
||
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
83 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
84 |
(* signature operations *) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
85 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
86 |
val sign_of = I; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
87 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
88 |
structure SignTheory: SIGN_THEORY = Sign; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
89 |
open SignTheory; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
90 |
|
2206 | 91 |
|
3996 | 92 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
93 |
(** datatype thy **) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
94 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
95 |
datatype thy = Thy of |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
96 |
{axioms: term NameSpace.table, |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
97 |
defs: Defs.graph, |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
98 |
oracles: ((theory * Object.T -> term) * stamp) NameSpace.table}; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
99 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
100 |
fun make_thy (axioms, defs, oracles) = |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
101 |
Thy {axioms = axioms, defs = defs, oracles = oracles}; |
1526 | 102 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
103 |
fun err_dup_axms dups = error ("Duplicate axiom(s): " ^ commas_quote dups); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
104 |
fun err_dup_oras dups = error ("Duplicate oracle(s): " ^ commas_quote dups); |
3996 | 105 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
106 |
structure ThyData = TheoryDataFun |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
107 |
(struct |
16536 | 108 |
val name = "Pure/theory"; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
109 |
type T = thy; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
110 |
val empty = make_thy (NameSpace.empty_table, Defs.empty, NameSpace.empty_table); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
111 |
val copy = I; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
112 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
113 |
fun extend (Thy {axioms, defs, oracles}) = make_thy (NameSpace.empty_table, defs, oracles); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
114 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
115 |
fun merge pp (thy1, thy2) = |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
116 |
let |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
117 |
val Thy {axioms = _, defs = defs1, oracles = oracles1} = thy1; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
118 |
val Thy {axioms = _, defs = defs2, oracles = oracles2} = thy2; |
1526 | 119 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
120 |
val axioms = NameSpace.empty_table; |
16883 | 121 |
val defs = Defs.merge pp defs1 defs2; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
122 |
val oracles = NameSpace.merge_tables eq_snd (oracles1, oracles2) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
123 |
handle Symtab.DUPS dups => err_dup_oras dups; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
124 |
in make_thy (axioms, defs, oracles) end; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
125 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
126 |
fun print _ _ = (); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
127 |
end); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
128 |
|
16536 | 129 |
val init_data = ThyData.init; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
130 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
131 |
fun rep_theory thy = ThyData.get thy |> (fn Thy args => args); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
132 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
133 |
fun map_thy f = ThyData.map (fn (Thy {axioms, defs, oracles}) => |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
134 |
make_thy (f (axioms, defs, oracles))); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
135 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
136 |
fun map_axioms f = map_thy (fn (axioms, defs, oracles) => (f axioms, defs, oracles)); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
137 |
fun map_defs f = map_thy (fn (axioms, defs, oracles) => (axioms, f defs, oracles)); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
138 |
fun map_oracles f = map_thy (fn (axioms, defs, oracles) => (axioms, defs, f oracles)); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
139 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
140 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
141 |
(* basic operations *) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
142 |
|
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
143 |
val axiom_space = #1 o #axioms o rep_theory; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
144 |
val oracle_space = #1 o #oracles o rep_theory; |
3996 | 145 |
|
16339 | 146 |
val axioms_of = Symtab.dest o #2 o #axioms o rep_theory; |
147 |
fun all_axioms_of thy = List.concat (map axioms_of (thy :: ancestors_of thy)); |
|
148 |
||
16803 | 149 |
val defs_of = #defs o rep_theory; |
16743
21dbff595bf6
1) all theorems in Orderings can now be given as a parameter
obua
parents:
16600
diff
changeset
|
150 |
|
4970 | 151 |
fun requires thy name what = |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
152 |
if Context.exists_name name thy then () |
4846 | 153 |
else error ("Require theory " ^ quote name ^ " as an ancestor for " ^ what); |
1526 | 154 |
|
6369 | 155 |
fun assert_super thy1 thy2 = |
156 |
if subthy (thy1, thy2) then thy2 |
|
157 |
else raise THEORY ("Not a super theory", [thy1, thy2]); |
|
158 |
||
3996 | 159 |
|
6311 | 160 |
|
3814 | 161 |
(** add axioms **) |
162 |
||
1526 | 163 |
(* prepare axioms *) |
164 |
||
165 |
fun err_in_axm name = |
|
166 |
error ("The error(s) above occurred in axiom " ^ quote name); |
|
167 |
||
16291 | 168 |
fun no_vars pp tm = |
169 |
(case (Term.term_vars tm, Term.term_tvars tm) of |
|
14184
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
170 |
([], []) => tm |
2e0e02d68cbb
Changed no_vars such that it outputs list of illegal schematic variables.
berghofe
parents:
13646
diff
changeset
|
171 |
| (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
|
172 |
(Pretty.str "Illegal schematic variable(s) in term:" :: |
16291 | 173 |
map (Pretty.term pp) ts @ map (Pretty.typ pp o TVar) ixns))))); |
1526 | 174 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
175 |
fun cert_axm thy (name, raw_tm) = |
1526 | 176 |
let |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
177 |
val pp = Sign.pp thy; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
178 |
val (t, T, _) = Sign.certify_term pp thy raw_tm |
2979 | 179 |
handle TYPE (msg, _, _) => error msg |
16291 | 180 |
| TERM (msg, _) => error msg; |
1526 | 181 |
in |
9537 | 182 |
Term.no_dummy_patterns t handle TERM (msg, _) => error msg; |
1526 | 183 |
assert (T = propT) "Term not of type prop"; |
16291 | 184 |
(name, no_vars pp t) |
9629 | 185 |
end; |
1526 | 186 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
187 |
fun read_def_axm (thy, types, sorts) used (name, str) = |
3814 | 188 |
let |
16600 | 189 |
val ts = Syntax.read thy (Sign.is_logtype thy) (Sign.syn_of thy) propT str; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
190 |
val (t, _) = Sign.infer_types (Sign.pp thy) thy types sorts used true (ts, propT); |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
191 |
in cert_axm thy (name, t) end |
1960
ae390b599213
Improved error handling: if there are syntax or type-checking
paulson
parents:
1539
diff
changeset
|
192 |
handle ERROR => err_in_axm name; |
1526 | 193 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
194 |
fun read_axm thy name_str = read_def_axm (thy, K NONE, K NONE) [] name_str; |
5057 | 195 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
196 |
fun inferT_axm thy (name, pre_tm) = |
16291 | 197 |
let |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
198 |
val pp = Sign.pp thy; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
199 |
val (t, _) = Sign.infer_types pp thy (K NONE) (K NONE) [] true ([pre_tm], propT); |
16291 | 200 |
in (name, no_vars pp t) end |
1526 | 201 |
handle ERROR => err_in_axm name; |
202 |
||
203 |
||
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
204 |
(* add_axioms(_i) *) |
1526 | 205 |
|
16291 | 206 |
local |
207 |
||
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
208 |
fun gen_add_axioms prep_axm raw_axms thy = thy |> map_axioms (fn axioms => |
1526 | 209 |
let |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
210 |
val axms = map (apsnd (Term.compress_term o Logic.varify) o prep_axm thy) raw_axms; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
211 |
val axioms' = NameSpace.extend_table (Sign.naming_of thy) (axioms, axms) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
212 |
handle Symtab.DUPS dups => err_dup_axms dups; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
213 |
in axioms' end); |
1526 | 214 |
|
16291 | 215 |
in |
216 |
||
217 |
val add_axioms = gen_add_axioms read_axm; |
|
218 |
val add_axioms_i = gen_add_axioms cert_axm; |
|
219 |
||
220 |
end; |
|
1526 | 221 |
|
222 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
223 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
224 |
(** add constant definitions **) |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
225 |
|
9320 | 226 |
(* overloading *) |
9280 | 227 |
|
16291 | 228 |
datatype overloading = Clean | Implicit | Useless; |
9320 | 229 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
230 |
fun overloading thy overloaded declT defT = |
16291 | 231 |
let |
16883 | 232 |
val defT' = Logic.incr_tvar (maxidx_of_typ declT + 1) (Type.varifyT defT); |
16291 | 233 |
in |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
234 |
if Sign.typ_instance thy (declT, defT') then Clean |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
235 |
else if Sign.typ_instance thy (Type.strip_sorts declT, Type.strip_sorts defT') then Useless |
16291 | 236 |
else if overloaded then Clean |
237 |
else Implicit |
|
9280 | 238 |
end; |
239 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
240 |
|
16291 | 241 |
(* dest_def *) |
242 |
||
243 |
fun dest_def pp tm = |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
244 |
let |
3787
67571f49ebe3
new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
wenzelm
parents:
3767
diff
changeset
|
245 |
fun err msg = raise TERM (msg, [tm]); |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
246 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
247 |
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
|
248 |
handle TERM _ => err "Not a meta-equality (==)"; |
16291 | 249 |
val (head, args) = Term.strip_comb lhs; |
250 |
val (c, T) = Term.dest_Const head |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
251 |
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
|
252 |
|
4141 | 253 |
fun dest_free (Free (x, _)) = x |
254 |
| dest_free (Const ("TYPE", Type ("itself", [TFree (x, _)]))) = x |
|
255 |
| dest_free _ = raise Match; |
|
256 |
||
16291 | 257 |
val show_terms = commas_quote o map (Pretty.string_of_term pp); |
4141 | 258 |
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
|
259 |
val show_tfrees = commas_quote o map fst; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
260 |
|
16291 | 261 |
val lhs_nofrees = filter (not o can dest_free) args; |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
262 |
val lhs_dups = duplicates args; |
16291 | 263 |
val rhs_extras = term_frees rhs |> fold (remove op =) args; |
264 |
val rhs_extrasT = term_tfrees rhs |> fold (remove op =) (typ_tfrees T); |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
265 |
in |
16291 | 266 |
if not (null lhs_nofrees) then |
267 |
err ("Non-variables as arguments on lhs: " ^ show_terms lhs_nofrees) |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
268 |
else if not (null lhs_dups) then |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
269 |
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
|
270 |
else if not (null rhs_extras) then |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
271 |
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
|
272 |
else if not (null rhs_extrasT) then |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
273 |
err ("Extra type variables on rhs: " ^ show_tfrees rhs_extrasT) |
16291 | 274 |
else if exists_Const (equal (c, T)) rhs then |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
275 |
err ("Constant to be defined occurs on rhs") |
16291 | 276 |
else ((c, T), rhs) |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
277 |
end; |
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 |
|
16291 | 280 |
(* check_def *) |
281 |
||
16883 | 282 |
fun pretty_const pp (c, T) = |
283 |
[Pretty.str c, Pretty.str " ::", Pretty.brk 1, |
|
284 |
Pretty.quote (Pretty.typ pp (Type.freeze_type T))]; |
|
10494 | 285 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
286 |
fun check_def thy overloaded (bname, tm) defs = |
16291 | 287 |
let |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
288 |
val pp = Sign.pp thy; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
289 |
fun prt_const (c, T) = |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
290 |
[Pretty.str c, Pretty.str " ::", Pretty.brk 1, |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
291 |
Pretty.quote (Pretty.typ pp (Type.freeze_type T))]; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
292 |
fun string_of_def const txt = |
16291 | 293 |
[Pretty.block (Pretty.str "Definition of " :: pretty_const pp const), Pretty.str txt] |
294 |
|> Pretty.chunks |> Pretty.string_of; |
|
9320 | 295 |
|
16883 | 296 |
fun typed_const c = (c, Sign.the_const_type thy c); |
297 |
||
298 |
val ((c, defT), rhs) = dest_def pp tm handle TERM (msg, _) => error msg; |
|
16291 | 299 |
val rhs_consts = Term.term_constsT rhs; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
300 |
val declT = Sign.the_const_type thy c; |
16291 | 301 |
val _ = |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
302 |
(case overloading thy overloaded declT defT of |
16291 | 303 |
Clean => () |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
304 |
| Implicit => warning (string_of_def (c, defT) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
305 |
("is strictly less general than the declared type (see " ^ quote bname ^ ")")) |
16883 | 306 |
| Useless => error (Library.setmp show_sorts true (string_of_def (c, defT)) |
16291 | 307 |
"imposes additional sort constraints on the declared type of the constant")); |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
308 |
in |
16883 | 309 |
defs |> Defs.declare (typed_const c) |> fold (Defs.declare o typed_const o #1) rhs_consts |
310 |
|> Defs.define pp (c, defT) (Sign.full_name thy bname) rhs_consts |
|
311 |
end |
|
312 |
handle ERROR => error (Pretty.string_of (Pretty.block |
|
313 |
[Pretty.str ("The error(s) above occurred in definition " ^ quote bname ^ ":"), |
|
314 |
Pretty.fbrk, Pretty.quote (Pretty.term (Sign.pp thy) tm)])); |
|
3767
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 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
317 |
(* add_defs(_i) *) |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
318 |
|
16291 | 319 |
local |
9320 | 320 |
|
16291 | 321 |
fun gen_add_defs prep_axm overloaded raw_axms thy = |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
322 |
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
|
323 |
thy |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
324 |
|> map_defs (fold (check_def thy overloaded) axms) |
9320 | 325 |
|> add_axioms_i axms |
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
326 |
end; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
327 |
|
16291 | 328 |
in |
329 |
||
330 |
val add_defs_i = gen_add_defs cert_axm; |
|
331 |
val add_defs = gen_add_defs read_axm; |
|
332 |
||
333 |
end; |
|
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
334 |
|
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
335 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
336 |
(* add_finals(_i) *) |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
337 |
|
16291 | 338 |
local |
339 |
||
340 |
fun gen_add_finals prep_term overloaded raw_terms thy = |
|
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
341 |
let |
16291 | 342 |
fun finalize tm finals = |
343 |
let |
|
344 |
fun err msg = raise TERM (msg, [tm]); (* FIXME error!? *) |
|
345 |
val (c, defT) = |
|
346 |
(case tm of Const x => x |
|
347 |
| Free _ => err "Attempt to finalize variable (or undeclared constant)" |
|
348 |
| _ => err "Attempt to finalize non-constant term"); |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
349 |
val declT = Sign.the_const_type thy c |
16291 | 350 |
handle TYPE (msg, _, _) => err msg; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
351 |
val _ = (* FIXME unify messages with defs *) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
352 |
(case overloading thy overloaded declT defT of |
16291 | 353 |
Clean => () |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
354 |
| Implicit => warning ("Finalizing " ^ quote c ^ |
16291 | 355 |
" at a strictly less general type than declared") |
356 |
| Useless => err "Sort constraints stronger than declared"); |
|
16883 | 357 |
in finals |> Defs.declare (c, declT) |> Defs.finalize (c, defT) end; |
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
358 |
in thy |> map_defs (fold finalize (map (prep_term thy) raw_terms)) end; |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
359 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
360 |
fun read_term thy = Sign.simple_read_term thy TypeInfer.logicT; |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
361 |
fun cert_term thy = #1 o Sign.certify_term (Sign.pp thy) thy; |
16291 | 362 |
|
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
363 |
in |
16291 | 364 |
|
365 |
val add_finals = gen_add_finals read_term; |
|
366 |
val add_finals_i = gen_add_finals cert_term; |
|
367 |
||
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
368 |
end; |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
369 |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
14204
diff
changeset
|
370 |
|
3878 | 371 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
372 |
(** add oracle **) |
3814 | 373 |
|
16443
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
374 |
fun add_oracle (bname, oracle) thy = thy |> map_oracles (fn oracles => |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
375 |
NameSpace.extend_table (Sign.naming_of thy) (oracles, [(bname, (oracle, stamp ()))]) |
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents:
16369
diff
changeset
|
376 |
handle Symtab.DUPS dups => err_dup_oras dups); |
3885 | 377 |
|
1526 | 378 |
end; |
379 |
||
3767
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
380 |
structure BasicTheory: BASIC_THEORY = Theory; |
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents:
2979
diff
changeset
|
381 |
open BasicTheory; |