src/Pure/theory.ML
author wenzelm
Sat, 21 Nov 1998 12:17:18 +0100
changeset 5944 dcc446da8e19
parent 5905 68cdba6c178f
child 6188 c40e5ac04e3e
permissions -rw-r--r--
added undos, redos;
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
    Copyright   1996  University of Cambridge
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
     5
5025
fc1a2421800f tuned comments;
wenzelm
parents: 4996
diff changeset
     6
The abstract type "theory" of theories.
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
     7
*)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
     8
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
     9
signature BASIC_THEORY =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    10
sig
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    11
  type theory
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    12
  exception THEORY of string * theory list
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    13
  val rep_theory: theory ->
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
    14
    {sign: Sign.sg,
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    15
      axioms: term Symtab.table,
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
    16
      oracles: ((Sign.sg * Object.T -> term) * stamp) Symtab.table,
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
    17
      parents: theory list,
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
    18
      ancestors: theory list}
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    19
  val sign_of: theory -> Sign.sg
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    20
  val syn_of: theory -> Syntax.syntax
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    21
  val parents_of: theory -> theory list
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
    22
  val ancestors_of: theory -> theory list
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    23
  val subthy: theory * theory -> bool
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    24
  val eq_thy: theory * theory -> bool
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    25
  val cert_axm: Sign.sg -> string * term -> string * term
5057
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
    26
  val read_def_axm: Sign.sg * (indexname -> typ option) * (indexname -> sort option) -> string list ->
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
    27
    string * string -> string * term
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    28
  val read_axm: Sign.sg -> string * string -> string * term
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    29
  val inferT_axm: Sign.sg -> string * term -> string * term
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    30
  val merge_theories: string -> theory * theory -> theory
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    31
end
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    32
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    33
signature THEORY =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    34
sig
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
    35
  include BASIC_THEORY
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    36
  val axiomK: string
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    37
  val oracleK: string
4912
9ac1c22dfe43 fixed comment;
wenzelm
parents: 4846
diff changeset
    38
  (*theory extension primitives*)
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    39
  val add_classes: (bclass * xclass list) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    40
  val add_classes_i: (bclass * class list) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    41
  val add_classrel: (xclass * xclass) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    42
  val add_classrel_i: (class * class) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    43
  val add_defsort: xsort -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    44
  val add_defsort_i: sort -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    45
  val add_types: (bstring * int * mixfix) list -> theory -> theory
4846
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
    46
  val add_nonterminals: bstring list -> theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    47
  val add_tyabbrs: (bstring * string list * string * mixfix) list
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    48
    -> theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    49
  val add_tyabbrs_i: (bstring * string list * typ * mixfix) list
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    50
    -> theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    51
  val add_arities: (xstring * xsort list * xsort) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    52
  val add_arities_i: (string * sort list * sort) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    53
  val add_consts: (bstring * string * mixfix) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    54
  val add_consts_i: (bstring * typ * mixfix) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    55
  val add_syntax: (bstring * string * mixfix) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    56
  val add_syntax_i: (bstring * typ * mixfix) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    57
  val add_modesyntax: string * bool -> (bstring * string * mixfix) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    58
  val add_modesyntax_i: string * bool -> (bstring * typ * mixfix) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    59
  val add_trfuns:
4344
e000b5db4087 tuned trfuns types;
wenzelm
parents: 4257
diff changeset
    60
    (string * (Syntax.ast list -> Syntax.ast)) list *
e000b5db4087 tuned trfuns types;
wenzelm
parents: 4257
diff changeset
    61
    (string * (term list -> term)) list *
e000b5db4087 tuned trfuns types;
wenzelm
parents: 4257
diff changeset
    62
    (string * (term list -> term)) list *
e000b5db4087 tuned trfuns types;
wenzelm
parents: 4257
diff changeset
    63
    (string * (Syntax.ast list -> Syntax.ast)) list -> theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    64
  val add_trfunsT:
4344
e000b5db4087 tuned trfuns types;
wenzelm
parents: 4257
diff changeset
    65
    (string * (bool -> typ -> term list -> term)) list -> theory -> theory
2693
8300bba275e3 added add_tokentrfuns;
wenzelm
parents: 2385
diff changeset
    66
  val add_tokentrfuns:
8300bba275e3 added add_tokentrfuns;
wenzelm
parents: 2385
diff changeset
    67
    (string * string * (string -> string * int)) list -> theory -> theory
4617
cea2a5b5ee10 tuned add_trrules;
wenzelm
parents: 4488
diff changeset
    68
  val add_trrules: (xstring * string) Syntax.trrule list -> theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    69
  val add_trrules_i: Syntax.ast Syntax.trrule list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    70
  val add_axioms: (bstring * string) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    71
  val add_axioms_i: (bstring * term) list -> theory -> theory
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
    72
  val add_oracle: bstring * (Sign.sg * Object.T -> term) -> theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    73
  val add_defs: (bstring * string) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    74
  val add_defs_i: (bstring * term) list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    75
  val add_path: string -> theory -> theory
4846
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
    76
  val parent_path: theory -> theory
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
    77
  val root_path: theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    78
  val add_space: string * string list -> theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    79
  val add_name: string -> theory -> theory
5862
3a1f9ec7c8a2 val copy: theory -> theory;
wenzelm
parents: 5837
diff changeset
    80
  val copy: theory -> theory
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    81
  val prep_ext: theory -> theory
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    82
  val prep_ext_merge: theory list -> theory
4970
8b65444edbb0 Changed require to requires for MLWorks
paulson
parents: 4912
diff changeset
    83
  val requires: theory -> string -> string -> unit
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
    84
  val pre_pure: theory
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    85
end;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    86
5642
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    87
signature THEORY_PRIVATE =
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    88
sig
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    89
  include THEORY
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    90
  val init_data: Object.kind -> (Object.T * (Object.T -> Object.T) *
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    91
    (Object.T * Object.T -> Object.T) * (Sign.sg -> Object.T -> unit)) -> theory -> theory
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    92
  val print_data: Object.kind -> theory -> unit
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    93
  val get_data: Object.kind -> (Object.T -> 'a) -> theory -> 'a
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    94
  val put_data: Object.kind -> ('a -> Object.T) -> 'a -> theory -> theory
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    95
end;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    96
5642
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    97
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5057
diff changeset
    98
structure Theory: THEORY_PRIVATE =
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
    99
struct
2206
a9419797e196 added add_modesyntax(_i);
wenzelm
parents: 1960
diff changeset
   100
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   101
2206
a9419797e196 added add_modesyntax(_i);
wenzelm
parents: 1960
diff changeset
   102
(** datatype theory **)
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   103
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   104
datatype theory =
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   105
  Theory of {
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   106
    sign: Sign.sg,
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   107
    axioms: term Symtab.table,
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   108
    oracles: ((Sign.sg * Object.T -> term) * stamp) Symtab.table,
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   109
    parents: theory list,
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   110
    ancestors: theory list};
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   111
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   112
fun make_theory sign axms oras parents ancestors =
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   113
  Theory {sign = sign, axioms = axms, oracles = oras,
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   114
    parents = parents, ancestors = ancestors};
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   115
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   116
fun rep_theory (Theory args) = args;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   117
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   118
val sign_of = #sign o rep_theory;
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   119
val syn_of = #syn o Sign.rep_sg o sign_of;
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   120
val parents_of = #parents o rep_theory;
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   121
val ancestors_of = #ancestors o rep_theory;
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   122
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   123
(*errors involving theories*)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   124
exception THEORY of string * theory list;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   125
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   126
(*compare theories*)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   127
val subthy = Sign.subsig o pairself sign_of;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   128
val eq_thy = Sign.eq_sg o pairself sign_of;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   129
4846
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
   130
(*check for some named theory*)
4970
8b65444edbb0 Changed require to requires for MLWorks
paulson
parents: 4912
diff changeset
   131
fun requires thy name what =
4846
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
   132
  if exists (equal name) (Sign.stamp_names_of (sign_of thy)) then ()
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
   133
  else error ("Require theory " ^ quote name ^ " as an ancestor for " ^ what);
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   134
4846
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
   135
(*partial Pure theory*)
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   136
val pre_pure = make_theory Sign.pre_pure Symtab.empty Symtab.empty [] [];
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   137
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   138
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   139
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   140
(** extend theory **)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   141
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   142
(*name space kinds*)
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   143
val axiomK = "axiom";
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   144
val oracleK = "oracle";
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   145
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   146
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   147
(* extend logical part of a theory *)
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   148
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   149
fun err_dup_axms names =
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   150
  error ("Duplicate axiom name(s) " ^ commas_quote names);
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   151
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   152
fun err_dup_oras names =
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   153
  error ("Duplicate oracles " ^ commas_quote names);
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   154
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   155
fun ext_theory thy ext_sg new_axms new_oras =
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   156
  let
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   157
    val Theory {sign, axioms, oracles, parents, ancestors} = thy;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   158
    val draft = Sign.is_draft sign;
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   159
    val axioms' =
4488
3e56603fde06 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4344
diff changeset
   160
      Symtab.extend (if draft then axioms else Symtab.empty, new_axms)
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   161
        handle Symtab.DUPS names => err_dup_axms names;
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   162
    val oracles' =
4488
3e56603fde06 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4344
diff changeset
   163
      Symtab.extend (oracles, new_oras)
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   164
        handle Symtab.DUPS names => err_dup_oras names;
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   165
    val (parents', ancestors') =
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   166
      if draft then (parents, ancestors) else ([thy], thy :: ancestors);
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   167
  in
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   168
    make_theory (ext_sg sign) axioms' oracles' parents' ancestors'
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   169
  end;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   170
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   171
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   172
(* extend signature of a theory *)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   173
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   174
fun ext_sign extfun decls thy = ext_theory thy (extfun decls) [] [];
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   175
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   176
val add_classes      = ext_sign Sign.add_classes;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   177
val add_classes_i    = ext_sign Sign.add_classes_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   178
val add_classrel     = ext_sign Sign.add_classrel;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   179
val add_classrel_i   = ext_sign Sign.add_classrel_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   180
val add_defsort      = ext_sign Sign.add_defsort;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   181
val add_defsort_i    = ext_sign Sign.add_defsort_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   182
val add_types        = ext_sign Sign.add_types;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   183
val add_nonterminals = ext_sign Sign.add_nonterminals;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   184
val add_tyabbrs      = ext_sign Sign.add_tyabbrs;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   185
val add_tyabbrs_i    = ext_sign Sign.add_tyabbrs_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   186
val add_arities      = ext_sign Sign.add_arities;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   187
val add_arities_i    = ext_sign Sign.add_arities_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   188
val add_consts       = ext_sign Sign.add_consts;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   189
val add_consts_i     = ext_sign Sign.add_consts_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   190
val add_syntax       = ext_sign Sign.add_syntax;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   191
val add_syntax_i     = ext_sign Sign.add_syntax_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   192
val add_modesyntax   = curry (ext_sign Sign.add_modesyntax);
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   193
val add_modesyntax_i = curry (ext_sign Sign.add_modesyntax_i);
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   194
val add_trfuns       = ext_sign Sign.add_trfuns;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   195
val add_trfunsT      = ext_sign Sign.add_trfunsT;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   196
val add_tokentrfuns  = ext_sign Sign.add_tokentrfuns;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   197
val add_trrules      = ext_sign Sign.add_trrules;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   198
val add_trrules_i    = ext_sign Sign.add_trrules_i;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   199
val add_path         = ext_sign Sign.add_path;
4846
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
   200
val parent_path      = add_path "..";
9c072489a9e7 renamed setup to apply;
wenzelm
parents: 4786
diff changeset
   201
val root_path        = add_path "/";
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   202
val add_space        = ext_sign Sign.add_space;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   203
val add_name         = ext_sign Sign.add_name;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   204
val prep_ext         = ext_sign (K Sign.prep_ext) ();
5862
3a1f9ec7c8a2 val copy: theory -> theory;
wenzelm
parents: 5837
diff changeset
   205
val copy             = prep_ext;	(*an approximation ...*)
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   206
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   207
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   208
(** add axioms **)
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   209
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   210
(* prepare axioms *)
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
fun err_in_axm name =
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   213
  error ("The error(s) above occurred in axiom " ^ quote name);
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   214
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   215
fun no_vars tm =
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   216
  if null (term_vars tm) andalso null (term_tvars tm) then tm
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   217
  else error "Illegal schematic variable(s) in term";
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
fun cert_axm sg (name, raw_tm) =
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   220
  let
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   221
    val (t, T, _) = Sign.certify_term sg raw_tm
2979
db6941221197 improved type check error messages;
wenzelm
parents: 2693
diff changeset
   222
      handle TYPE (msg, _, _) => error msg
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   223
           | TERM (msg, _) => error msg;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   224
  in
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   225
    assert (T = propT) "Term not of type prop";
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   226
    (name, no_vars t)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   227
  end
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   228
  handle ERROR => err_in_axm name;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   229
5057
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
   230
(*some duplication of code with read_def_cterm*)
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
   231
fun read_def_axm (sg, types, sorts) used (name, str) = 
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   232
  let
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   233
    val ts = Syntax.read (#syn (Sign.rep_sg sg)) propT str;
5057
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
   234
    val (t, _) = Sign.infer_types sg types sorts used true (ts, propT);
1960
ae390b599213 Improved error handling: if there are syntax or type-checking
paulson
parents: 1539
diff changeset
   235
  in cert_axm sg (name,t) end
ae390b599213 Improved error handling: if there are syntax or type-checking
paulson
parents: 1539
diff changeset
   236
  handle ERROR => err_in_axm name;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   237
5057
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
   238
fun read_axm sg name_str = read_def_axm (sg, K None, K None) [] name_str;
16e3fadd759e added read_def_axm;
wenzelm
parents: 5025
diff changeset
   239
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   240
fun inferT_axm sg (name, pre_tm) =
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   241
  let
4251
f6bd8332eb32 tuned infer_types interface;
wenzelm
parents: 4141
diff changeset
   242
    val (t, _) = Sign.infer_types sg (K None) (K None) [] true ([pre_tm], propT);
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   243
  in (name, no_vars t) end
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   244
  handle ERROR => err_in_axm name;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   245
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   246
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   247
(* extend axioms of a theory *)
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   248
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   249
fun ext_axms prep_axm raw_axms (thy as Theory {sign, ...}) =
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   250
  let
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   251
    val raw_axms' = map (apfst (Sign.full_name sign)) raw_axms;
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   252
    val axioms =
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   253
      map (apsnd (Term.compress_term o Logic.varify) o prep_axm sign) raw_axms';
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   254
    val ext_sg = Sign.add_space (axiomK, map fst axioms);
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   255
  in
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   256
    ext_theory thy ext_sg axioms []
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   257
  end;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   258
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   259
val add_axioms = ext_axms read_axm;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   260
val add_axioms_i = ext_axms cert_axm;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   261
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   262
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   263
(* add oracle **)
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   264
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   265
fun add_oracle (raw_name, oracle) (thy as Theory {sign, ...}) =
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   266
  let
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   267
    val name = Sign.full_name sign raw_name;
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   268
    val ext_sg = Sign.add_space (oracleK, [name]);
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   269
  in
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   270
    ext_theory thy ext_sg [] [(name, (oracle, stamp ()))]
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   271
  end;
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   272
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   273
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   274
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   275
(** add constant definitions **)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   276
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   277
(* all_axioms_of *)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   278
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   279
(*results may contain duplicates!*)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   280
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   281
fun all_axioms_of thy =
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   282
  flat (map (Symtab.dest o #axioms o rep_theory) (thy :: ancestors_of thy));
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   283
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   284
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   285
(* clash_types, clash_consts *)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   286
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   287
(*check if types have common instance (ignoring sorts)*)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   288
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   289
fun clash_types ty1 ty2 =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   290
  let
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   291
    val ty1' = Type.varifyT ty1;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   292
    val ty2' = incr_tvar (maxidx_of_typ ty1' + 1) (Type.varifyT ty2);
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   293
  in
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   294
    Type.raw_unify (ty1', ty2')
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   295
  end;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   296
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   297
fun clash_consts (c1, ty1) (c2, ty2) =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   298
  c1 = c2 andalso clash_types ty1 ty2;
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
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   301
(* clash_defns *)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   302
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   303
fun clash_defn c_ty (name, tm) =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   304
  let val (c, ty') = dest_Const (head_of (fst (Logic.dest_equals tm))) in
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   305
    if clash_consts c_ty (c, ty') then Some (name, ty') else None
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   306
  end handle TERM _ => None;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   307
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   308
fun clash_defns c_ty axms =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   309
  distinct (mapfilter (clash_defn c_ty) axms);
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   310
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   311
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   312
(* dest_defn *)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   313
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   314
fun dest_defn tm =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   315
  let
3787
67571f49ebe3 new internal forms: add_classes_i, add_classrel_i, add_defsort_i, add_arities_i
wenzelm
parents: 3767
diff changeset
   316
    fun err msg = raise TERM (msg, [tm]);
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   317
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   318
    val (lhs, rhs) = Logic.dest_equals (Logic.strip_imp_concl tm)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   319
      handle TERM _ => err "Not a meta-equality (==)";
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   320
    val (head, args) = strip_comb lhs;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   321
    val (c, ty) = dest_Const head
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   322
      handle TERM _ => err "Head of lhs not a constant";
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
    fun occs_const (Const c_ty') = (c_ty' = (c, ty))
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   325
      | occs_const (Abs (_, _, t)) = occs_const t
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   326
      | occs_const (t $ u) = occs_const t orelse occs_const u
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   327
      | occs_const _ = false;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   328
4141
b76a49490833 adapted add_trfunsT;
wenzelm
parents: 4124
diff changeset
   329
    fun dest_free (Free (x, _)) = x
b76a49490833 adapted add_trfunsT;
wenzelm
parents: 4124
diff changeset
   330
      | dest_free (Const ("TYPE", Type ("itself", [TFree (x, _)]))) = x
b76a49490833 adapted add_trfunsT;
wenzelm
parents: 4124
diff changeset
   331
      | dest_free _ = raise Match;
b76a49490833 adapted add_trfunsT;
wenzelm
parents: 4124
diff changeset
   332
b76a49490833 adapted add_trfunsT;
wenzelm
parents: 4124
diff changeset
   333
    val show_frees = commas_quote o map dest_free;
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   334
    val show_tfrees = commas_quote o map fst;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   335
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   336
    val lhs_dups = duplicates args;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   337
    val rhs_extras = gen_rems (op =) (term_frees rhs, args);
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   338
    val rhs_extrasT = gen_rems (op =) (term_tfrees rhs, typ_tfrees ty);
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   339
  in
4141
b76a49490833 adapted add_trfunsT;
wenzelm
parents: 4124
diff changeset
   340
    if not (forall (can dest_free) args) then
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   341
      err "Arguments (on lhs) must be variables"
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   342
    else if not (null lhs_dups) then
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   343
      err ("Duplicate variables on lhs: " ^ show_frees lhs_dups)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   344
    else if not (null rhs_extras) then
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   345
      err ("Extra variables on rhs: " ^ show_frees rhs_extras)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   346
    else if not (null rhs_extrasT) then
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   347
      err ("Extra type variables on rhs: " ^ show_tfrees rhs_extrasT)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   348
    else if occs_const rhs then
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   349
      err ("Constant to be defined occurs on rhs")
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   350
    else (c, ty)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   351
  end;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   352
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   353
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   354
(* check_defn *)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   355
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   356
fun err_in_defn sg name msg =
4974
45b7a51342a1 fixed error msgs;
wenzelm
parents: 4970
diff changeset
   357
  (error_msg msg; error ("The error(s) above occurred in definition " ^
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   358
    quote (Sign.full_name sg name)));
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   359
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   360
fun check_defn sign (axms, (name, tm)) =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   361
  let
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   362
    fun show_const (c, ty) = quote (Pretty.string_of (Pretty.block
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   363
      [Pretty.str (c ^ " ::"), Pretty.brk 1, Sign.pretty_typ sign ty]));
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   364
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   365
    fun show_defn c (dfn, ty') = show_const (c, ty') ^ " in " ^ dfn;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   366
    fun show_defns c = cat_lines o map (show_defn c);
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   367
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   368
    val (c, ty) = dest_defn tm
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   369
      handle TERM (msg, _) => err_in_defn sign name msg;
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   370
    val defns = clash_defns (c, ty) axms;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   371
  in
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   372
    if not (null defns) then
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   373
      err_in_defn sign name ("Definition of " ^ show_const (c, ty) ^
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   374
        "\nclashes with " ^ show_defns c defns)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   375
    else (name, tm) :: axms
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   376
  end;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   377
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   378
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   379
(* add_defs *)
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   380
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   381
fun ext_defns prep_axm raw_axms thy =
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   382
  let
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   383
    val axms = map (prep_axm (sign_of thy)) raw_axms;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   384
    val all_axms = all_axioms_of thy;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   385
  in
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   386
    foldl (check_defn (sign_of thy)) (all_axms, axms);
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   387
    add_axioms_i axms thy
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   388
  end;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   389
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   390
val add_defs_i = ext_defns cert_axm;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   391
val add_defs = ext_defns read_axm;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   392
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   393
3878
0258594baaa9 remove merge_theories;
wenzelm
parents: 3865
diff changeset
   394
3865
0035d1f97096 added init_data, get_data, put_data;
wenzelm
parents: 3814
diff changeset
   395
(** additional theory data **)
0035d1f97096 added init_data, get_data, put_data;
wenzelm
parents: 3814
diff changeset
   396
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   397
val init_data = curry (ext_sign Sign.init_data);
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   398
fun print_data kind = Sign.print_data kind o sign_of;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   399
fun get_data kind f = Sign.get_data kind f o sign_of;
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   400
fun put_data kind f = ext_sign (Sign.put_data kind f);
3865
0035d1f97096 added init_data, get_data, put_data;
wenzelm
parents: 3814
diff changeset
   401
0035d1f97096 added init_data, get_data, put_data;
wenzelm
parents: 3814
diff changeset
   402
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   403
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   404
(** merge theories **)		(*exception ERROR*)
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   405
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   406
fun merge_sign (sg, thy) =
4627
ae95666c71cc Sign.merge vs. Sign.nontriv_merge;
wenzelm
parents: 4617
diff changeset
   407
  Sign.nontriv_merge (sg, sign_of thy) handle TERM (msg, _) => error msg;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   408
3878
0258594baaa9 remove merge_theories;
wenzelm
parents: 3865
diff changeset
   409
(*merge list of theories from left to right, preparing extend*)
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3956
diff changeset
   410
fun prep_ext_merge thys =
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   411
  if null thys then
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   412
    error "Merge: no parent theories"
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   413
  else if exists (Sign.is_draft o sign_of) thys then
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   414
    error "Attempt to merge draft theories"
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   415
  else
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   416
    let
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   417
      val sign' =
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   418
        foldl merge_sign (sign_of (hd thys), tl thys)
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   419
        |> Sign.prep_ext
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   420
        |> Sign.add_path "/";
3814
b0dc68aa1b6a improved oracles: named, many per theory;
wenzelm
parents: 3806
diff changeset
   421
4488
3e56603fde06 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4344
diff changeset
   422
      val axioms' = Symtab.empty;
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   423
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   424
      fun eq_ora ((_, (_, s1: stamp)), (_, (_, s2))) = s1 = s2;
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   425
      val oracles' =
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   426
        Symtab.make (gen_distinct eq_ora
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   427
          (flat (map (Symtab.dest o #oracles o rep_theory) thys)))
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   428
        handle Symtab.DUPS names => err_dup_oras names;
4019
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   429
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   430
      val parents' = gen_distinct eq_thy thys;
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   431
      val ancestors' =
f9bfb914805a added ancestors;
wenzelm
parents: 3996
diff changeset
   432
        gen_distinct eq_thy (parents' @ flat (map ancestors_of thys));
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   433
    in
4996
951575080635 use Object.T and Object.kind;
wenzelm
parents: 4974
diff changeset
   434
      make_theory sign' axioms' oracles' parents' ancestors'
3996
b7548325adc4 tuned names;
wenzelm
parents: 3971
diff changeset
   435
    end;
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   436
3885
dccac762b0be added merge_theories (new name arg);
wenzelm
parents: 3878
diff changeset
   437
fun merge_theories name (thy1, thy2) =
3967
edd5ff9371f8 sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents: 3956
diff changeset
   438
  prep_ext_merge [thy1, thy2]
3885
dccac762b0be added merge_theories (new name arg);
wenzelm
parents: 3878
diff changeset
   439
  |> add_name name;
dccac762b0be added merge_theories (new name arg);
wenzelm
parents: 3878
diff changeset
   440
dccac762b0be added merge_theories (new name arg);
wenzelm
parents: 3878
diff changeset
   441
1526
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   442
end;
6be6ea6f8b5d New file of just the theory primitives
paulson
parents:
diff changeset
   443
3767
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   444
structure BasicTheory: BASIC_THEORY = Theory;
e2bb53d8dd26 moved theory stuff (add_defs etc.) here from drule.ML;
wenzelm
parents: 2979
diff changeset
   445
open BasicTheory;