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