src/Pure/pure_thy.ML
author wenzelm
Fri, 21 Oct 2005 18:14:50 +0200
changeset 17970 a84ac7c201ea
parent 17930 e7160d70be1f
child 18031 b17e25a7d820
permissions -rw-r--r--
Goal.conclude;
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
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
     5
Theorem storage.  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
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    10
  datatype interval = FromTo of int * int | From of int | Single of int
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    11
  datatype thmref = Name of string | NameSelection of string * interval list
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
    12
  val print_theorems: theory -> unit
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
    13
  val print_theory: theory -> unit
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    14
  val get_thm: theory -> thmref -> thm
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    15
  val get_thms: theory -> thmref -> thm list
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    16
  val get_thmss: theory -> thmref list -> thm list
17930
e7160d70be1f added thm(s) retrieval functions (from goals.ML);
wenzelm
parents: 17703
diff changeset
    17
  val thm: xstring -> thm
e7160d70be1f added thm(s) retrieval functions (from goals.ML);
wenzelm
parents: 17703
diff changeset
    18
  val thms: xstring -> thm list
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    19
  structure ProtoPure:
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    20
    sig
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    21
      val thy: theory
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    22
      val Goal_def: thm
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    23
    end
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    24
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    25
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    26
signature PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    27
sig
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    28
  include BASIC_PURE_THY
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    29
  val string_of_thmref: thmref -> string
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    30
  val print_theorems_diff: theory -> theory -> unit
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    31
  val get_thm_closure: theory -> thmref -> thm
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    32
  val get_thms_closure: theory -> thmref -> thm list
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
    33
  val single_thm: string -> thm list -> thm
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    34
  val name_of_thmref: thmref -> string
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    35
  val map_name_of_thmref: (string -> string) -> thmref -> thmref
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    36
  val select_thm: thmref -> thm list -> thm list
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    37
  val selections: string * thm list -> (thmref * thm) list
17162
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
    38
  val theorems_of: theory -> thm list NameSpace.table
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
    39
  val theorem_space: theory -> NameSpace.T
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    40
  val fact_index_of: theory -> FactIndex.T
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    41
  val valid_thms: theory -> thmref * thm list -> bool
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    42
  val thms_containing: theory -> FactIndex.spec -> (string * thm list) list
13646
46ed3d042ba5 Ported find_intro/elim to Isar.
nipkow
parents: 13539
diff changeset
    43
  val thms_containing_consts: theory -> string list -> (string * thm) list
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
    44
  val thms_of: theory -> (string * thm) list
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
    45
  val all_thms_of: theory -> (string * thm) list
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
    46
  val hide_thms: bool -> string list -> theory -> theory
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
    47
  val store_thm: (bstring * thm) * theory attribute list -> theory -> theory * thm
7405
7e4e286a9931 smart_store_thms;
wenzelm
parents: 7278
diff changeset
    48
  val smart_store_thms: (bstring * thm list) -> thm list
12138
7cad58fbc866 renamed open_smart_store_thms to smart_store_thms_open;
wenzelm
parents: 12123
diff changeset
    49
  val smart_store_thms_open: (bstring * thm list) -> thm list
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
    50
  val forall_elim_var: int -> thm -> thm
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
    51
  val forall_elim_vars: int -> thm -> thm
8419
4770b1a12a93 add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents: 8039
diff changeset
    52
  val add_thms: ((bstring * thm) * theory attribute list) list -> theory -> theory * thm list
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
    53
  val add_thmss: ((bstring * thm list) * theory attribute list) list -> theory
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
    54
    -> theory * thm list list
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
    55
  val note_thmss: theory attribute -> ((bstring * theory attribute list) *
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    56
    (thmref * theory attribute list) list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    57
    theory -> theory * (bstring * thm list) list
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
    58
  val note_thmss_i: theory attribute -> ((bstring * theory attribute list) *
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    59
    (thm list * theory attribute list) list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    60
    theory -> theory * (bstring * thm list) list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    61
  val add_axioms: ((bstring * string) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    62
    theory -> theory * thm list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    63
  val add_axioms_i: ((bstring * term) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    64
    theory -> theory * thm list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    65
  val add_axiomss: ((bstring * string list) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    66
    theory -> theory * thm list list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    67
  val add_axiomss_i: ((bstring * term list) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    68
    theory -> theory * thm list list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    69
  val add_defs: bool -> ((bstring * string) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    70
    theory -> theory * thm list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    71
  val add_defs_i: bool -> ((bstring * term) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    72
    theory -> theory * thm list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    73
  val add_defss: bool -> ((bstring * string list) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    74
    theory -> theory * thm list list
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    75
  val add_defss_i: bool -> ((bstring * term list) * theory attribute list) list ->
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    76
    theory -> theory * thm list list
17342
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
    77
  val generic_setup: string -> theory -> theory
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
    78
  val add_oracle: bstring * string * string -> theory -> theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    79
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    80
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    81
structure PureThy: PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    82
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    83
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    84
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
    85
(*** theorem database ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    86
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    87
(** dataype theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    88
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    89
fun pretty_theorems_diff thy prev_thms (space, thms) =
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    90
  let
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    91
    val prt_thm = Display.pretty_thm_sg thy;
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    92
    fun prt_thms (name, [th]) =
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    93
          Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th]
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    94
      | prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths);
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    95
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    96
    val diff_thmss = Symtab.fold (fn fact =>
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    97
      if not (Symtab.member eq_thms prev_thms fact) then cons fact else I) thms [];
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    98
    val thmss = diff_thmss |> map (apfst (NameSpace.extern space)) |> Library.sort_wrt #1;
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
    99
  in Pretty.big_list "theorems:" (map prt_thms thmss) end;
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   100
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   101
fun pretty_theorems thy = pretty_theorems_diff thy Symtab.empty;
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   102
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   103
structure TheoremsData = TheoryDataFun
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   104
(struct
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   105
  val name = "Pure/theorems";
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   106
  type T =
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   107
   {theorems: thm list NameSpace.table,
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   108
    index: FactIndex.T} ref;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   109
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   110
  fun mk_empty _ =
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   111
    ref {theorems = NameSpace.empty_table, index = FactIndex.empty}: T;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   112
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   113
  val empty = mk_empty ();
6547
5ba27aade76f theory data: copy;
wenzelm
parents: 6367
diff changeset
   114
  fun copy (ref x) = ref x;
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   115
  val extend = mk_empty;
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   116
  fun merge _ = mk_empty;
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   117
  fun print thy (ref {theorems, index}) = Pretty.writeln (pretty_theorems thy theorems);
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   118
end);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   119
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   120
val get_theorems_ref = TheoremsData.get;
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   121
val get_theorems = ! o get_theorems_ref;
17162
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
   122
val theorems_of = #theorems o get_theorems;
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
   123
val theorem_space = #1 o theorems_of;
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   124
val fact_index_of = #index o get_theorems;
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   125
6367
7f36b6fd3eb3 added cond_extern_thm_sg;
wenzelm
parents: 6350
diff changeset
   126
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   127
(* print theory *)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   128
5005
4486d53a6438 use type-safe theory data interface;
wenzelm
parents: 5000
diff changeset
   129
val print_theorems = TheoremsData.print;
8720
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 8419
diff changeset
   130
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   131
fun print_theorems_diff prev_thy thy =
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   132
  Pretty.writeln (pretty_theorems_diff thy
17162
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
   133
    (#2 (theorems_of prev_thy)) (#theorems (get_theorems thy)));
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   134
5000
9271b89c7e2c added print_theorems: theory -> unit;
wenzelm
parents: 4963
diff changeset
   135
fun print_theory thy =
9215
50de4abb987c print_theorems: omit name space;
wenzelm
parents: 9192
diff changeset
   136
  Display.pretty_full_theory thy @
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   137
    [pretty_theorems thy (#theorems (get_theorems thy))]
8720
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 8419
diff changeset
   138
  |> Pretty.chunks |> Pretty.writeln;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   139
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   140
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   141
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   142
(** retrieve theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   143
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15518
diff changeset
   144
fun the_thms _ (SOME thms) = thms
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15518
diff changeset
   145
  | the_thms name NONE = error ("Unknown theorem(s) " ^ quote name);
4037
wenzelm
parents: 4022
diff changeset
   146
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   147
fun single_thm _ [thm] = thm
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   148
  | single_thm name _ = error ("Single theorem expected " ^ quote name);
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   149
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   150
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   151
(* datatype interval *)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   152
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   153
datatype interval =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   154
  FromTo of int * int |
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   155
  From of int |
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   156
  Single of int;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   157
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   158
fun interval _ (FromTo (i, j)) = i upto j
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   159
  | interval n (From i) = i upto n
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   160
  | interval _ (Single i) = [i];
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   161
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   162
fun string_of_interval (FromTo (i, j)) = string_of_int i ^ "-" ^ string_of_int j
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   163
  | string_of_interval (From i) = string_of_int i ^ "-"
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   164
  | string_of_interval (Single i) = string_of_int i;
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   165
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   166
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   167
(* datatype thmref *)
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   168
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   169
datatype thmref =
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   170
  Name of string |
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   171
  NameSelection of string * interval list;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   172
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   173
fun name_of_thmref (Name name) = name
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   174
  | name_of_thmref (NameSelection (name, _)) = name;
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   175
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   176
fun map_name_of_thmref f (Name name) = Name (f name)
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   177
  | map_name_of_thmref f (NameSelection (name, is)) = NameSelection (f name, is);
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   178
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   179
fun string_of_thmref (Name name) = name
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   180
  | string_of_thmref (NameSelection (name, is)) =
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   181
      name ^ enclose "(" ")" (commas (map string_of_interval is));
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   182
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   183
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   184
(* select_thm *)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   185
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   186
fun select_thm (Name _) thms = thms
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   187
  | select_thm (NameSelection (name, is)) thms =
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   188
      let
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   189
        val n = length thms;
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   190
        fun select i =
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   191
          if i < 1 orelse i > n then
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   192
            error ("Bad subscript " ^ string_of_int i ^ " for " ^
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   193
              quote name ^ " (length " ^ string_of_int n ^ ")")
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   194
          else List.nth (thms, i - 1);
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   195
      in map select (List.concat (map (interval n) is)) end;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   196
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   197
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   198
(* selections *)
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   199
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   200
fun selections (name, [thm]) = [(Name name, thm)]
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   201
  | selections (name, thms) = (1 upto length thms, thms) |> ListPair.map (fn (i, thm) =>
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   202
      (NameSelection (name, [Single i]), thm));
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
   203
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   204
9808
4e47e40c0ac5 added get_thm_closure;
wenzelm
parents: 9564
diff changeset
   205
(* get_thm(s)_closure -- statically scoped versions *)
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   206
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   207
(*beware of proper order of evaluation!*)
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   208
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   209
fun lookup_thms thy =
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   210
  let
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   211
    val thy_ref = Theory.self_ref thy;
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   212
    val (space, thms) = #theorems (get_theorems thy);
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   213
  in
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   214
    fn name =>
17221
6cd180204582 curried_lookup/update;
wenzelm
parents: 17162
diff changeset
   215
      Option.map (map (Thm.transfer (Theory.deref thy_ref)))     (*dynamic identity*)
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   216
      (Symtab.lookup thms (NameSpace.intern space name)) (*static content*)
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   217
  end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   218
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   219
fun get_thms_closure thy =
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   220
  let val closures = map lookup_thms (thy :: Theory.ancestors_of thy) in
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   221
    fn thmref =>
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   222
      let val name = name_of_thmref thmref
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   223
      in select_thm thmref (the_thms name (get_first (fn f => f name) closures)) end
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
   224
  end;
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   225
9808
4e47e40c0ac5 added get_thm_closure;
wenzelm
parents: 9564
diff changeset
   226
fun get_thm_closure thy =
4e47e40c0ac5 added get_thm_closure;
wenzelm
parents: 9564
diff changeset
   227
  let val get = get_thms_closure thy
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   228
  in fn thmref => single_thm (name_of_thmref thmref) (get thmref) end;
9808
4e47e40c0ac5 added get_thm_closure;
wenzelm
parents: 9564
diff changeset
   229
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   230
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   231
(* get_thms etc. *)
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   232
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   233
fun get_thms theory thmref =
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   234
  let val name = name_of_thmref thmref in
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   235
    get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory)
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   236
    |> the_thms name |> select_thm thmref |> map (Thm.transfer theory)
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   237
  end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   238
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   239
fun get_thmss thy thmrefs = List.concat (map (get_thms thy) thmrefs);
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   240
fun get_thm thy thmref = single_thm (name_of_thmref thmref) (get_thms thy thmref);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   241
17930
e7160d70be1f added thm(s) retrieval functions (from goals.ML);
wenzelm
parents: 17703
diff changeset
   242
fun thm name = get_thm (the_context ()) (Name name);
e7160d70be1f added thm(s) retrieval functions (from goals.ML);
wenzelm
parents: 17703
diff changeset
   243
fun thms name = get_thms (the_context ()) (Name name);
e7160d70be1f added thm(s) retrieval functions (from goals.ML);
wenzelm
parents: 17703
diff changeset
   244
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   245
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   246
(* thms_containing etc. *)
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   247
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   248
fun valid_thms thy (thmref, ths) =
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   249
  (case try (transform_error (get_thms thy)) thmref of
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   250
    NONE => false
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   251
  | SOME ths' => Thm.eq_thms (ths, ths'));
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   252
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   253
fun thms_containing theory spec =
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   254
  (theory :: Theory.ancestors_of theory)
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   255
  |> map (fn thy =>
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   256
      FactIndex.find (fact_index_of thy) spec
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   257
      |> List.filter (fn (name, ths) => valid_thms theory (Name name, ths))
17496
26535df536ae slight adaptions to library changes
haftmann
parents: 17418
diff changeset
   258
      |> gen_distinct (eq_fst (op =)))
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   259
  |> List.concat;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   260
13646
46ed3d042ba5 Ported find_intro/elim to Isar.
nipkow
parents: 13539
diff changeset
   261
fun thms_containing_consts thy consts =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   262
  thms_containing thy (consts, []) |> map #2 |> List.concat
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   263
  |> map (fn th => (Thm.name_of_thm th, th));
13646
46ed3d042ba5 Ported find_intro/elim to Isar.
nipkow
parents: 13539
diff changeset
   264
15882
a191d2bee3e1 new thms_containing that searches for patterns instead of constants
kleing
parents: 15801
diff changeset
   265
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   266
(* thms_of etc. *)
15882
a191d2bee3e1 new thms_containing that searches for patterns instead of constants
kleing
parents: 15801
diff changeset
   267
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   268
fun thms_of thy =
17162
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
   269
  let val thms = #2 (theorems_of thy)
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
   270
  in map (fn th => (Thm.name_of_thm th, th)) (List.concat (map snd (Symtab.dest thms))) end;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   271
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   272
fun all_thms_of thy = List.concat (map thms_of (thy :: Theory.ancestors_of thy));
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   273
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   274
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   275
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   276
(** store theorems **)                    (*DESTRUCTIVE*)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   277
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   278
(* hiding -- affects current theory node only *)
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   279
13424
wenzelm
parents: 13274
diff changeset
   280
fun hide_thms fully names thy =
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   281
  let
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   282
    val r as ref {theorems = (space, thms), index} = get_theorems_ref thy;
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   283
    val space' = fold (NameSpace.hide fully) names space;
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   284
  in r := {theorems = (space', thms), index = index}; thy end;
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   285
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   286
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   287
(* naming *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   288
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   289
fun gen_names j len name =
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   290
  map (fn i => name ^ "_" ^ string_of_int i) (j + 1 upto j + len);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   291
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   292
fun name_multi name xs = gen_names 0 (length xs) name ~~ xs;
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   293
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   294
fun name_thm pre (name, thm) =
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   295
  if Thm.name_of_thm thm <> "" andalso pre then thm else Thm.name_thm (name, thm);
12872
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   296
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   297
fun name_thms pre name [x] = [name_thm pre (name, x)]
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   298
  | name_thms pre name xs = map (name_thm pre) (name_multi name xs);
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   299
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   300
fun name_thmss name xs =
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   301
  (case filter_out (null o fst) xs of
12872
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   302
    [([x], z)] => [([name_thm true (name, x)], z)]
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   303
  | _ => snd (foldl_map (fn (i, (ys, z)) =>
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   304
    (i + length ys, (map (name_thm true) (gen_names i (length ys) name ~~ ys), z))) (0, xs)));
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   305
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   306
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   307
(* enter_thms *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   308
7470
9f67ca1e03dc eliminated default_name (thms no longer stored for name "");
wenzelm
parents: 7405
diff changeset
   309
fun warn_overwrite name = warning ("Replaced old copy of theorems " ^ quote name);
9f67ca1e03dc eliminated default_name (thms no longer stored for name "");
wenzelm
parents: 7405
diff changeset
   310
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   311
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   312
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms)
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   313
  | enter_thms pre_name post_name app_att (bname, thms) thy =
7470
9f67ca1e03dc eliminated default_name (thms no longer stored for name "");
wenzelm
parents: 7405
diff changeset
   314
      let
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   315
        val name = Sign.full_name thy bname;
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   316
        val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms));
16513
f38693aad717 enter_thms: use theorem database of thy *after* attribute application;
wenzelm
parents: 16493
diff changeset
   317
        val r as ref {theorems = (space, theorems), index} = get_theorems_ref thy';
f38693aad717 enter_thms: use theorem database of thy *after* attribute application;
wenzelm
parents: 16493
diff changeset
   318
        val space' = Sign.declare_name thy' name space;
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   319
        val theorems' = Symtab.update (name, thms') theorems;
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   320
        val index' = FactIndex.add (K false) (name, thms') index;
13274
191419fac368 improved thms_containing (use FactIndex.T etc.);
wenzelm
parents: 12872
diff changeset
   321
      in
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   322
        (case Symtab.lookup theorems name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15518
diff changeset
   323
          NONE => ()
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   324
        | SOME thms'' =>
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   325
            if Thm.eq_thms (thms', thms'') then warn_same name
13274
191419fac368 improved thms_containing (use FactIndex.T etc.);
wenzelm
parents: 12872
diff changeset
   326
            else warn_overwrite name);
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   327
        r := {theorems = (space', theorems'), index = index'};
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   328
        (thy', thms')
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   329
      end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   330
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   331
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   332
(* add_thms(s) *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   333
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   334
fun add_thms_atts pre_name ((bname, thms), atts) =
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   335
  enter_thms pre_name (name_thms false)
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   336
    (Thm.applys_attributes o rpair atts) (bname, thms);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   337
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   338
fun gen_add_thmss pre_name args theory =
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   339
  foldl_map (fn (thy, arg) => add_thms_atts pre_name arg thy) (theory, args);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   340
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   341
fun gen_add_thms pre_name args =
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   342
  apsnd (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args);
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   343
12872
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   344
val add_thmss = gen_add_thmss (name_thms true);
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   345
val add_thms = gen_add_thms (name_thms true);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   346
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   347
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14384
diff changeset
   348
(* note_thmss(_i) *)
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   349
9192
df32cd0881b9 have_thmss: handle multiple lists of arguments;
wenzelm
parents: 9007
diff changeset
   350
local
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   351
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   352
fun gen_note_thss get kind_att (thy, ((bname, more_atts), ths_atts)) =
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   353
  let
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   354
    fun app (x, (ths, atts)) = Thm.applys_attributes ((x, ths), atts);
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   355
    val (thy', thms) = thy |> enter_thms
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   356
      name_thmss (name_thms false) (apsnd List.concat o foldl_map app)
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   357
      (bname, map (fn (ths, atts) => (get thy ths, atts @ more_atts @ [kind_att])) ths_atts);
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   358
  in (thy', (bname, thms)) end;
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   359
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   360
fun gen_note_thmss get kind_att args thy =
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   361
  foldl_map (gen_note_thss get kind_att) (thy, args);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   362
9192
df32cd0881b9 have_thmss: handle multiple lists of arguments;
wenzelm
parents: 9007
diff changeset
   363
in
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   364
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   365
val note_thmss = gen_note_thmss get_thms;
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   366
val note_thmss_i = gen_note_thmss (K I);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   367
9192
df32cd0881b9 have_thmss: handle multiple lists of arguments;
wenzelm
parents: 9007
diff changeset
   368
end;
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   369
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   370
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   371
(* store_thm *)
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   372
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   373
fun store_thm ((bname, thm), atts) thy =
12872
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   374
  let val (thy', [th']) = add_thms_atts (name_thms true) ((bname, [thm]), atts) thy
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   375
  in (thy', th') end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   376
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   377
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   378
(* smart_store_thms(_open) *)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   379
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   380
local
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   381
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   382
fun smart_store _ (name, []) =
11516
a0633bdcd015 Added equality axioms and initialization of proof term package.
berghofe
parents: 10667
diff changeset
   383
      error ("Cannot store empty list of theorems: " ^ quote name)
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   384
  | smart_store name_thm (name, [thm]) =
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   385
      #2 (enter_thms (name_thm true) (name_thm false) I (name, [thm]) (Thm.theory_of_thm thm))
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   386
  | smart_store name_thm (name, thms) =
7405
7e4e286a9931 smart_store_thms;
wenzelm
parents: 7278
diff changeset
   387
      let
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   388
        fun merge (thy, th) = Theory.merge (thy, Thm.theory_of_thm th);
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   389
        val thy = Library.foldl merge (Thm.theory_of_thm (hd thms), tl thms);
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   390
      in #2 (enter_thms (name_thm true) (name_thm false) I (name, thms) thy) end;
11516
a0633bdcd015 Added equality axioms and initialization of proof term package.
berghofe
parents: 10667
diff changeset
   391
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   392
in
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   393
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   394
val smart_store_thms = smart_store name_thms;
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   395
val smart_store_thms_open = smart_store (K (K I));
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   396
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   397
end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   398
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   399
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   400
(* forall_elim_var(s) -- belongs to drule.ML *)
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   401
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   402
fun forall_elim_vars_aux strip_vars i th =
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   403
  let
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   404
    val {thy, tpairs, prop, ...} = Thm.rep_thm th;
16787
b6b6e2faaa41 (intermediate commit)
haftmann
parents: 16722
diff changeset
   405
    val add_used = Term.fold_aterms
b6b6e2faaa41 (intermediate commit)
haftmann
parents: 16722
diff changeset
   406
      (fn Var ((x, j), _) => if i = j then curry (op ins_string) x else I | _ => I);
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   407
    val used = fold (fn (t, u) => add_used t o add_used u) tpairs (add_used prop []);
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   408
    val vars = strip_vars prop;
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   409
    val cvars = (Term.variantlist (map #1 vars, used), vars)
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   410
      |> ListPair.map (fn (x, (_, T)) => Thm.cterm_of thy (Var ((x, i), T)));
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   411
  in fold Thm.forall_elim cvars th end;
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   412
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   413
val forall_elim_vars = forall_elim_vars_aux Term.strip_all_vars;
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   414
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   415
fun forall_elim_var i th = forall_elim_vars_aux
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   416
  (fn Const ("all", _) $ Abs (a, T, _) => [(a, T)]
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   417
  | _ => raise THM ("forall_elim_vars", i, [th])) i th;
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   418
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   419
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   420
(* store axioms as theorems *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   421
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   422
local
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   423
  fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name);
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   424
  fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs;
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   425
8419
4770b1a12a93 add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents: 8039
diff changeset
   426
  fun add_single add (thy, ((name, ax), atts)) =
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   427
    let
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   428
      val named_ax = [(name, ax)];
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   429
      val thy' = add named_ax thy;
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   430
      val thm = hd (get_axs thy' named_ax);
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   431
    in apsnd hd (gen_add_thms (K I) [((name, thm), atts)] thy') end;
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   432
8419
4770b1a12a93 add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents: 8039
diff changeset
   433
  fun add_multi add (thy, ((name, axs), atts)) =
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   434
    let
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   435
      val named_axs = name_multi name axs;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   436
      val thy' = add named_axs thy;
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   437
      val thms = get_axs thy' named_axs;
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   438
    in apsnd hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   439
8419
4770b1a12a93 add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents: 8039
diff changeset
   440
  fun add_singles add args thy = foldl_map (add_single add) (thy, args);
4770b1a12a93 add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents: 8039
diff changeset
   441
  fun add_multis add args thy = foldl_map (add_multi add) (thy, args);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   442
in
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   443
  val add_axioms    = add_singles Theory.add_axioms;
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   444
  val add_axioms_i  = add_singles Theory.add_axioms_i;
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   445
  val add_axiomss   = add_multis Theory.add_axioms;
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   446
  val add_axiomss_i = add_multis Theory.add_axioms_i;
9318
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9238
diff changeset
   447
  val add_defs      = add_singles o Theory.add_defs;
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9238
diff changeset
   448
  val add_defs_i    = add_singles o Theory.add_defs_i;
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9238
diff changeset
   449
  val add_defss     = add_multis o Theory.add_defs;
4c3fb0786022 add_defs(_i): overloaded option;
wenzelm
parents: 9238
diff changeset
   450
  val add_defss_i   = add_multis o Theory.add_defs_i;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   451
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   452
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   453
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   454
17342
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   455
(*** ML setup ***)
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   456
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   457
(* generic_setup *)
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   458
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   459
val generic_setup =
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   460
  Context.use_let "val setup: (theory -> theory) list" "Library.apply setup";
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   461
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   462
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   463
(* add_oracle *)
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   464
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   465
fun add_oracle (name, T, oracle) =
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   466
  let val txt =
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   467
    "local\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   468
    \  type T = " ^ T ^ ";\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   469
    \  val oracle: theory -> T -> term = " ^ oracle ^ ";\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   470
    \  val name = " ^ quote name ^ ";\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   471
    \  exception Arg of T;\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   472
    \  val _ = Context.>> (Theory.add_oracle (name, fn (thy, Arg x) => oracle thy x));\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   473
    \  val thy = Context.the_context ();\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   474
    \  val invoke_" ^ name ^ " = Thm.invoke_oracle_i thy (Sign.full_name thy name);\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   475
    \in\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   476
    \  fun " ^ name ^ " thy x = invoke_" ^ name ^ " (thy, Arg x);\n\
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   477
    \end;\n";
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   478
  in Context.use_mltext_theory txt false end;
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   479
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   480
92504e2f6c07 added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   481
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   482
(*** the ProtoPure theory ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   483
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   484
val aT = TFree ("'a", []);
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   485
val A = Free ("A", propT);
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   486
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   487
val proto_pure =
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   488
  Context.pre_pure_thy
16987
9ed901d738ba Compress.init_data;
wenzelm
parents: 16787
diff changeset
   489
  |> Compress.init_data
16536
c5744af6b28a renamed init to init_data;
wenzelm
parents: 16513
diff changeset
   490
  |> Sign.init_data
c5744af6b28a renamed init to init_data;
wenzelm
parents: 16513
diff changeset
   491
  |> Theory.init_data
c5744af6b28a renamed init to init_data;
wenzelm
parents: 16513
diff changeset
   492
  |> Proofterm.init_data
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   493
  |> TheoremsData.init
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   494
  |> Theory.add_types
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   495
   [("fun", 2, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   496
    ("prop", 0, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   497
    ("itself", 1, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   498
    ("dummy", 0, NoSyn)]
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   499
  |> Theory.add_nonterminals Syntax.pure_nonterms
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   500
  |> Theory.add_syntax Syntax.pure_syntax
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15797
diff changeset
   501
  |> Theory.add_syntax Syntax.pure_appl_syntax
6692
05c56f41e661 avoid string constants;
wenzelm
parents: 6682
diff changeset
   502
  |> Theory.add_modesyntax (Symbol.xsymbolsN, true) Syntax.pure_xsym_syntax
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   503
  |> Theory.add_syntax
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   504
   [("==>", "prop => prop => prop", Delimfix "op ==>"),
9534
0d14a9e7930c dummy_pattern moved to term.ML;
wenzelm
parents: 9318
diff changeset
   505
    (Term.dummy_patternN, "aprop", Delimfix "'_")]
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   506
  |> Theory.add_consts
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   507
   [("==", "'a => 'a => prop", InfixrName ("==", 2)),
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   508
    ("==>", "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   509
    ("all", "('a => prop) => prop", Binder ("!!", 0, 0)),
10667
75a1c9575edb eliminated GOAL syntax;
wenzelm
parents: 10453
diff changeset
   510
    ("Goal", "prop => prop", NoSyn),
6547
5ba27aade76f theory data: copy;
wenzelm
parents: 6367
diff changeset
   511
    ("TYPE", "'a itself", NoSyn),
9534
0d14a9e7930c dummy_pattern moved to term.ML;
wenzelm
parents: 9318
diff changeset
   512
    (Term.dummy_patternN, "'a", Delimfix "'_")]
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 13800
diff changeset
   513
  |> Theory.add_finals_i false
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   514
    [Const ("==", [aT, aT] ---> propT),
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   515
     Const ("==>", [propT, propT] ---> propT),
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   516
     Const ("all", (aT --> propT) --> propT),
17703
6ec36bad47ea Theory.add_finals_i;
wenzelm
parents: 17496
diff changeset
   517
     Const ("TYPE", a_itselfT),
6ec36bad47ea Theory.add_finals_i;
wenzelm
parents: 17496
diff changeset
   518
     Const (Term.dummy_patternN, aT)]
5041
a1d0a6d555cd Goals may now contain assumptions, which are not returned.
nipkow
parents: 5026
diff changeset
   519
  |> Theory.add_modesyntax ("", false)
12138
7cad58fbc866 renamed open_smart_store_thms to smart_store_thms_open;
wenzelm
parents: 12123
diff changeset
   520
    (Syntax.pure_syntax_output @ Syntax.pure_appl_syntax)
12250
c9ff220cb6c7 trfuns *after* binder syntax;
wenzelm
parents: 12235
diff changeset
   521
  |> Theory.add_trfuns Syntax.pure_trfuns
c9ff220cb6c7 trfuns *after* binder syntax;
wenzelm
parents: 12235
diff changeset
   522
  |> Theory.add_trfunsT Syntax.pure_trfunsT
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   523
  |> Sign.local_path
10667
75a1c9575edb eliminated GOAL syntax;
wenzelm
parents: 10453
diff changeset
   524
  |> (#1 oo (add_defs_i false o map Thm.no_attributes))
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   525
   [("Goal_def", Logic.mk_equals (Logic.mk_goal A, A))]
9238
ad37b21c0dc6 added "nothing" (empty list of theorems);
wenzelm
parents: 9215
diff changeset
   526
  |> (#1 o add_thmss [(("nothing", []), [])])
11516
a0633bdcd015 Added equality axioms and initialization of proof term package.
berghofe
parents: 10667
diff changeset
   527
  |> Theory.add_axioms_i Proofterm.equality_axms
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   528
  |> Theory.end_theory;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   529
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   530
structure ProtoPure =
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   531
struct
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   532
  val thy = proto_pure;
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   533
  val Goal_def = get_axiom thy "Goal_def";
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   534
end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   535
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   536
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   537
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   538
structure BasicPureThy: BASIC_PURE_THY = PureThy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   539
open BasicPureThy;