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