src/Pure/theory.ML
author wenzelm
Thu, 25 May 2006 16:51:39 +0200
changeset 19727 f5895f998402
parent 19708 a508bde37a81
child 19806 f860b7a98445
permissions -rw-r--r--
tuned;
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
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    10
  type theory
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    11
  type theory_ref
16495
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    12
  val sign_of: theory -> theory    (*obsolete*)
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    13
  val rep_theory: theory ->
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    14
   {axioms: term NameSpace.table,
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
    15
    defs: Defs.T,
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    16
    oracles: ((theory * Object.T -> term) * stamp) NameSpace.table}
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    17
  val parents_of: theory -> theory list
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
    18
  val ancestors_of: theory -> theory list
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    19
  val eq_thy: theory * theory -> bool
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    20
  val subthy: theory * theory -> bool
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    21
  val cert_axm: theory -> string * term -> string * term
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    22
  val read_def_axm: theory * (indexname -> typ option) * (indexname -> sort option) ->
6311
15652e058e28 token translation: real;
wenzelm
parents: 6188
diff changeset
    23
    string list -> string * string -> string * term
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    24
  val read_axm: theory -> string * string -> string * term
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    25
  val inferT_axm: theory -> string * term -> string * term
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    26
end
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    27
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    28
signature THEORY =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    29
sig
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    30
  include BASIC_THEORY
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    31
  include SIGN_THEORY
16495
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    32
  val begin_theory: string -> theory list -> theory
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    33
  val end_theory: theory -> theory
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    34
  val checkpoint: theory -> theory
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    35
  val copy: theory -> theory
16536
c5744af6b28a renamed init to init_data;
wenzelm
parents: 16495
diff changeset
    36
  val init_data: theory -> theory
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    37
  val axiom_space: theory -> NameSpace.T
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    38
  val oracle_space: theory -> NameSpace.T
16339
b02b6da609c3 axioms and oracles: NameSpace.table;
wenzelm
parents: 16313
diff changeset
    39
  val axioms_of: theory -> (string * term) list
b02b6da609c3 axioms and oracles: NameSpace.table;
wenzelm
parents: 16313
diff changeset
    40
  val all_axioms_of: theory -> (string * term) list
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
    41
  val defs_of : theory -> Defs.T
19570
f199cb2295fd added definitions_of;
wenzelm
parents: 19482
diff changeset
    42
  val definitions_of: theory -> string ->
f199cb2295fd added definitions_of;
wenzelm
parents: 19482
diff changeset
    43
    {module: string, name: string, lhs: typ, rhs: (string * typ) list} list
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    44
  val self_ref: theory -> theory_ref
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    45
  val deref: theory_ref -> theory
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    46
  val merge: theory * theory -> theory                     (*exception TERM*)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    47
  val merge_refs: theory_ref * theory_ref -> theory_ref    (*exception TERM*)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    48
  val requires: theory -> string -> string -> unit
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    49
  val assert_super: theory -> theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    50
  val add_axioms: (bstring * string) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    51
  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
    52
  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
    53
  val add_defs: bool -> bool -> (bstring * string) list -> theory -> theory
d370c3f5d3b2 Theory.add_defs(_i): added unchecked flag;
wenzelm
parents: 19614
diff changeset
    54
  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
    55
  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
    56
  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
    57
  val add_oracle: bstring * (theory * Object.T -> term) -> theory -> theory
16495
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    58
end
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    59
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    60
structure Theory: THEORY =
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    61
struct
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    62
19708
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
    63
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    64
(** type theory **)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    65
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    66
(* context operations *)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    67
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    68
type theory = Context.theory;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    69
type theory_ref = Context.theory_ref;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    70
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    71
val eq_thy = Context.eq_thy;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    72
val subthy = Context.subthy;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    73
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    74
val parents_of = Context.parents_of;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    75
val ancestors_of = Context.ancestors_of;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    76
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    77
val self_ref = Context.self_ref;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    78
val deref = Context.deref;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    79
val merge = Context.merge;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    80
val merge_refs = Context.merge_refs;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    81
16495
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    82
val begin_theory = Sign.local_path oo Context.begin_thy Sign.pp;
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    83
val end_theory = Context.finish_thy;
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    84
val checkpoint = Context.checkpoint_thy;
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    85
val copy = Context.copy_thy;
2e99aca906a7 added begin_theory, end_theory;
wenzelm
parents: 16443
diff changeset
    86
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    87
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    88
(* signature operations *)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    89
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    90
val sign_of = I;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    91
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    92
structure SignTheory: SIGN_THEORY = Sign;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    93
open SignTheory;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    94
2206
a9419797e196 added add_modesyntax(_i);
wenzelm
parents: 1960
diff changeset
    95
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    96
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    97
(** datatype thy **)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    98
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
    99
datatype thy = Thy of
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   100
 {axioms: term NameSpace.table,
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   101
  defs: Defs.T,
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   102
  oracles: ((theory * Object.T -> term) * stamp) NameSpace.table};
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   103
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   104
fun make_thy (axioms, defs, oracles) =
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   105
  Thy {axioms = axioms, defs = defs, oracles = oracles};
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   106
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   107
fun err_dup_axms dups = error ("Duplicate axiom(s): " ^ commas_quote dups);
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   108
fun err_dup_oras dups = error ("Duplicate oracle(s): " ^ commas_quote dups);
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   109
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   110
structure ThyData = TheoryDataFun
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   111
(struct
16536
c5744af6b28a renamed init to init_data;
wenzelm
parents: 16495
diff changeset
   112
  val name = "Pure/theory";
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   113
  type T = thy;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   114
  val empty = make_thy (NameSpace.empty_table, Defs.empty, NameSpace.empty_table);
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   115
  val copy = I;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   116
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   117
  fun extend (Thy {axioms, defs, oracles}) = make_thy (NameSpace.empty_table, defs, oracles);
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   118
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   119
  fun merge pp (thy1, thy2) =
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   120
    let
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   121
      val Thy {axioms = _, defs = defs1, oracles = oracles1} = thy1;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   122
      val Thy {axioms = _, defs = defs2, oracles = oracles2} = thy2;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   123
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   124
      val axioms = NameSpace.empty_table;
19693
ab816ca8df06 tuned Defs interfaces;
wenzelm
parents: 19630
diff changeset
   125
      val defs = Defs.merge pp (defs1, defs2);
17496
26535df536ae slight adaptions to library changes
haftmann
parents: 17038
diff changeset
   126
      val oracles = NameSpace.merge_tables (eq_snd (op =)) (oracles1, oracles2)
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   127
        handle Symtab.DUPS dups => err_dup_oras dups;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   128
    in make_thy (axioms, defs, oracles) end;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   129
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   130
  fun print _ _ = ();
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   131
end);
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   132
16536
c5744af6b28a renamed init to init_data;
wenzelm
parents: 16495
diff changeset
   133
val init_data = ThyData.init;
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   134
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   135
fun rep_theory thy = ThyData.get thy |> (fn Thy args => args);
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   136
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   137
fun map_thy f = ThyData.map (fn (Thy {axioms, defs, oracles}) =>
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   138
  make_thy (f (axioms, defs, oracles)));
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   139
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   140
fun map_axioms f = map_thy (fn (axioms, defs, oracles) => (f axioms, defs, oracles));
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   141
fun map_defs f = map_thy (fn (axioms, defs, oracles) => (axioms, f defs, oracles));
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   142
fun map_oracles f = map_thy (fn (axioms, defs, oracles) => (axioms, defs, f oracles));
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   143
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   144
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   145
(* basic operations *)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   146
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   147
val axiom_space = #1 o #axioms o rep_theory;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   148
val oracle_space = #1 o #oracles o rep_theory;
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   149
16339
b02b6da609c3 axioms and oracles: NameSpace.table;
wenzelm
parents: 16313
diff changeset
   150
val axioms_of = Symtab.dest o #2 o #axioms o rep_theory;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19428
diff changeset
   151
fun all_axioms_of thy = maps axioms_of (thy :: ancestors_of thy);
16339
b02b6da609c3 axioms and oracles: NameSpace.table;
wenzelm
parents: 16313
diff changeset
   152
16803
wenzelm
parents: 16743
diff changeset
   153
val defs_of = #defs o rep_theory;
16743
21dbff595bf6 1) all theorems in Orderings can now be given as a parameter
obua
parents: 16600
diff changeset
   154
19570
f199cb2295fd added definitions_of;
wenzelm
parents: 19482
diff changeset
   155
fun definitions_of thy c =
19700
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   156
  let
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   157
    val inst = Consts.instance (Sign.consts_of thy);
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   158
    val defs = defs_of thy;
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   159
  in
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   160
    Defs.specifications_of defs c
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   161
    |> map_filter (fn (_, {is_def, module, name, lhs, rhs}) =>
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   162
      if is_def then SOME {module = module, name = name, lhs = inst (c, lhs),
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   163
        rhs = map (fn (d, Us) => (d, inst (d, Us))) rhs}
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   164
      else NONE)
e02af528ceef Defs.specifications_of: lhs/rhs now use typargs;
wenzelm
parents: 19693
diff changeset
   165
  end;
19570
f199cb2295fd added definitions_of;
wenzelm
parents: 19482
diff changeset
   166
4970
8b65444edbb0 Changed require to requires for MLWorks
paulson
parents: 4912
diff changeset
   167
fun requires thy name what =
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   168
  if Context.exists_name name thy then ()
4846
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
   169
  else error ("Require theory " ^ quote name ^ " as an ancestor for " ^ what);
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   170
6369
2be75edfe58c added assert_super;
wenzelm
parents: 6311
diff changeset
   171
fun assert_super thy1 thy2 =
2be75edfe58c added assert_super;
wenzelm
parents: 6311
diff changeset
   172
  if subthy (thy1, thy2) then thy2
2be75edfe58c added assert_super;
wenzelm
parents: 6311
diff changeset
   173
  else raise THEORY ("Not a super theory", [thy1, thy2]);
2be75edfe58c added assert_super;
wenzelm
parents: 6311
diff changeset
   174
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   175
6311
15652e058e28 token translation: real;
wenzelm
parents: 6188
diff changeset
   176
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   177
(** add axioms **)
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   178
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   179
(* prepare axioms *)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   180
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18338
diff changeset
   181
fun err_in_axm msg name =
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18338
diff changeset
   182
  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
   183
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   184
fun cert_axm thy (name, raw_tm) =
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   185
  let
18968
52639ad19a96 adapted Sign.infer_types(_simult), Sign.certify_term/prop;
wenzelm
parents: 18943
diff changeset
   186
    val (t, T, _) = Sign.certify_prop thy raw_tm
2979
db6941221197 improved type check error messages;
wenzelm
parents: 2693
diff changeset
   187
      handle TYPE (msg, _, _) => error msg
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   188
        | TERM (msg, _) => error msg;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   189
  in
9537
7e0ba737f98e axioms: Term.no_dummy_patterns;
wenzelm
parents: 9332
diff changeset
   190
    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
   191
    (name, Sign.no_vars (Sign.pp thy) t)
9629
50f1c4222aea tuned error handling;
wenzelm
parents: 9537
diff changeset
   192
  end;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   193
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   194
fun read_def_axm (thy, types, sorts) used (name, str) =
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   195
  let
18857
c4b4fbd74ffb advanced translations: Context.generic;
wenzelm
parents: 18763
diff changeset
   196
    val ts = Syntax.read (Context.Theory thy) (Sign.is_logtype thy) (Sign.syn_of thy) propT str;
18968
52639ad19a96 adapted Sign.infer_types(_simult), Sign.certify_term/prop;
wenzelm
parents: 18943
diff changeset
   197
    val (t, _) =
52639ad19a96 adapted Sign.infer_types(_simult), Sign.certify_term/prop;
wenzelm
parents: 18943
diff changeset
   198
      Sign.infer_types (Sign.pp thy) thy (Sign.consts_of thy) types sorts used true (ts, propT);
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   199
  in cert_axm thy (name, t) end
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18338
diff changeset
   200
  handle ERROR msg => err_in_axm msg name;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   201
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   202
fun read_axm thy name_str = read_def_axm (thy, K NONE, K NONE) [] name_str;
5057
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
   203
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   204
fun inferT_axm thy (name, pre_tm) =
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   205
  let
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   206
    val pp = Sign.pp thy;
18968
52639ad19a96 adapted Sign.infer_types(_simult), Sign.certify_term/prop;
wenzelm
parents: 18943
diff changeset
   207
    val (t, _) =
52639ad19a96 adapted Sign.infer_types(_simult), Sign.certify_term/prop;
wenzelm
parents: 18943
diff changeset
   208
      Sign.infer_types pp thy (Sign.consts_of thy) (K NONE) (K NONE) [] true ([pre_tm], propT);
18943
947d3a694654 moved no_vars to sign.ML;
wenzelm
parents: 18857
diff changeset
   209
  in (name, Sign.no_vars pp t) end
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18338
diff changeset
   210
  handle ERROR msg => err_in_axm msg name;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   211
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   212
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   213
(* add_axioms(_i) *)
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   214
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   215
local
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   216
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   217
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
   218
  let
16991
39f5760f72d7 Compress.term;
wenzelm
parents: 16944
diff changeset
   219
    val axms = map (apsnd (Compress.term thy o Logic.varify) o prep_axm thy) raw_axms;
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   220
    val axioms' = NameSpace.extend_table (Sign.naming_of thy) (axioms, axms)
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   221
      handle Symtab.DUPS dups => err_dup_axms dups;
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   222
  in axioms' end);
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   223
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   224
in
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   225
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   226
val add_axioms = gen_add_axioms read_axm;
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   227
val add_axioms_i = gen_add_axioms cert_axm;
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   228
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   229
end;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   230
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   231
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   232
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   233
(** add constant definitions **)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   234
19708
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   235
(* dependencies *)
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   236
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   237
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
   238
  let
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   239
    val pp = Sign.pp thy;
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   240
    val consts = Sign.consts_of thy;
19727
wenzelm
parents: 19708
diff changeset
   241
    fun prep const =
wenzelm
parents: 19708
diff changeset
   242
      let val Const (c, T) = Sign.no_vars pp (Const const)
wenzelm
parents: 19708
diff changeset
   243
      in (c, Consts.typargs consts (c, Compress.typ thy (Type.varifyT T))) end;
19708
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   244
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   245
    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
   246
    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
   247
      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
   248
    val _ =
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   249
      if null rhs_extras then ()
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   250
      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
   251
        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
   252
        "\nThe error(s) above occurred in " ^ quote name);
19727
wenzelm
parents: 19708
diff changeset
   253
  in Defs.define pp unchecked is_def (Context.theory_name thy) 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
   254
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   255
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
   256
  let
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   257
    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
   258
    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
   259
  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
   260
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   261
16944
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   262
(* check_overloading *)
9280
78a9bca983ac Tightened up check of types in constant defs.
nipkow
parents: 8897
diff changeset
   263
16944
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   264
fun check_overloading thy overloaded (c, T) =
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   265
  let
16944
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   266
    val declT =
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   267
      (case Sign.const_constraint thy c of
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   268
        NONE => error ("Undeclared constant " ^ quote c)
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   269
      | SOME declT => declT);
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   270
    val T' = Type.varifyT T;
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   271
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   272
    fun message txt =
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   273
      [Pretty.block [Pretty.str "Specification of constant ",
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   274
        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
   275
        Pretty.str txt] |> Pretty.chunks |> Pretty.string_of;
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   276
  in
16944
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   277
    if Sign.typ_instance thy (declT, T') then ()
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   278
    else if Type.raw_instance (declT, T') then
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   279
      error (Library.setmp show_sorts true
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   280
        message "imposes additional sort constraints on the constant declaration")
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   281
    else if overloaded then ()
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   282
    else warning (message "is strictly less general than the declared type");
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   283
    (c, T)
9280
78a9bca983ac Tightened up check of types in constant defs.
nipkow
parents: 8897
diff changeset
   284
  end;
78a9bca983ac Tightened up check of types in constant defs.
nipkow
parents: 8897
diff changeset
   285
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   286
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   287
(* check_def *)
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   288
19630
d370c3f5d3b2 Theory.add_defs(_i): added unchecked flag;
wenzelm
parents: 19614
diff changeset
   289
fun check_def thy unchecked overloaded (bname, tm) defs =
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   290
  let
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   291
    val name = Sign.full_name thy bname;
19693
ab816ca8df06 tuned Defs interfaces;
wenzelm
parents: 19630
diff changeset
   292
    val (lhs_const, rhs) = Sign.cert_def (Sign.pp thy) tm;
16944
83ea7e3c6ec9 check_overloading replaces datatype overloading;
wenzelm
parents: 16883
diff changeset
   293
    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
   294
    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
   295
  in defs |> dependencies thy unchecked true name lhs_const rhs_consts end
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18338
diff changeset
   296
  handle ERROR msg => cat_error msg (Pretty.string_of (Pretty.block
16883
a89fafe1cbd8 tuned defs interface;
wenzelm
parents: 16803
diff changeset
   297
   [Pretty.str ("The error(s) above occurred in definition " ^ quote bname ^ ":"),
19693
ab816ca8df06 tuned Defs interfaces;
wenzelm
parents: 19630
diff changeset
   298
    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
   299
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   300
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   301
(* add_defs(_i) *)
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   302
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   303
local
9320
803cb9c9d4dd const_deps: unit Graph.T;
wenzelm
parents: 9282
diff changeset
   304
19630
d370c3f5d3b2 Theory.add_defs(_i): added unchecked flag;
wenzelm
parents: 19614
diff changeset
   305
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
   306
  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
   307
    thy
19630
d370c3f5d3b2 Theory.add_defs(_i): added unchecked flag;
wenzelm
parents: 19614
diff changeset
   308
    |> map_defs (fold (check_def thy unchecked overloaded) axms)
9320
803cb9c9d4dd const_deps: unit Graph.T;
wenzelm
parents: 9282
diff changeset
   309
    |> add_axioms_i axms
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   310
  end;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   311
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   312
in
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   313
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   314
val add_defs_i = gen_add_defs cert_axm;
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   315
val add_defs = gen_add_defs read_axm;
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   316
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   317
end;
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   318
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   319
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   320
(* add_finals(_i) *)
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14204
diff changeset
   321
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   322
local
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   323
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   324
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
   325
  let
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   326
    fun const_of (Const const) = const
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   327
      | 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
   328
      | 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
   329
    fun specify (c, T) = dependencies thy false false (c ^ " axiom") (c, T) [];
a508bde37a81 added add_deps, which actually records dependencies of consts (unlike add_finals);
wenzelm
parents: 19700
diff changeset
   330
    val finalize = specify o check_overloading thy overloaded o const_of o prep_term thy;
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   331
  in thy |> map_defs (fold finalize args) end;
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   332
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14204
diff changeset
   333
in
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   334
17706
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   335
val add_finals = gen_add_finals Sign.read_term;
e534e39f3531 back to simple 'defs' (cf. revision 1.79);
wenzelm
parents: 17496
diff changeset
   336
val add_finals_i = gen_add_finals Sign.cert_term;
16291
ea4e64b2f25a renamed const_deps to defs;
wenzelm
parents: 16198
diff changeset
   337
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14204
diff changeset
   338
end;
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14204
diff changeset
   339
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14204
diff changeset
   340
3878
0258594baaa9 remove merge_theories;
wenzelm
parents: 3865
diff changeset
   341
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   342
(** add oracle **)
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   343
16443
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   344
fun add_oracle (bname, oracle) thy = thy |> map_oracles (fn oracles =>
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   345
  NameSpace.extend_table (Sign.naming_of thy) (oracles, [(bname, (oracle, stamp ()))])
82a116532e3e type theory, theory_ref, exception THEORY and related operations imported from Context;
wenzelm
parents: 16369
diff changeset
   346
    handle Symtab.DUPS dups => err_dup_oras dups);
3885
dccac762b0be added merge_theories (new name arg);
wenzelm
parents: 3878
diff changeset
   347
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   348
end;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   349
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   350
structure BasicTheory: BASIC_THEORY = Theory;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   351
open BasicTheory;