src/Pure/pure_thy.ML
author wenzelm
Fri, 03 Apr 1998 14:37:48 +0200
changeset 4783 ca29125de4af
parent 4590 9f8f931e0089
child 4788 b54c337f2c7f
permissions -rw-r--r--
added get_tthm(s), store_tthms(s); tuned;
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
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
     5
The Pure theories.
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
     6
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
     7
TODO:
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
     8
  - tagged axioms / defs;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     9
*)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    10
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    11
signature BASIC_PURE_THY =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    12
sig
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    13
  val get_thm: theory -> xstring -> thm
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    14
  val get_thms: theory -> xstring -> thm list
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    15
  val thms_of: theory -> (string * thm) list
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    16
end
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    17
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    18
signature PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    19
sig
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    20
  include BASIC_PURE_THY
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    21
  val get_tthm: theory -> xstring -> tthm
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    22
  val get_tthms: theory -> xstring -> tthm list
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    23
  val thms_containing: theory -> string list -> (string * thm) list
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    24
  val store_thms: (bstring * thm) list -> theory -> theory
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    25
  val store_thmss: (bstring * thm list) list -> theory -> theory
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    26
  val store_tthms: (bstring * tthm) list -> theory -> theory
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    27
  val store_tthmss: (bstring * tthm list) list -> theory -> theory
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    28
  val smart_store_thm: (bstring * thm) -> thm
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    29
  val add_store_axioms: (bstring * string) list -> theory -> theory
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    30
  val add_store_axioms_i: (bstring * term) list -> theory -> theory
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    31
  val add_store_defs: (bstring * string) list -> theory -> theory
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    32
  val add_store_defs_i: (bstring * term) list -> theory -> theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    33
  val proto_pure: theory
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    34
  val pure: theory
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    35
  val cpure: theory
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    36
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    37
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    38
structure PureThy: PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    39
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    40
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    41
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    42
(*** init theorems data ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    43
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    44
(** data kind 'theorems' **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    45
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    46
val theoremsK = "Pure/theorems";
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    47
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    48
exception Theorems of
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    49
 {space: NameSpace.T,
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    50
  thms_tab: tthm list Symtab.table,
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    51
  const_idx: int * (int * tthm) list Symtab.table} ref;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    52
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    53
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    54
(* methods *)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    55
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    56
local
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    57
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    58
fun mk_empty _ =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    59
  Theorems (ref {space = NameSpace.empty,
4487
9b4c1db5aca1 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4258
diff changeset
    60
    thms_tab = Symtab.empty, const_idx = (0, Symtab.empty)});
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    61
4258
f2ca5a87f0a7 improved theorems print method: transfer_sg;
wenzelm
parents: 4124
diff changeset
    62
fun print sg (Theorems (ref {space, thms_tab, const_idx = _})) =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    63
  let
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    64
    val prt_thm = Attribute.pretty_tthm o apfst (Thm.transfer_sg sg);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    65
    fun prt_thms (name, [th]) =
4037
wenzelm
parents: 4022
diff changeset
    66
          Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th]
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    67
      | prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths);
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    68
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    69
    fun extrn name =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    70
      if ! long_names then name else NameSpace.extern space name;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    71
    val thmss = sort_wrt fst (map (apfst extrn) (Symtab.dest thms_tab));
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    72
  in
4498
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4487
diff changeset
    73
    Pretty.writeln (Display.pretty_name_space ("theorem name space", space));
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    74
    Pretty.writeln (Pretty.big_list "theorems:" (map prt_thms thmss))
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    75
  end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    76
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    77
in
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    78
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    79
val theorems_setup = Theory.init_data [(theoremsK, (mk_empty (), mk_empty, mk_empty, print))];
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    80
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    81
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    82
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    83
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    84
(* get data record *)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    85
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    86
fun get_theorems_sg sg =
4049
b2a70d318df2 tuned thy_data;
wenzelm
parents: 4037
diff changeset
    87
  (case Sign.get_data sg theoremsK of
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    88
    Theorems r => r
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    89
  | _ => sys_error "get_theorems_sg");
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    90
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    91
val get_theorems = get_theorems_sg o Theory.sign_of;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    92
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    93
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    94
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    95
(** retrieve theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    96
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    97
fun local_thms thy name =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    98
  let
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    99
    val ref {space, thms_tab, ...} = get_theorems thy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   100
    val full_name = NameSpace.intern space name;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   101
  in Symtab.lookup (thms_tab, full_name) end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   102
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   103
fun all_local_thms [] _ = None
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   104
  | all_local_thms (thy :: thys) name =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   105
      (case local_thms thy name of
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   106
        None => all_local_thms thys name
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   107
      | some => some);
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   108
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   109
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   110
(* get_thms etc. *)
4037
wenzelm
parents: 4022
diff changeset
   111
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   112
fun get_tthms thy name =
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   113
  (case all_local_thms (thy :: Theory.ancestors_of thy) name of
4590
9f8f931e0089 tuned msgs;
wenzelm
parents: 4498
diff changeset
   114
    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
   115
  | Some thms => thms);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   116
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   117
fun get_tthm thy name =
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   118
  (case get_tthms thy name of
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   119
    [thm] => thm
4590
9f8f931e0089 tuned msgs;
wenzelm
parents: 4498
diff changeset
   120
  | _ => raise THEORY ("Single theorem expected " ^ quote name, [thy]));
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   121
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   122
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
   123
fun get_thm thy = Attribute.thm_of o get_tthm thy;
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   124
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   125
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   126
(* thms_of *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   127
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   128
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
   129
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   130
fun thms_of thy =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   131
  let val ref {thms_tab, ...} = get_theorems thy in
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   132
    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
   133
  end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   134
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   135
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   136
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   137
(** theorems indexed by constants **)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   138
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   139
(* make index *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   140
4037
wenzelm
parents: 4022
diff changeset
   141
val ignore = ["Trueprop", "all", "==>", "=="];
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   142
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   143
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
   144
  let
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   145
    val {hyps, prop, ...} = Thm.rep_thm thm;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   146
    val consts =
4037
wenzelm
parents: 4022
diff changeset
   147
      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
   148
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   149
    fun add (tab, c) =
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   150
      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
   151
  in (next + 1, foldl add (table, consts)) end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   152
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   153
fun make_const_idx thm_tab =
4487
9b4c1db5aca1 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4258
diff changeset
   154
  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
   155
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   156
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   157
(* lookup index *)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   158
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   159
(*search locally*)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   160
fun containing [] thy = thms_of thy
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   161
  | containing consts thy =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   162
      let
4037
wenzelm
parents: 4022
diff changeset
   163
        fun int ([], _) = []
wenzelm
parents: 4022
diff changeset
   164
          | int (_, []) = []
wenzelm
parents: 4022
diff changeset
   165
          | int (xxs as ((x as (i:int, _)) :: xs), yys as ((y as (j, _)) :: ys)) =
wenzelm
parents: 4022
diff changeset
   166
              if i = j then x :: int (xs, ys)
wenzelm
parents: 4022
diff changeset
   167
              else if i > j then int (xs, yys)
wenzelm
parents: 4022
diff changeset
   168
              else int (xxs, ys);
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   169
4037
wenzelm
parents: 4022
diff changeset
   170
        fun ints [xs] = xs
wenzelm
parents: 4022
diff changeset
   171
          | 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
   172
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   173
        val ref {const_idx = (_, ctab), ...} = get_theorems thy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   174
        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
   175
      in
4037
wenzelm
parents: 4022
diff changeset
   176
        map (attach_name o snd) (ints ithmss)
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   177
      end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   178
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   179
(*search globally*)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   180
fun thms_containing thy consts =
4037
wenzelm
parents: 4022
diff changeset
   181
  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
   182
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   183
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
(** store theorems **)                    (*DESTRUCTIVE*)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   186
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   187
fun warn_overwrite name =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   188
  warning ("Replaced old copy of theorems " ^ quote name);
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   189
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   190
fun warn_same name =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   191
  warning ("Theorem database already contains a copy of " ^ quote name);
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   192
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   193
fun enter_tthms sg single (raw_name, tthms) =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   194
  let
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   195
    val len = length tthms;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   196
    val name = Sign.full_name sg raw_name;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   197
    val names =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   198
      if single then replicate len name
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   199
      else map (fn i => name ^ "_" ^ string_of_int i) (0 upto (len - 1));
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   200
    val named_tthms = map2 (fn (x, (th, tg)) => (Thm.name_thm (x, th), tg)) (names, tthms);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   201
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   202
    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
   203
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   204
    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
   205
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   206
    val overwrite =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   207
      (case Symtab.lookup (thms_tab, name) of
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   208
        None => false
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   209
      | Some tthms' =>
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   210
          if length tthms' = len andalso forall2 eq_tthm (tthms', named_tthms) then
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   211
            (warn_same name; false)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   212
          else (warn_overwrite name; true));
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   213
4487
9b4c1db5aca1 renamed Symtab.null to Symtab.empty;
wenzelm
parents: 4258
diff changeset
   214
    val space' = NameSpace.extend (space, [name]);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   215
    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
   216
    val const_idx' =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   217
      if overwrite then make_const_idx thms_tab'
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   218
      else foldl add_const_idx (const_idx, named_tthms);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   219
  in
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   220
    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
   221
    named_tthms
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   222
  end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   223
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   224
fun do_enter_tthms sg single tthms = (enter_tthms sg single tthms; ());
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   225
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   226
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   227
fun store_tthmss tthmss thy =
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   228
  (seq (do_enter_tthms (Theory.sign_of thy) false) tthmss; thy);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   229
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   230
fun store_tthms tthms thy =
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   231
  (seq (do_enter_tthms (Theory.sign_of thy) true) (map (apsnd (fn th => [th])) tthms); thy);
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   232
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   233
fun store_thmss thmss = store_tthmss (map (apsnd (map Attribute.tthm_of)) thmss);
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   234
fun store_thms thms = store_tthms (map (apsnd Attribute.tthm_of) thms);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   235
4012
6adc18bd0009 renamed put_* to store_*;
wenzelm
parents: 4002
diff changeset
   236
fun smart_store_thm (name, thm) =
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   237
  let val [(thm', _)] = enter_tthms (Thm.sign_of_thm thm) true (name, [Attribute.tthm_of thm])
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   238
  in thm' end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   239
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   240
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   241
(* store axioms as theorems *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   242
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   243
fun add_store add named_axs thy =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   244
  let
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   245
    val thy' = add named_axs thy;
4037
wenzelm
parents: 4022
diff changeset
   246
    val named_thms = map (fn (name, _) => (name, get_axiom thy' name)) named_axs;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   247
  in store_thms named_thms thy' end;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   248
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   249
val add_store_axioms = add_store Theory.add_axioms;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   250
val add_store_axioms_i = add_store Theory.add_axioms_i;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   251
val add_store_defs = add_store Theory.add_defs;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   252
val add_store_defs_i = add_store Theory.add_defs_i;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   253
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   254
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   255
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   256
(** the Pure theories **)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   257
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   258
val proto_pure =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   259
  Theory.pre_pure
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   260
  |> Attribute.setup
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   261
  |> theorems_setup
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   262
  |> Theory.add_types
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   263
   (("fun", 2, NoSyn) ::
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   264
    ("prop", 0, NoSyn) ::
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   265
    ("itself", 1, NoSyn) ::
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   266
    Syntax.pure_types)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   267
  |> Theory.add_classes_i [(logicC, [])]
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   268
  |> Theory.add_defsort_i logicS
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   269
  |> Theory.add_arities_i
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   270
   [("fun", [logicS, logicS], logicS),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   271
    ("prop", [], logicS),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   272
    ("itself", [logicS], logicS)]
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   273
  |> Theory.add_syntax Syntax.pure_syntax
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   274
  |> Theory.add_modesyntax ("symbols", true) Syntax.pure_sym_syntax
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   275
  |> Theory.add_trfuns Syntax.pure_trfuns
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   276
  |> Theory.add_trfunsT Syntax.pure_trfunsT
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   277
  |> Theory.add_syntax
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   278
   [("==>", "[prop, prop] => prop", Delimfix "op ==>")]
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   279
  |> Theory.add_consts
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   280
   [("==", "['a::{}, 'a] => prop", InfixrName ("==", 2)),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   281
    ("=?=", "['a::{}, 'a] => prop", InfixrName ("=?=", 2)),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   282
    ("==>", "[prop, prop] => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   283
    ("all", "('a => prop) => prop", Binder ("!!", 0, 0)),
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   284
    ("TYPE", "'a itself", NoSyn)]
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   285
  |> Theory.add_path "ProtoPure"
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   286
  |> add_store_defs [("flexpair_def", "(t =?= u) == (t == u::'a::{})")]
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   287
  |> Theory.add_name "ProtoPure";
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   288
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   289
val pure =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   290
  Theory.prep_ext_merge [proto_pure]
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   291
  |> Theory.add_syntax Syntax.pure_appl_syntax
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   292
  |> Theory.add_path "Pure"
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   293
  |> Theory.add_name "Pure";
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   294
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   295
val cpure =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   296
  Theory.prep_ext_merge [proto_pure]
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   297
  |> Theory.add_syntax Syntax.pure_applC_syntax
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   298
  |> Theory.add_path "CPure"
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   299
  |> Theory.add_name "CPure";
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   300
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   301
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   302
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   303
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   304
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   305
structure BasicPureThy: BASIC_PURE_THY = PureThy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   306
open BasicPureThy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   307
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   308
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   309
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   310
(** theory structures **)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   311
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   312
structure ProtoPure =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   313
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   314
  val thy = PureThy.proto_pure;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   315
  val flexpair_def = get_axiom thy "flexpair_def";
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   316
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   317
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   318
structure Pure = struct val thy = PureThy.pure end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   319
structure CPure = struct val thy = PureThy.cpure end;