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