| author | wenzelm | 
| Mon, 21 Aug 2023 13:01:45 +0200 | |
| changeset 78553 | 66fc98b4557b | 
| parent 78527 | 374611eb3055 | 
| child 78795 | f7e972d567f3 | 
| permissions | -rw-r--r-- | 
| 1526 | 1 | (* Title: Pure/theory.ML | 
| 2 | Author: Lawrence C Paulson and Markus Wenzel | |
| 3 | ||
| 28290 | 4 | Logical theory content: axioms, definitions, and begin/end wrappers. | 
| 1526 | 5 | *) | 
| 16291 | 6 | |
| 26668 
65023d4fd226
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26631diff
changeset | 7 | signature THEORY = | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 8 | sig | 
| 22684 | 9 | val parents_of: theory -> theory list | 
| 10 | val ancestors_of: theory -> theory list | |
| 42425 | 11 | val nodes_of: theory -> theory list | 
| 53171 | 12 | val setup: (theory -> theory) -> unit | 
| 59930 | 13 | val local_setup: (Proof.context -> Proof.context) -> unit | 
| 67384 | 14 | val install_pure: theory -> unit | 
| 67380 | 15 | val get_pure: unit -> theory | 
| 69886 | 16 | val get_pure_bootstrap: unit -> theory | 
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 17 | val get_markup: theory -> Markup.T | 
| 78527 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 18 |   val check_theory: {get: string -> theory, all: unit -> string list} ->
 | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 19 | Proof.context -> string * Position.T -> theory | 
| 68482 | 20 |   val check: {long: bool} -> Proof.context -> string * Position.T -> theory
 | 
| 56025 | 21 | val axiom_table: theory -> term Name_Space.table | 
| 33095 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 wenzelm parents: 
33092diff
changeset | 22 | val axiom_space: theory -> Name_Space.T | 
| 16339 | 23 | val all_axioms_of: theory -> (string * term) list | 
| 24666 | 24 | val defs_of: theory -> Defs.T | 
| 25 | val at_begin: (theory -> theory option) -> theory -> theory | |
| 26 | val at_end: (theory -> theory option) -> theory -> theory | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 27 | val begin_theory: string * Position.T -> theory list -> theory | 
| 24666 | 28 | val end_theory: theory -> theory | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 29 | val add_axiom: Proof.context -> binding * term -> theory -> theory | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 30 | val const_dep: theory -> string * typ -> Defs.entry | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 31 | val type_dep: string * typ list -> Defs.entry | 
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 32 | val add_deps: Defs.context -> string -> Defs.entry -> Defs.entry list -> theory -> theory | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 33 | val add_deps_global: string -> Defs.entry -> Defs.entry list -> theory -> theory | 
| 74339 | 34 | val add_deps_const: string -> theory -> theory | 
| 35 | val add_deps_type: string -> theory -> theory | |
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 36 | val add_def: Defs.context -> bool -> bool -> binding * term -> theory -> theory | 
| 33173 
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
 wenzelm parents: 
33168diff
changeset | 37 | val specify_const: (binding * typ) * mixfix -> theory -> term * theory | 
| 46974 
7ca3608146d8
eliminated odd 'finalconsts' / Theory.add_finals;
 wenzelm parents: 
45632diff
changeset | 38 | val check_overloading: Proof.context -> bool -> string * typ -> unit | 
| 16495 | 39 | end | 
| 1526 | 40 | |
| 24666 | 41 | structure Theory: THEORY = | 
| 16443 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 42 | struct | 
| 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 43 | |
| 19708 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 44 | |
| 24666 | 45 | (** theory context operations **) | 
| 16443 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 46 | |
| 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 47 | val parents_of = Context.parents_of; | 
| 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 48 | val ancestors_of = Context.ancestors_of; | 
| 42425 | 49 | fun nodes_of thy = thy :: ancestors_of thy; | 
| 16443 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 50 | |
| 53171 | 51 | fun setup f = Context.>> (Context.map_theory f); | 
| 59930 | 52 | fun local_setup f = Context.>> (Context.map_proof f); | 
| 53171 | 53 | |
| 67384 | 54 | |
| 55 | (* implicit theory Pure *) | |
| 56 | ||
| 67380 | 57 | val pure: theory Single_Assignment.var = Single_Assignment.var "pure"; | 
| 67384 | 58 | |
| 67380 | 59 | fun install_pure thy = Single_Assignment.assign pure thy; | 
| 60 | ||
| 67384 | 61 | fun get_pure () = | 
| 62 | (case Single_Assignment.peek pure of | |
| 63 | SOME thy => thy | |
| 64 | | NONE => raise Fail "Theory Pure not present"); | |
| 65 | ||
| 69886 | 66 | fun get_pure_bootstrap () = | 
| 67 | (case Single_Assignment.peek pure of | |
| 68 | SOME thy => thy | |
| 69 | | NONE => Context.the_global_context ()); | |
| 70 | ||
| 24666 | 71 | |
| 72 | ||
| 25059 | 73 | (** datatype thy **) | 
| 24666 | 74 | |
| 75 | type wrapper = (theory -> theory option) * stamp; | |
| 76 | ||
| 77 | fun apply_wrappers (wrappers: wrapper list) = | |
| 25059 | 78 | perhaps (perhaps_loop (perhaps_apply (map fst wrappers))); | 
| 24666 | 79 | |
| 80 | datatype thy = Thy of | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 81 |  {pos: Position.T,
 | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 82 | id: serial, | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 83 | axioms: term Name_Space.table, | 
| 24666 | 84 | defs: Defs.T, | 
| 85 | wrappers: wrapper list * wrapper list}; | |
| 86 | ||
| 77895 | 87 | fun rep_thy (Thy args) = args; | 
| 88 | ||
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 89 | fun make_thy (pos, id, axioms, defs, wrappers) = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 90 |   Thy {pos = pos, id = id, axioms = axioms, defs = defs, wrappers = wrappers};
 | 
| 24666 | 91 | |
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 92 | structure Thy = Theory_Data' | 
| 24666 | 93 | ( | 
| 94 | type T = thy; | |
| 74112 | 95 | val empty = make_thy (Position.none, 0, Name_Space.empty_table Markup.axiomN, Defs.empty, ([], [])); | 
| 77895 | 96 | fun merge args = | 
| 24666 | 97 | let | 
| 77895 | 98 | val thy0 = #1 (hd args); | 
| 99 |       val {pos, id, ...} = rep_thy (#2 (hd args));
 | |
| 24666 | 100 | |
| 77895 | 101 | val merge_defs = Defs.merge (Defs.global_context thy0); | 
| 102 | val merge_wrappers = Library.merge (eq_snd op =); | |
| 103 | ||
| 104 | val axioms' = Library.foldl1 Name_Space.merge_tables (map (#axioms o rep_thy o #2) args); | |
| 105 | val defs' = Library.foldl1 merge_defs (map (#defs o rep_thy o #2) args); | |
| 106 | val bgs' = Library.foldl1 merge_wrappers (map (#1 o #wrappers o rep_thy o #2) args); | |
| 107 | val ens' = Library.foldl1 merge_wrappers (map (#2 o #wrappers o rep_thy o #2) args); | |
| 72059 | 108 | in make_thy (pos, id, axioms', defs', (bgs', ens')) end; | 
| 24666 | 109 | ); | 
| 110 | ||
| 77895 | 111 | val rep_theory = rep_thy o Thy.get; | 
| 24666 | 112 | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 113 | fun map_thy f = Thy.map (fn (Thy {pos, id, axioms, defs, wrappers}) =>
 | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 114 | make_thy (f (pos, id, axioms, defs, wrappers))); | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 115 | |
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 116 | fun map_axioms f = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 117 | map_thy (fn (pos, id, axioms, defs, wrappers) => (pos, id, f axioms, defs, wrappers)); | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 118 | |
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 119 | fun map_defs f = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 120 | map_thy (fn (pos, id, axioms, defs, wrappers) => (pos, id, axioms, f defs, wrappers)); | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 121 | |
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 122 | fun map_wrappers f = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 123 | map_thy (fn (pos, id, axioms, defs, wrappers) => (pos, id, axioms, defs, f wrappers)); | 
| 24666 | 124 | |
| 125 | ||
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 126 | (* entity markup *) | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 127 | |
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 128 | fun theory_markup def name id pos = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 129 | if id = 0 then Markup.empty | 
| 74183 | 130 | else Position.make_entity_markup def id Markup.theoryN (name, pos); | 
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 131 | |
| 48929 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 132 | fun init_markup (name, pos) thy = | 
| 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 133 | let | 
| 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 134 | val id = serial (); | 
| 74262 | 135 |     val _ = Context_Position.reports_global thy [(pos, theory_markup {def = true} name id pos)];
 | 
| 48929 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 136 | in map_thy (fn (_, _, axioms, defs, wrappers) => (pos, id, axioms, defs, wrappers)) thy end; | 
| 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 137 | |
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 138 | fun get_markup thy = | 
| 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 139 |   let val {pos, id, ...} = rep_theory thy
 | 
| 74262 | 140 |   in theory_markup {def = false} (Context.theory_long_name thy) id pos end;
 | 
| 24666 | 141 | |
| 78527 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 142 | fun check_theory {get, all} ctxt (name, pos) =
 | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 143 | let | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 144 | val thy = get name handle ERROR msg => | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 145 | let | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 146 | val completion_report = | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 147 | Completion.make_report (name, pos) | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 148 | (fn completed => | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 149 | all () | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 150 | |> filter (completed o Long_Name.base_name) | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 151 | |> sort_strings | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 152 | |> map (fn a => (a, (Markup.theoryN, a)))); | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 153 | in error (msg ^ Position.here pos ^ completion_report) end; | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 154 | val _ = Context_Position.report ctxt pos (get_markup thy); | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 155 | in thy end; | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 156 | |
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 157 | fun check long ctxt arg = | 
| 60099 | 158 | let | 
| 159 | val thy = Proof_Context.theory_of ctxt; | |
| 78527 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 160 | val get = Context.get_theory long thy; | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 161 | fun all () = map (Context.theory_name long) (ancestors_of thy); | 
| 
374611eb3055
tuned signature: more operations for formal theory context vs. theory loader;
 wenzelm parents: 
78009diff
changeset | 162 |   in check_theory {get = get, all = all} ctxt arg end;
 | 
| 60099 | 163 | |
| 24666 | 164 | |
| 165 | (* basic operations *) | |
| 166 | ||
| 56025 | 167 | val axiom_table = #axioms o rep_theory; | 
| 168 | val axiom_space = Name_Space.space_of_table o axiom_table; | |
| 24666 | 169 | |
| 70923 
98d9b78b7f47
clarified axiom_table: uniform space (e.g. like consts), e.g. relevant for export of HOL-ex.Join_Theory;
 wenzelm parents: 
70362diff
changeset | 170 | val all_axioms_of = Name_Space.dest_table o axiom_table; | 
| 24666 | 171 | |
| 172 | val defs_of = #defs o rep_theory; | |
| 173 | ||
| 174 | ||
| 175 | (* begin/end theory *) | |
| 176 | ||
| 177 | val begin_wrappers = rev o #1 o #wrappers o rep_theory; | |
| 178 | val end_wrappers = rev o #2 o #wrappers o rep_theory; | |
| 179 | ||
| 180 | fun at_begin f = map_wrappers (apfst (cons (f, stamp ()))); | |
| 181 | fun at_end f = map_wrappers (apsnd (cons (f, stamp ()))); | |
| 182 | ||
| 48927 
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
 wenzelm parents: 
48638diff
changeset | 183 | fun begin_theory (name, pos) imports = | 
| 48638 | 184 | if name = Context.PureN then | 
| 48929 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 185 | (case imports of | 
| 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 186 | [thy] => init_markup (name, pos) thy | 
| 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 187 | | _ => error "Bad bootstrapping of theory Pure") | 
| 48638 | 188 | else | 
| 189 | let | |
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 190 | val thy = Context.begin_thy name imports; | 
| 48638 | 191 | val wrappers = begin_wrappers thy; | 
| 192 | in | |
| 193 | thy | |
| 48929 
05d4e5f660ae
entity markup for theory Pure, to enable hyperlinks etc.;
 wenzelm parents: 
48927diff
changeset | 194 | |> init_markup (name, pos) | 
| 72053 
4ed33ea8d957
prefer conservative extend/merge of theory naming;
 wenzelm parents: 
71674diff
changeset | 195 | |> Sign.init_naming | 
| 48638 | 196 | |> Sign.local_path | 
| 197 | |> apply_wrappers wrappers | |
| 198 | end; | |
| 24666 | 199 | |
| 200 | fun end_theory thy = | |
| 56057 
ad6bd8030d88
more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
 wenzelm parents: 
56025diff
changeset | 201 | thy | 
| 
ad6bd8030d88
more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
 wenzelm parents: 
56025diff
changeset | 202 | |> apply_wrappers (end_wrappers thy) | 
| 
ad6bd8030d88
more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
 wenzelm parents: 
56025diff
changeset | 203 | |> Sign.change_check | 
| 
ad6bd8030d88
more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
 wenzelm parents: 
56025diff
changeset | 204 | |> Context.finish_thy; | 
| 24666 | 205 | |
| 16443 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 206 | |
| 3996 | 207 | |
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 208 | (** primitive specifications **) | 
| 3814 | 209 | |
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 210 | (* raw axioms *) | 
| 1526 | 211 | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 212 | fun cert_axm ctxt (b, raw_tm) = | 
| 1526 | 213 | let | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 214 | val thy = Proof_Context.theory_of ctxt; | 
| 32789 
d89327de0b3c
removed redundant Sign.certify_prop, use Sign.cert_prop instead;
 wenzelm parents: 
30466diff
changeset | 215 | val t = Sign.cert_prop thy raw_tm | 
| 2979 | 216 | handle TYPE (msg, _, _) => error msg | 
| 16291 | 217 | | TERM (msg, _) => error msg; | 
| 35987 
7c728daf4876
disallow sort constraints in primitive Theory.add_axiom/add_def -- handled in Thm.add_axiom/add_def;
 wenzelm parents: 
35985diff
changeset | 218 | val _ = Term.no_dummy_patterns t handle TERM (msg, _) => error msg; | 
| 
7c728daf4876
disallow sort constraints in primitive Theory.add_axiom/add_def -- handled in Thm.add_axiom/add_def;
 wenzelm parents: 
35985diff
changeset | 219 | |
| 
7c728daf4876
disallow sort constraints in primitive Theory.add_axiom/add_def -- handled in Thm.add_axiom/add_def;
 wenzelm parents: 
35985diff
changeset | 220 | val bad_sorts = | 
| 
7c728daf4876
disallow sort constraints in primitive Theory.add_axiom/add_def -- handled in Thm.add_axiom/add_def;
 wenzelm parents: 
35985diff
changeset | 221 | rev ((fold_types o fold_atyps_sorts) (fn (_, []) => I | (T, _) => insert (op =) T) t []); | 
| 
7c728daf4876
disallow sort constraints in primitive Theory.add_axiom/add_def -- handled in Thm.add_axiom/add_def;
 wenzelm parents: 
35985diff
changeset | 222 | val _ = null bad_sorts orelse | 
| 
7c728daf4876
disallow sort constraints in primitive Theory.add_axiom/add_def -- handled in Thm.add_axiom/add_def;
 wenzelm parents: 
35985diff
changeset | 223 |       error ("Illegal sort constraints in primitive specification: " ^
 | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 224 | commas (map (Syntax.string_of_typ (Config.put show_sorts true ctxt)) bad_sorts)); | 
| 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 225 | in (b, Sign.no_vars ctxt t) end | 
| 42381 
309ec68442c6
added Binding.print convenience, which includes quote already;
 wenzelm parents: 
42375diff
changeset | 226 |   handle ERROR msg => cat_error msg ("The error(s) above occurred in axiom " ^ Binding.print b);
 | 
| 1526 | 227 | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 228 | fun add_axiom ctxt raw_axm thy = thy |> map_axioms (fn axioms => | 
| 1526 | 229 | let | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 230 | val axm = apsnd Logic.varify_global (cert_axm ctxt raw_axm); | 
| 61949 | 231 | val context = ctxt | 
| 232 | |> Sign.inherit_naming thy | |
| 233 | |> Context_Position.set_visible_generic false; | |
| 234 | val (_, axioms') = Name_Space.define context true axm axioms; | |
| 16443 
82a116532e3e
type theory, theory_ref, exception THEORY and related operations imported from Context;
 wenzelm parents: 
16369diff
changeset | 235 | in axioms' end); | 
| 1526 | 236 | |
| 237 | ||
| 19708 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 238 | (* dependencies *) | 
| 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 239 | |
| 61256 | 240 | fun const_dep thy (c, T) = ((Defs.Const, c), Sign.const_typargs thy (c, T)); | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 241 | fun type_dep (c, args) = ((Defs.Type, c), args); | 
| 61246 
077b88f9ec16
HOL typedef with explicit dependency checks according to Ondrey Kuncar, 07-Jul-2015, 16-Jul-2015, 30-Jul-2015;
 wenzelm parents: 
61044diff
changeset | 242 | |
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 243 | fun dependencies (context as (ctxt, _)) unchecked def description lhs rhs = | 
| 19708 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 244 | let | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 245 | fun prep (item, args) = | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 246 | (case fold Term.add_tvarsT args [] of | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 247 | [] => (item, map Logic.varifyT_global args) | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 248 |       | vs => raise TYPE ("Illegal schematic type variable(s)", map TVar vs, []));
 | 
| 61249 | 249 | |
| 74278 | 250 | val lhs_vars = TFrees.build (fold TFrees.add_tfreesT (snd lhs)); | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 251 | val rhs_extras = | 
| 74278 | 252 | TFrees.build (rhs |> fold (fold (TFrees.add_tfreesT_unless (TFrees.defined lhs_vars)) o snd)) | 
| 74279 
42db84eaee2d
clarified order of extra type variables, following names more often than occurrences;
 wenzelm parents: 
74278diff
changeset | 253 | |> TFrees.keys; | 
| 19708 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 254 | val _ = | 
| 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 255 | if null rhs_extras then () | 
| 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 256 |       else error ("Specification depends on extra type variables: " ^
 | 
| 39133 
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
 wenzelm parents: 
36610diff
changeset | 257 | commas_quote (map (Syntax.string_of_typ ctxt o TFree) rhs_extras) ^ | 
| 33701 
9dd1079cec3a
primitive defs: clarified def (axiom name) vs. description;
 wenzelm parents: 
33173diff
changeset | 258 | "\nThe error(s) above occurred in " ^ quote description); | 
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 259 | in Defs.define context unchecked def description (prep lhs) (map prep rhs) end; | 
| 19708 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 260 | |
| 61256 | 261 | fun cert_entry thy ((Defs.Const, c), args) = | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 262 | Sign.cert_term thy (Const (c, Sign.const_instance thy (c, args))) | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 263 | |> dest_Const |> const_dep thy | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 264 | | cert_entry thy ((Defs.Type, c), args) = | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 265 | Sign.certify_typ thy (Type (c, args)) |> dest_Type |> type_dep; | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 266 | |
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 267 | fun add_deps context a raw_lhs raw_rhs thy = | 
| 19708 
a508bde37a81
added add_deps, which actually records dependencies of consts (unlike add_finals);
 wenzelm parents: 
19700diff
changeset | 268 | let | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 269 | val (lhs as ((_, lhs_name), _)) :: rhs = map (cert_entry thy) (raw_lhs :: raw_rhs); | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 270 | val description = if a = "" then lhs_name ^ " axiom" else a; | 
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 271 | in thy |> map_defs (dependencies context false NONE description lhs rhs) end; | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 272 | |
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 273 | fun add_deps_global a x y thy = | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 274 | add_deps (Defs.global_context thy) a x y thy; | 
| 17706 | 275 | |
| 74339 | 276 | fun add_deps_const c thy = | 
| 277 | let val T = Logic.unvarifyT_global (Sign.the_const_type thy c); | |
| 278 | in thy |> add_deps_global "" (const_dep thy (c, T)) [] end; | |
| 279 | ||
| 280 | fun add_deps_type c thy = | |
| 281 | let | |
| 282 | val n = Sign.arity_number thy c; | |
| 283 | val args = map (fn a => TFree (a, [])) (Name.invent Name.context Name.aT n); | |
| 284 | in thy |> add_deps_global "" (type_dep (c, args)) [] end | |
| 285 | ||
| 33173 
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
 wenzelm parents: 
33168diff
changeset | 286 | fun specify_const decl thy = | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 287 | let val (t, thy') = Sign.declare_const_global decl thy; | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 288 | in (t, add_deps_global "" (const_dep thy' (dest_Const t)) [] thy') end; | 
| 25017 | 289 | |
| 17706 | 290 | |
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 291 | (* overloading *) | 
| 9280 | 292 | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 293 | fun check_overloading ctxt overloaded (c, T) = | 
| 16291 | 294 | let | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 295 | val thy = Proof_Context.theory_of ctxt; | 
| 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 296 | |
| 24763 | 297 | val declT = Sign.the_const_constraint thy c | 
| 298 | handle TYPE (msg, _, _) => error msg; | |
| 35845 
e5980f0ad025
renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
 wenzelm parents: 
34259diff
changeset | 299 | val T' = Logic.varifyT_global T; | 
| 16944 | 300 | |
| 39134 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
39133diff
changeset | 301 | fun message sorts txt = | 
| 16944 | 302 | [Pretty.block [Pretty.str "Specification of constant ", | 
| 39134 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
39133diff
changeset | 303 | Pretty.str c, Pretty.str " ::", Pretty.brk 1, | 
| 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
39133diff
changeset | 304 | Pretty.quote (Syntax.pretty_typ (Config.put show_sorts sorts ctxt) T)], | 
| 16944 | 305 | Pretty.str txt] |> Pretty.chunks |> Pretty.string_of; | 
| 16291 | 306 | in | 
| 16944 | 307 | if Sign.typ_instance thy (declT, T') then () | 
| 308 | else if Type.raw_instance (declT, T') then | |
| 39134 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
39133diff
changeset | 309 | error (message true "imposes additional sort constraints on the constant declaration") | 
| 16944 | 310 | else if overloaded then () | 
| 57510 | 311 | else | 
| 312 | error (message false "is strictly less general than the declared type (overloading required)") | |
| 9280 | 313 | end; | 
| 314 | ||
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 315 | |
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 316 | (* definitional axioms *) | 
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 317 | |
| 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 318 | local | 
| 16291 | 319 | |
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 320 | fun check_def (context as (ctxt, _)) thy unchecked overloaded (b, tm) defs = | 
| 16291 | 321 | let | 
| 29581 | 322 | val name = Sign.full_name thy b; | 
| 63395 | 323 | val ((lhs, rhs), _, _) = | 
| 63042 | 324 | Primitive_Defs.dest_def ctxt | 
| 325 |         {check_head = Term.is_Const,
 | |
| 326 | check_free_lhs = K true, | |
| 327 | check_free_rhs = K false, | |
| 328 | check_tfree = K false} tm | |
| 35988 
76ca601c941e
disallow premises in primitive Theory.add_def -- handle in Thm.add_def;
 wenzelm parents: 
35987diff
changeset | 329 | handle TERM (msg, _) => error msg; | 
| 
76ca601c941e
disallow premises in primitive Theory.add_def -- handle in Thm.add_def;
 wenzelm parents: 
35987diff
changeset | 330 | val lhs_const = Term.dest_Const (Term.head_of lhs); | 
| 61248 | 331 | |
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 332 | val rhs_consts = | 
| 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 333 | fold_aterms (fn Const const => insert (op =) (const_dep thy const) | _ => I) rhs []; | 
| 61248 | 334 | val rhs_types = | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61249diff
changeset | 335 | (fold_types o fold_subtypes) (fn Type t => insert (op =) (type_dep t) | _ => I) rhs []; | 
| 61248 | 336 | val rhs_deps = rhs_consts @ rhs_types; | 
| 337 | ||
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 338 | val _ = check_overloading ctxt overloaded lhs_const; | 
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 339 | in defs |> dependencies context unchecked (SOME name) name (const_dep thy lhs_const) rhs_deps end | 
| 18678 | 340 | handle ERROR msg => cat_error msg (Pretty.string_of (Pretty.block | 
| 42381 
309ec68442c6
added Binding.print convenience, which includes quote already;
 wenzelm parents: 
42375diff
changeset | 341 |    [Pretty.str ("The error(s) above occurred in definition " ^ Binding.print b ^ ":"),
 | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 342 | Pretty.fbrk, Pretty.quote (Syntax.pretty_term ctxt tm)])); | 
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 343 | |
| 16291 | 344 | in | 
| 345 | ||
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 346 | fun add_def (context as (ctxt, _)) unchecked overloaded raw_axm thy = | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 347 | let val axm = cert_axm ctxt raw_axm in | 
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 348 | thy | 
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61256diff
changeset | 349 | |> map_defs (check_def context thy unchecked overloaded axm) | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 350 | |> add_axiom ctxt axm | 
| 35985 
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
 wenzelm parents: 
35857diff
changeset | 351 | end; | 
| 16291 | 352 | |
| 353 | end; | |
| 3767 
e2bb53d8dd26
moved theory stuff (add_defs etc.) here from drule.ML;
 wenzelm parents: 
2979diff
changeset | 354 | |
| 14223 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14204diff
changeset | 355 | end; |