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