src/Pure/pure_thy.ML
author wenzelm
Wed, 22 Jul 1998 17:59:49 +0200
changeset 5175 2dbef0104bcf
parent 5091 4dc26d3e8722
child 5210 54aaa779b6b4
permissions -rw-r--r--
moved long_names / cond_extern to name_space.ML;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/pure_thy.ML
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     4
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
     5
Theorem database, derived theory operations, and the ProtoPure theory.
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     6
*)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     7
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
     8
signature BASIC_PURE_THY =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
     9
sig
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
    10
  val print_theorems: theory -> unit
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
    11
  val print_theory: theory -> unit
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    12
  val get_thm: theory -> xstring -> thm
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    13
  val get_thms: theory -> xstring -> thm list
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    14
  val thms_of: theory -> (string * thm) list
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
    15
  val global_names: bool ref
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    16
  structure ProtoPure:
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    17
    sig
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    18
      val thy: theory
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    19
      val flexpair_def: thm
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    20
      val Goal_def: thm
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    21
    end
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    22
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    23
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    24
signature PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    25
sig
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    26
  include BASIC_PURE_THY
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
    27
  val thms_closure: theory -> xstring -> tthm list option
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    28
  val get_tthm: theory -> xstring -> tthm
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    29
  val get_tthms: theory -> xstring -> tthm list
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    30
  val thms_containing: theory -> string list -> (string * thm) list
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    31
  val smart_store_thm: (bstring * thm) -> thm
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    32
  val add_tthms: ((bstring * tthm) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    33
  val add_tthmss: ((bstring * tthm list) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    34
  val add_axioms: ((bstring * string) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    35
  val add_axioms_i: ((bstring * term) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    36
  val add_axiomss: ((bstring * string list) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    37
  val add_axiomss_i: ((bstring * term list) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    38
  val add_defs: ((bstring * string) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    39
  val add_defs_i: ((bstring * term) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    40
  val add_defss: ((bstring * string list) * theory attribute list) list -> theory -> theory
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    41
  val add_defss_i: ((bstring * term list) * theory attribute list) list -> theory -> theory
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
    42
  val get_name: theory -> string
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
    43
  val put_name: string -> theory -> theory
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
    44
  val global_path: theory -> theory
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
    45
  val local_path: theory -> theory
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
    46
  val begin_theory: string -> theory list -> theory
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
    47
  val end_theory: theory -> theory
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    48
  exception ROLLBACK of theory * exn option
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    49
  val transaction: (theory -> theory) -> theory -> theory
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
    50
  val add_typedecls: (bstring * string list * mixfix) list -> theory -> theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    51
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    52
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    53
structure PureThy: PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    54
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    55
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    56
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
    57
(*** theorem database ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    58
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
    59
(** data kind 'Pure/theorems' **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    60
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    61
structure TheoremsDataArgs =
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    62
struct
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    63
  val name = "Pure/theorems";
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    64
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    65
  type T =
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    66
    {space: NameSpace.T,
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    67
      thms_tab: tthm list Symtab.table,
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    68
      const_idx: int * (int * tthm) list Symtab.table} ref;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    69
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    70
  fun mk_empty _ =
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    71
    ref {space = NameSpace.empty, thms_tab = Symtab.empty, const_idx = (0, Symtab.empty)} : T;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    72
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    73
  val empty = mk_empty ();
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    74
  val prep_ext = mk_empty;
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    75
  val merge = mk_empty;
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    76
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    77
  fun print sg (ref {space, thms_tab, const_idx = _}) =
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    78
    let
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    79
      val prt_thm = Attribute.pretty_tthm o apfst (Thm.transfer_sg sg);
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    80
      fun prt_thms (name, [th]) =
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    81
            Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th]
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    82
        | prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    83
5175
2dbef0104bcf moved long_names / cond_extern to name_space.ML;
wenzelm
parents: 5091
diff changeset
    84
      val thmss = sort_wrt fst (map (apfst (NameSpace.cond_extern space)) (Symtab.dest thms_tab));
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    85
    in
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    86
      Pretty.writeln (Display.pretty_name_space ("theorem name space", space));
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    87
      Pretty.writeln (Pretty.big_list "theorems:" (map prt_thms thmss))
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    88
    end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    89
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    90
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    91
structure TheoremsData = TheoryDataFun(TheoremsDataArgs);
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    92
val get_theorems_sg = TheoremsData.get_sg;
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    93
val get_theorems = TheoremsData.get;
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    94
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    95
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
    96
(* print theory *)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    97
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
    98
val print_theorems = TheoremsData.print;
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
    99
fun print_theory thy =
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   100
  (Display.print_theory thy; print_theorems thy);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   101
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   102
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   103
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   104
(** retrieve theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   105
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   106
(* thms_closure *)
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   107
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   108
(*note: we avoid life references to the theory, so users may safely
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   109
  keep thms_closure with moderate space consumption*)
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   110
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   111
fun thms_closure_aux thy =
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   112
  let val ref {space, thms_tab, ...} = get_theorems thy
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   113
  in fn name => Symtab.lookup (thms_tab, NameSpace.intern space name) end;
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   114
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   115
fun thms_closure thy =
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   116
  let val closures = map thms_closure_aux (thy :: Theory.ancestors_of thy)
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   117
  in fn name => get_first (fn f => f name) closures end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   118
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   119
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   120
(* get_thms etc. *)
4037
wenzelm
parents: 4022
diff changeset
   121
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   122
fun lookup_thms name thy = thms_closure_aux thy name;
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   123
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   124
fun get_tthms thy name =
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   125
  (case get_first (lookup_thms name) (thy :: Theory.ancestors_of thy) of
4590
9f8f931e0089 tuned msgs;
wenzelm
parents: 4498
diff changeset
   126
    None => raise THEORY ("Unknown theorem(s) " ^ quote name, [thy])
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   127
  | Some thms => thms);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   128
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   129
fun get_tthm thy name =
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   130
  (case get_tthms thy name of
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   131
    [thm] => thm
4590
9f8f931e0089 tuned msgs;
wenzelm
parents: 4498
diff changeset
   132
  | _ => raise THEORY ("Single theorem expected " ^ quote name, [thy]));
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   133
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   134
fun get_thms thy = map Attribute.thm_of o get_tthms thy;
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   135
fun get_thm thy = Attribute.thm_of o get_tthm thy;
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   136
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   137
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   138
(* thms_of *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   139
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   140
fun attach_name (thm, _) = (Thm.name_of_thm thm, thm);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   141
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   142
fun thms_of thy =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   143
  let val ref {thms_tab, ...} = get_theorems thy in
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   144
    map attach_name (flat (map snd (Symtab.dest thms_tab)))
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   145
  end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   146
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   147
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   148
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   149
(** theorems indexed by constants **)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   150
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   151
(* make index *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   152
4037
wenzelm
parents: 4022
diff changeset
   153
val ignore = ["Trueprop", "all", "==>", "=="];
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   154
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   155
fun add_const_idx ((next, table), tthm as (thm, _)) =
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   156
  let
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   157
    val {hyps, prop, ...} = Thm.rep_thm thm;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   158
    val consts =
4037
wenzelm
parents: 4022
diff changeset
   159
      foldr add_term_consts (hyps, add_term_consts (prop, [])) \\ ignore;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   160
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   161
    fun add (tab, c) =
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   162
      Symtab.update ((c, (next, tthm) :: Symtab.lookup_multi (tab, c)), tab);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   163
  in (next + 1, foldl add (table, consts)) end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   164
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   165
fun make_const_idx thm_tab =
4487
9b4c1db5aca1 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4258
diff changeset
   166
  foldl (foldl add_const_idx) ((0, Symtab.empty), map snd (Symtab.dest thm_tab));
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   167
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   168
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   169
(* lookup index *)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   170
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   171
(*search locally*)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   172
fun containing [] thy = thms_of thy
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   173
  | containing consts thy =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   174
      let
4037
wenzelm
parents: 4022
diff changeset
   175
        fun int ([], _) = []
wenzelm
parents: 4022
diff changeset
   176
          | int (_, []) = []
wenzelm
parents: 4022
diff changeset
   177
          | int (xxs as ((x as (i:int, _)) :: xs), yys as ((y as (j, _)) :: ys)) =
wenzelm
parents: 4022
diff changeset
   178
              if i = j then x :: int (xs, ys)
wenzelm
parents: 4022
diff changeset
   179
              else if i > j then int (xs, yys)
wenzelm
parents: 4022
diff changeset
   180
              else int (xxs, ys);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   181
4037
wenzelm
parents: 4022
diff changeset
   182
        fun ints [xs] = xs
wenzelm
parents: 4022
diff changeset
   183
          | ints xss = if exists null xss then [] else foldl int (hd xss, tl xss);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   184
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   185
        val ref {const_idx = (_, ctab), ...} = get_theorems thy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   186
        val ithmss = map (fn c => Symtab.lookup_multi (ctab, c)) consts;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   187
      in
4037
wenzelm
parents: 4022
diff changeset
   188
        map (attach_name o snd) (ints ithmss)
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   189
      end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   190
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   191
(*search globally*)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   192
fun thms_containing thy consts =
4037
wenzelm
parents: 4022
diff changeset
   193
  flat (map (containing (consts \\ ignore)) (thy :: Theory.ancestors_of thy));
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   194
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   195
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   196
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   197
(** store theorems **)                    (*DESTRUCTIVE*)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   198
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   199
(* naming *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   200
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   201
fun gen_names len name =
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   202
  map (fn i => name ^ "_" ^ string_of_int i) (1 upto len);
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   203
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   204
fun name_single name x = [(name, x)];
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   205
fun name_multi name xs = gen_names (length xs) name ~~ xs;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   206
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   207
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   208
(* enter_tthmx *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   209
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   210
fun warn_overwrite name =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   211
  warning ("Replaced old copy of theorems " ^ quote name);
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   212
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   213
fun warn_same name =
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   214
  warning ("Theorem database already contains a copy of " ^ quote name);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   215
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   216
fun enter_tthmx sg app_name (bname, tthmx) =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   217
  let
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   218
    val name = Sign.full_name sg bname;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   219
    fun name_tthm (nm, (thm, tgs)) = (Thm.name_thm (nm, thm), tgs);
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   220
    val named_tthms = map name_tthm (app_name name tthmx);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   221
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   222
    fun eq_tthm ((th1, _), (th2, _)) = Thm.eq_thm (th1, th2);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   223
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   224
    val r as ref {space, thms_tab, const_idx} = get_theorems_sg sg;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   225
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   226
    val overwrite =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   227
      (case Symtab.lookup (thms_tab, name) of
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   228
        None => false
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   229
      | Some tthms' =>
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   230
          if length tthms' = length named_tthms andalso forall2 eq_tthm (tthms', named_tthms) then
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   231
            (warn_same name; false)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   232
          else (warn_overwrite name; true));
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   233
4487
9b4c1db5aca1 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4258
diff changeset
   234
    val space' = NameSpace.extend (space, [name]);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   235
    val thms_tab' = Symtab.update ((name, named_tthms), thms_tab);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   236
    val const_idx' =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   237
      if overwrite then make_const_idx thms_tab'
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   238
      else foldl add_const_idx (const_idx, named_tthms);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   239
  in
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   240
    r := {space = space', thms_tab = thms_tab', const_idx = const_idx'};
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   241
    named_tthms
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   242
  end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   243
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   244
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   245
(* add_tthms(s) *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   246
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   247
fun add_tthmx app_name app_att ((bname, tthmx), atts) thy =
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   248
  let val (thy', tthmx') = app_att ((thy, tthmx), atts)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   249
  in enter_tthmx (Theory.sign_of thy') app_name (bname, tthmx'); thy' end;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   250
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   251
val add_tthms = Theory.apply o map (add_tthmx name_single Attribute.apply);
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   252
val add_tthmss = Theory.apply o map (add_tthmx name_multi Attribute.applys);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   253
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   254
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   255
(* smart_store_thm *)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   256
4012
6adc18bd0009 renamed put_* to store_*;
wenzelm
parents: 4002
diff changeset
   257
fun smart_store_thm (name, thm) =
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   258
  let val [(thm', _)] = enter_tthmx (Thm.sign_of_thm thm) name_single (name, Attribute.tthm_of thm)
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   259
  in thm' end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   260
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   261
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   262
(* store axioms as theorems *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   263
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   264
local
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   265
  fun add_ax app_name add ((name, axs), atts) thy =
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   266
    let
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   267
      val named_axs = app_name name axs;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   268
      val thy' = add named_axs thy;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   269
      val tthms = map (Attribute.tthm_of o Thm.get_axiom thy' o fst) named_axs;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   270
    in add_tthmss [((name, tthms), atts)] thy' end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   271
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   272
  fun add_axs app_name add = Theory.apply o map (add_ax app_name add);
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   273
in
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   274
  val add_axioms    = add_axs name_single Theory.add_axioms;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   275
  val add_axioms_i  = add_axs name_single Theory.add_axioms_i;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   276
  val add_axiomss   = add_axs name_multi Theory.add_axioms;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   277
  val add_axiomss_i = add_axs name_multi Theory.add_axioms_i;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   278
  val add_defs      = add_axs name_single Theory.add_defs;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   279
  val add_defs_i    = add_axs name_single Theory.add_defs_i;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   280
  val add_defss     = add_axs name_multi Theory.add_defs;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   281
  val add_defss_i   = add_axs name_multi Theory.add_defs_i;
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   282
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   283
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   284
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   285
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   286
(*** derived theory operations ***)
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   287
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   288
(** theory management **)
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   289
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   290
(* data kind 'Pure/theory_management' *)
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   291
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   292
structure TheoryManagementDataArgs =
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   293
struct
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   294
  val name = "Pure/theory_management";
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   295
  type T = {name: string, generation: int};
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   296
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   297
  val empty = {name = "", generation = 0};
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   298
  val prep_ext  = I;
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   299
  fun merge _ = empty;
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   300
  fun print _ _ = ();
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   301
end;
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   302
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   303
structure TheoryManagementData = TheoryDataFun(TheoryManagementDataArgs);
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   304
val get_info = TheoryManagementData.get;
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   305
val put_info = TheoryManagementData.put;
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   306
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   307
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   308
(* get / put name *)
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   309
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   310
val get_name = #name o get_info;
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   311
fun put_name name = put_info {name = name, generation = 0};
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   312
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   313
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   314
(* control prefixing of theory name *)
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   315
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   316
(*compatibility flag, likely to disappear someday*)
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   317
val global_names = ref false;
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   318
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   319
fun global_path thy =
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   320
  if ! global_names then thy else Theory.root_path thy;
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   321
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   322
fun local_path thy =
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   323
  if ! global_names then thy
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   324
  else thy |> Theory.root_path |> Theory.add_path (get_name thy);
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   325
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   326
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   327
(* begin / end theory *)
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   328
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   329
fun begin_theory name thys =
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   330
  Theory.prep_ext_merge thys
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   331
  |> put_name name
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   332
  |> local_path;
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   333
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   334
fun end_theory thy = Theory.add_name (get_name thy) thy;
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   335
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   336
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   337
(* atomic transactions *)
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   338
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   339
exception ROLLBACK of theory * exn option;
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   340
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   341
fun transaction f thy =
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   342
  let
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   343
    val {name, generation} = get_info thy;
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   344
    val copy_thy =
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   345
      thy
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   346
      |> Theory.prep_ext
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   347
      |> Theory.add_name ("#" ^ name ^ ":" ^ string_of_int generation)  (* FIXME !!?? *)
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   348
      |> put_info {name = name, generation = generation + 1};
5026
9a67a024f4b8 tuned transaction;
wenzelm
parents: 5022
diff changeset
   349
    val (thy', opt_exn) = (transform_error f thy, None) handle exn => (thy, Some exn);
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   350
  in
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   351
    if Sign.is_stale (Theory.sign_of thy') then raise ROLLBACK (copy_thy, opt_exn)
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   352
    else (case opt_exn of Some exn => raise exn | _ => thy')
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   353
  end;
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   354
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   355
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   356
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   357
(** add logical types **)
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   358
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   359
fun add_typedecls decls thy =
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   360
  let
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   361
    val full = Sign.full_name (Theory.sign_of thy);
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   362
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   363
    fun type_of (raw_name, vs, mx) =
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   364
      if null (duplicates vs) then (raw_name, length vs, mx)
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   365
      else error ("Duplicate parameters in type declaration: " ^ quote raw_name);
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   366
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   367
    fun arity_of (raw_name, len, mx) =
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   368
      (full (Syntax.type_name raw_name mx), replicate len logicS, logicS);
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   369
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   370
    val types = map type_of decls;
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   371
    val arities = map arity_of types;
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   372
  in
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   373
    thy
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   374
    |> Theory.add_types types
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   375
    |> Theory.add_arities_i arities
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   376
  end;
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   377
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   378
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   379
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   380
(*** the ProtoPure theory ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   381
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   382
val proto_pure =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   383
  Theory.pre_pure
5022
b4bd7e6402fe moved add_axioms_x, add_defs_x to Isar/isar_thy.ML;
wenzelm
parents: 5005
diff changeset
   384
  |> Theory.apply [TheoremsData.init, TheoryManagementData.init]
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   385
  |> put_name "ProtoPure"
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   386
  |> global_path
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   387
  |> Theory.add_types
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   388
   [("fun", 2, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   389
    ("prop", 0, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   390
    ("itself", 1, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   391
    ("dummy", 0, NoSyn)]
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   392
  |> Theory.add_classes_i [(logicC, [])]
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   393
  |> Theory.add_defsort_i logicS
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   394
  |> Theory.add_arities_i
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   395
   [("fun", [logicS, logicS], logicS),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   396
    ("prop", [], logicS),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   397
    ("itself", [logicS], logicS)]
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   398
  |> Theory.add_nonterminals Syntax.pure_nonterms
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   399
  |> Theory.add_syntax Syntax.pure_syntax
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   400
  |> Theory.add_modesyntax ("symbols", true) Syntax.pure_sym_syntax
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   401
  |> Theory.add_trfuns Syntax.pure_trfuns
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   402
  |> Theory.add_trfunsT Syntax.pure_trfunsT
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   403
  |> Theory.add_syntax
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   404
   [("==>", "[prop, prop] => prop", Delimfix "op ==>")]
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   405
  |> Theory.add_consts
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   406
   [("==", "['a::{}, 'a] => prop", InfixrName ("==", 2)),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   407
    ("=?=", "['a::{}, 'a] => prop", InfixrName ("=?=", 2)),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   408
    ("==>", "[prop, prop] => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   409
    ("all", "('a => prop) => prop", Binder ("!!", 0, 0)),
4788
b54c337f2c7f added Goal_def;
wenzelm
parents: 4783
diff changeset
   410
    ("Goal", "prop => prop", Mixfix ("GOAL _", [999], 1000)),
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   411
    ("TYPE", "'a itself", NoSyn)]
5041
a1d0a6d555cd Goals may now contain assumptions, which are not returned.
nipkow
parents: 5026
diff changeset
   412
  |> Theory.add_modesyntax ("", false)
a1d0a6d555cd Goals may now contain assumptions, which are not returned.
nipkow
parents: 5026
diff changeset
   413
    [("Goal", "prop => prop", Mixfix ("_", [0], 0))]
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   414
  |> local_path
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   415
  |> (add_defs o map Attribute.none)
4788
b54c337f2c7f added Goal_def;
wenzelm
parents: 4783
diff changeset
   416
   [("flexpair_def", "(t =?= u) == (t == u::'a::{})"),
b54c337f2c7f added Goal_def;
wenzelm
parents: 4783
diff changeset
   417
    ("Goal_def", "GOAL (PROP A) == PROP A")]
4963
38aa2d56e28c added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents: 4933
diff changeset
   418
  |> end_theory;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   419
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   420
structure ProtoPure =
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   421
struct
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   422
  val thy = proto_pure;
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   423
  val flexpair_def = get_axiom thy "flexpair_def";
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   424
  val Goal_def = get_axiom thy "Goal_def";
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   425
end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   426
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   427
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   428
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   429
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   430
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   431
structure BasicPureThy: BASIC_PURE_THY = PureThy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   432
open BasicPureThy;