src/Pure/pure_thy.ML
author wenzelm
Sun, 21 Feb 2010 22:35:02 +0100
changeset 35262 9ea4445d2ccf
parent 35255 2cb27605301f
child 35429 afa8cf9e63d8
permissions -rw-r--r--
slightly more abstract syntax mark/unmark operations;
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
    Author:     Markus Wenzel, TU Muenchen
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     3
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
     4
Theorem storage.  Pure theory syntax and logical content.
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     5
*)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     6
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     7
signature PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     8
sig
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
     9
  val facts_of: theory -> Facts.T
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    10
  val intern_fact: theory -> xstring -> string
26693
90d0b86644ac renamed check_fact to defined_fact;
wenzelm
parents: 26683
diff changeset
    11
  val defined_fact: theory -> string -> bool
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    12
  val hide_fact: bool -> string -> theory -> theory
32105
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
    13
  val join_proofs: theory -> unit
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
    14
  val get_fact: Context.generic -> theory -> Facts.ref -> thm list
26344
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    15
  val get_thms: theory -> xstring -> thm list
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    16
  val get_thm: theory -> xstring -> thm
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
    17
  val all_thms_of: theory -> (string * thm) list
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    18
  val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
21567
c097a926ba78 added burrow_fact;
wenzelm
parents: 21524
diff changeset
    19
  val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    20
  val burrow_facts: ('a list -> 'b list) ->
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    21
    ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    22
  val name_multi: string -> 'a list -> (string * 'a) list
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
    23
  val name_thm: bool -> bool -> string -> thm -> thm
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
    24
  val name_thms: bool -> bool -> string -> thm list -> thm list
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
    25
  val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    26
  val store_thms: binding * thm list -> theory -> thm list * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    27
  val store_thm: binding * thm -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    28
  val store_thm_open: binding * thm -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    29
  val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    30
  val add_thm: (binding * thm) * attribute list -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    31
  val add_thmss: ((binding * thm list) * attribute list) list -> theory -> thm list list * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    32
  val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory
30853
6c6b7a72fa34 tuned signature;
wenzelm
parents: 30344
diff changeset
    33
  val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list
6c6b7a72fa34 tuned signature;
wenzelm
parents: 30344
diff changeset
    34
    -> theory -> (string * thm list) list * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    35
  val add_axioms: ((binding * term) * attribute list) list -> theory -> thm list * theory
30337
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
    36
  val add_axioms_cmd: ((binding * string) * attribute list) list -> theory -> thm list * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    37
  val add_defs: bool -> ((binding * term) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    38
    theory -> thm list * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    39
  val add_defs_unchecked: bool -> ((binding * term) * attribute list) list ->
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    40
    theory -> thm list * theory
30337
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
    41
  val add_defs_cmd: bool -> ((binding * string) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    42
    theory -> thm list * theory
30337
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
    43
  val add_defs_unchecked_cmd: bool -> ((binding * string) * attribute list) list ->
19629
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    44
    theory -> thm list * theory
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    45
  val old_appl_syntax: theory -> bool
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    46
  val old_appl_syntax_setup: theory -> theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    47
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    48
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    49
structure PureThy: PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    50
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    51
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    52
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    53
(*** stored facts ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    54
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    55
(** theory data **)
26282
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
    56
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33384
diff changeset
    57
structure FactsData = Theory_Data
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
    58
(
32105
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
    59
  type T = Facts.T * thm list;
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
    60
  val empty = (Facts.empty, []);
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
    61
  fun extend (facts, _) = (facts, []);
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33384
diff changeset
    62
  fun merge ((facts1, _), (facts2, _)) = (Facts.merge (facts1, facts2), []);
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
    63
);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    64
28841
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    65
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    66
(* facts *)
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    67
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    68
val facts_of = #1 o FactsData.get;
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    69
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    70
val intern_fact = Facts.intern o facts_of;
26693
90d0b86644ac renamed check_fact to defined_fact;
wenzelm
parents: 26683
diff changeset
    71
val defined_fact = Facts.defined o facts_of;
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    72
28841
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    73
fun hide_fact fully name = FactsData.map (apfst (Facts.hide fully name));
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    74
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    75
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    76
(* proofs *)
5556c7976837 added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents: 28674
diff changeset
    77
32105
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
    78
fun register_proofs (thy, thms) = (FactsData.map (apsnd (append thms)) thy, thms);
28977
08990d02211f renamed type Lazy.T to lazy;
wenzelm
parents: 28941
diff changeset
    79
32105
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
    80
fun join_proofs thy = Thm.join_proofs (rev (#2 (FactsData.get thy)));
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    81
6367
7f36b6fd3eb3 added cond_extern_thm_sg;
wenzelm
parents: 6350
diff changeset
    82
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    83
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    84
(** retrieve theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    85
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    86
fun get_fact context thy xthmref =
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
    87
  let
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
    88
    val xname = Facts.name_of_ref xthmref;
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
    89
    val pos = Facts.pos_of_ref xthmref;
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    90
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    91
    val name = intern_fact thy xname;
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    92
    val res = Facts.lookup context (facts_of thy) name;
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    93
    val _ = Theory.check_thy thy;
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
    94
  in
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    95
    (case res of
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    96
      NONE => error ("Unknown fact " ^ quote name ^ Position.str_of pos)
27739
cd1df29db620 get_fact: report position;
wenzelm
parents: 27728
diff changeset
    97
    | SOME (static, ths) =>
cd1df29db620 get_fact: report position;
wenzelm
parents: 27728
diff changeset
    98
        (Position.report ((if static then Markup.fact else Markup.dynamic_fact) name) pos;
cd1df29db620 get_fact: report position;
wenzelm
parents: 27728
diff changeset
    99
         Facts.select xthmref (map (Thm.transfer thy) ths)))
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   100
  end;
26344
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   101
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   102
fun get_thms thy = get_fact (Context.Theory thy) thy o Facts.named;
26344
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   103
fun get_thm thy name = Facts.the_single name (get_thms thy name);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   104
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   105
fun all_thms_of thy =
27865
27a8ad9612a3 moved basic thm operations from structure PureThy to Thm (cf. more_thm.ML);
wenzelm
parents: 27739
diff changeset
   106
  Facts.fold_static (fn (_, ths) => append (map (`(Thm.get_name_hint)) ths)) (facts_of thy) [];
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   107
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   108
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   109
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   110
(** store theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   111
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   112
(* fact specifications *)
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   113
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   114
fun map_facts f = map (apsnd (map (apfst (map f))));
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   115
fun burrow_fact f = split_list #>> burrow f #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   116
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   117
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   118
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   119
(* naming *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   120
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   121
fun name_multi name [x] = [(name, x)]
26457
wenzelm
parents: 26436
diff changeset
   122
  | name_multi "" xs = map (pair "") xs
wenzelm
parents: 26436
diff changeset
   123
  | name_multi name xs = map_index (fn (i, x) => (name ^ "_" ^ string_of_int (i + 1), x)) xs;
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   124
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   125
fun name_thm pre official name thm = thm
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   126
  |> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name)
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   127
  |> (if Thm.has_name_hint thm andalso pre orelse name = "" then I else Thm.put_name_hint name);
12872
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   128
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   129
fun name_thms pre official name xs =
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   130
  map (uncurry (name_thm pre official)) (name_multi name xs);
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   131
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   132
fun name_thmss official name fact =
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   133
  burrow_fact (name_thms true official name) fact;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   134
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   135
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   136
(* enter_thms *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   137
28861
f53abb0733ee using name bindings
haftmann
parents: 28856
diff changeset
   138
fun enter_thms pre_name post_name app_att (b, thms) thy =
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   139
  if Binding.is_empty b
32105
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
   140
  then swap (register_proofs (app_att (thy, thms)))
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   141
  else
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   142
    let
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   143
      val naming = Sign.naming_of thy;
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32786
diff changeset
   144
      val name = Name_Space.full_name naming b;
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   145
      val (thy', thms') =
32105
da419b0c1c1d join_proofs: implicit exception;
wenzelm
parents: 32060
diff changeset
   146
        register_proofs (apsnd (post_name name) (app_att (thy, pre_name name thms)));
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   147
      val thms'' = map (Thm.transfer thy') thms';
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   148
      val thy'' = thy' |> (FactsData.map o apfst) (Facts.add_global naming (b, thms'') #> snd);
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   149
    in (thms'', thy'') end;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   150
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   151
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   152
(* store_thm(s) *)
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   153
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   154
fun store_thms (b, thms) =
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   155
  enter_thms (name_thms true true) (name_thms false true) I (b, thms);
28076
b2374a203b1c name_thm etc.: pass position;
wenzelm
parents: 27865
diff changeset
   156
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   157
fun store_thm (b, th) = store_thms (b, [th]) #>> the_single;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   158
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   159
fun store_thm_open (b, th) =
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   160
  enter_thms (name_thms true false) (name_thms false false) I (b, [th]) #>> the_single;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   161
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   162
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   163
(* add_thms(s) *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   164
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   165
fun add_thms_atts pre_name ((b, thms), atts) =
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   166
  enter_thms pre_name (name_thms false true)
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   167
    (Library.foldl_map (Thm.theory_attributes atts)) (b, thms);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   168
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   169
fun gen_add_thmss pre_name =
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   170
  fold_map (add_thms_atts pre_name);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   171
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   172
fun gen_add_thms pre_name args =
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   173
  apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args);
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   174
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   175
val add_thmss = gen_add_thmss (name_thms true true);
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   176
val add_thms = gen_add_thms (name_thms true true);
27683
add9a605d562 dropped PureThy.note; added PureThy.add_thm
haftmann
parents: 27198
diff changeset
   177
val add_thm = yield_singleton add_thms;
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   178
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   179
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   180
(* add_thms_dynamic *)
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   181
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   182
fun add_thms_dynamic (b, f) thy = thy
28864
d6fe93e3dcb9 fact table now using name bindings
haftmann
parents: 28861
diff changeset
   183
  |> (FactsData.map o apfst)
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   184
      (Facts.add_dynamic (Sign.naming_of thy) (b, f) #> snd);
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   185
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   186
27728
9a9e54042800 removed obsolete note_thms_cmd;
wenzelm
parents: 27691
diff changeset
   187
(* note_thmss *)
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   188
33167
f02b804305d6 maintain group via name space, not tags;
wenzelm
parents: 33095
diff changeset
   189
fun note_thmss kind = fold_map (fn ((b, more_atts), ths_atts) => fn thy =>
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   190
  let
28941
128459bd72d2 new Binding module
haftmann
parents: 28904
diff changeset
   191
    val pos = Binding.pos_of b;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   192
    val name = Sign.full_name thy b;
28076
b2374a203b1c name_thm etc.: pass position;
wenzelm
parents: 27865
diff changeset
   193
    val _ = Position.report (Markup.fact_decl name) pos;
b2374a203b1c name_thm etc.: pass position;
wenzelm
parents: 27865
diff changeset
   194
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29579
diff changeset
   195
    fun app (x, (ths, atts)) = Library.foldl_map (Thm.theory_attributes atts) (x, ths);
18418
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   196
    val (thms, thy') = thy |> enter_thms
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   197
      (name_thmss true) (name_thms false true) (apsnd flat o Library.foldl_map app)
33167
f02b804305d6 maintain group via name space, not tags;
wenzelm
parents: 33095
diff changeset
   198
      (b, map (fn (ths, atts) => (ths, surround (Thm.kind kind) (atts @ more_atts))) ths_atts);
28076
b2374a203b1c name_thm etc.: pass position;
wenzelm
parents: 27865
diff changeset
   199
  in ((name, thms), thy') end);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   200
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   201
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   202
(* store axioms as theorems *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   203
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   204
local
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   205
  fun get_ax thy (b, _) = Thm.axiom thy (Sign.full_name thy b);
26655
750bab48223d moved forall_elim_var(s) to more_thm.ML;
wenzelm
parents: 26626
diff changeset
   206
  fun get_axs thy named_axs = map (Thm.forall_elim_vars 0 o get_ax thy) named_axs;
30337
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   207
  fun add_axm add = fold_map (fn ((b, ax), atts) => fn thy =>
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   208
    let
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   209
      val named_ax = [(b, ax)];
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   210
      val thy' = add named_ax thy;
30337
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   211
      val thm = hd (get_axs thy' named_ax);
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   212
    in apfst hd (gen_add_thms (K I) [((b, thm), atts)] thy') end);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   213
in
30337
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   214
  val add_defs               = add_axm o Theory.add_defs_i false;
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   215
  val add_defs_unchecked     = add_axm o Theory.add_defs_i true;
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   216
  val add_axioms             = add_axm Theory.add_axioms_i;
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   217
  val add_defs_cmd           = add_axm o Theory.add_defs false;
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   218
  val add_defs_unchecked_cmd = add_axm o Theory.add_defs true;
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   219
  val add_axioms_cmd         = add_axm Theory.add_axioms;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   220
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   221
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   222
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   223
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   224
(*** Pure theory syntax and logical content ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   225
33384
1b5ba4e6a953 modernized structure Simple_Syntax;
wenzelm
parents: 33365
diff changeset
   226
val typ = Simple_Syntax.read_typ;
1b5ba4e6a953 modernized structure Simple_Syntax;
wenzelm
parents: 33365
diff changeset
   227
val prop = Simple_Syntax.read_prop;
35262
9ea4445d2ccf slightly more abstract syntax mark/unmark operations;
wenzelm
parents: 35255
diff changeset
   228
val const = Syntax.mark_const;
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   229
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   230
val typeT = Syntax.typeT;
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   231
val spropT = Syntax.spropT;
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   232
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   233
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   234
(* application syntax variants *)
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   235
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   236
val appl_syntax =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   237
 [("_appl", typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   238
  ("_appl", typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))];
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   239
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   240
val applC_syntax =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   241
 [("",       typ "'a => cargs",                  Delimfix "_"),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   242
  ("_cargs", typ "'a => cargs => cargs",         Mixfix ("_/ _", [1000, 1000], 1000)),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   243
  ("_applC", typ "('b => 'a) => cargs => logic", Mixfix ("(1_/ _)", [1000, 1000], 999)),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   244
  ("_applC", typ "('b => 'a) => cargs => aprop", Mixfix ("(1_/ _)", [1000, 1000], 999))];
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   245
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33384
diff changeset
   246
structure OldApplSyntax = Theory_Data
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   247
(
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   248
  type T = bool;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   249
  val empty = false;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   250
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33384
diff changeset
   251
  fun merge (b1, b2) : T =
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   252
    if b1 = b2 then b1
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   253
    else error "Cannot merge theories with different application syntax";
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   254
);
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   255
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   256
val old_appl_syntax = OldApplSyntax.get;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   257
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   258
val old_appl_syntax_setup =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   259
  OldApplSyntax.put true #>
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   260
  Sign.del_modesyntax_i Syntax.mode_default applC_syntax #>
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   261
  Sign.add_syntax_i appl_syntax;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   262
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   263
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   264
(* main content *)
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   265
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26457
diff changeset
   266
val _ = Context.>> (Context.map_theory
33365
4db1b31b246e set Pure theory name properly
haftmann
parents: 33167
diff changeset
   267
  (Sign.map_naming (Name_Space.set_theory_name Context.PureN) #>
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33384
diff changeset
   268
   OldApplSyntax.put false #>
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   269
   Sign.add_types
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   270
   [(Binding.name "fun", 2, NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   271
    (Binding.name "prop", 0, NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   272
    (Binding.name "itself", 1, NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   273
    (Binding.name "dummy", 0, NoSyn)]
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   274
  #> Sign.add_nonterminals (map Binding.name Syntax.basic_nonterms)
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   275
  #> Sign.add_syntax_i
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   276
   [("_lambda",     typ "pttrns => 'a => logic",       Mixfix ("(3%_./ _)", [0, 3], 3)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   277
    ("_abs",        typ "'a",                          NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   278
    ("",            typ "'a => args",                  Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   279
    ("_args",       typ "'a => args => args",          Delimfix "_,/ _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   280
    ("",            typ "id => idt",                   Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   281
    ("_idtdummy",   typ "idt",                         Delimfix "'_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   282
    ("_idtyp",      typ "id => type => idt",           Mixfix ("_::_", [], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   283
    ("_idtypdummy", typ "type => idt",                 Mixfix ("'_()::_", [], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   284
    ("",            typ "idt => idt",                  Delimfix "'(_')"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   285
    ("",            typ "idt => idts",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   286
    ("_idts",       typ "idt => idts => idts",         Mixfix ("_/ _", [1, 0], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   287
    ("",            typ "idt => pttrn",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   288
    ("",            typ "pttrn => pttrns",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   289
    ("_pttrns",     typ "pttrn => pttrns => pttrns",   Mixfix ("_/ _", [1, 0], 0)),
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   290
    ("",            typ "aprop => aprop",              Delimfix "'(_')"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   291
    ("",            typ "id => aprop",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   292
    ("",            typ "longid => aprop",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   293
    ("",            typ "var => aprop",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   294
    ("_DDDOT",      typ "aprop",                       Delimfix "..."),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   295
    ("_aprop",      typ "aprop => prop",               Delimfix "PROP _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   296
    ("_asm",        typ "prop => asms",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   297
    ("_asms",       typ "prop => asms => asms",        Delimfix "_;/ _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   298
    ("_bigimpl",    typ "asms => prop => prop",        Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   299
    ("_ofclass",    typ "type => logic => prop",       Delimfix "(1OFCLASS/(1'(_,/ _')))"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   300
    ("_mk_ofclass", typ "dummy",                       NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   301
    ("_TYPE",       typ "type => logic",               Delimfix "(1TYPE/(1'(_')))"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   302
    ("",            typ "id => logic",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   303
    ("",            typ "longid => logic",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   304
    ("",            typ "var => logic",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   305
    ("_DDDOT",      typ "logic",                       Delimfix "..."),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   306
    ("_constify",   typ "num => num_const",            Delimfix "_"),
29156
89f76a58a378 renamed terminal category "float" to "float_token", to avoid name
wenzelm
parents: 29002
diff changeset
   307
    ("_constify",   typ "float_token => float_const",  Delimfix "_"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   308
    ("_indexnum",   typ "num_const => index",          Delimfix "\\<^sub>_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   309
    ("_index",      typ "logic => index",              Delimfix "(00\\<^bsub>_\\<^esub>)"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   310
    ("_indexdefault", typ "index",                     Delimfix ""),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   311
    ("_indexvar",   typ "index",                       Delimfix "'\\<index>"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   312
    ("_struct",     typ "index => logic",              Mixfix ("\\<struct>_", [1000], 1000)),
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 35130
diff changeset
   313
    ("_update_name", typ "idt",                        NoSyn),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   314
    (const "==>",   typ "prop => prop => prop",        Delimfix "op ==>"),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   315
    (const Term.dummy_patternN, typ "aprop",           Delimfix "'_"),
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   316
    ("_sort_constraint", typ "type => prop",           Delimfix "(1SORT'_CONSTRAINT/(1'(_')))"),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   317
    (const "Pure.term", typ "logic => prop",           Delimfix "TERM _"),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   318
    (const "Pure.conjunction", typ "prop => prop => prop", Infixr ("&&&", 2))]
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   319
  #> Sign.add_syntax_i applC_syntax
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   320
  #> Sign.add_modesyntax_i (Symbol.xsymbolsN, true)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   321
   [("fun",      typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   322
    ("_bracket", typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   323
    ("_ofsort",  typ "tid => sort => type",    Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   324
    ("_constrain", typ "logic => type => logic", Mixfix ("_\\<Colon>_", [4, 0], 3)),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   325
    ("_constrain", [spropT, typeT] ---> spropT, Mixfix ("_\\<Colon>_", [4, 0], 3)),
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   326
    ("_idtyp",    typ "id => type => idt",     Mixfix ("_\\<Colon>_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   327
    ("_idtypdummy", typ "type => idt",         Mixfix ("'_()\\<Colon>_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   328
    ("_type_constraint_", typ "'a",            NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   329
    ("_lambda",  typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   330
    (const "==", typ "'a => 'a => prop",       Infixr ("\\<equiv>", 2)),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   331
    (const "all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   332
    (const "==>", typ "prop => prop => prop",  Infixr ("\\<Longrightarrow>", 1)),
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   333
    ("_DDDOT",   typ "aprop",                  Delimfix "\\<dots>"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   334
    ("_bigimpl", typ "asms => prop => prop",   Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   335
    ("_DDDOT",   typ "logic",                  Delimfix "\\<dots>")]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   336
  #> Sign.add_modesyntax_i ("", false)
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   337
   [(const "prop", typ "prop => prop", Mixfix ("_", [0], 0))]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   338
  #> Sign.add_modesyntax_i ("HTML", false)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   339
   [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   340
  #> Sign.add_consts_i
35130
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 33700
diff changeset
   341
   [(Binding.name "==", typ "'a => 'a => prop", Infixr ("==", 2)),
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   342
    (Binding.name "==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   343
    (Binding.name "all", typ "('a => prop) => prop", Binder ("!!", 0, 0)),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   344
    (Binding.name "prop", typ "prop => prop", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   345
    (Binding.name "TYPE", typ "'a itself", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   346
    (Binding.name Term.dummy_patternN, typ "'a", Delimfix "'_")]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   347
  #> Theory.add_deps "==" ("==", typ "'a => 'a => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   348
  #> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   349
  #> Theory.add_deps "all" ("all", typ "('a => prop) => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   350
  #> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   351
  #> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   352
  #> Sign.add_trfuns Syntax.pure_trfuns
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   353
  #> Sign.add_trfunsT Syntax.pure_trfunsT
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   354
  #> Sign.local_path
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   355
  #> Sign.add_consts_i
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   356
   [(Binding.name "term", typ "'a => prop", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   357
    (Binding.name "sort_constraint", typ "'a itself => prop", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   358
    (Binding.name "conjunction", typ "prop => prop => prop", NoSyn)]
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 27683
diff changeset
   359
  #> (add_defs false o map Thm.no_attributes)
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   360
   [(Binding.name "prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"),
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   361
    (Binding.name "term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   362
    (Binding.name "sort_constraint_def",
28622
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   363
      prop "(CONST Pure.sort_constraint :: 'a itself => prop) (CONST TYPE :: 'a itself) ==\
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   364
      \ (CONST Pure.term :: 'a itself => prop) (CONST TYPE :: 'a itself)"),
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   365
    (Binding.name "conjunction_def", prop "(A &&& B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd
28622
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   366
  #> Sign.hide_const false "Pure.term"
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   367
  #> Sign.hide_const false "Pure.sort_constraint"
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
   368
  #> Sign.hide_const false "Pure.conjunction"
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   369
  #> add_thmss [((Binding.name "nothing", []), [])] #> snd
30337
eb189f7e43a1 Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents: 30242
diff changeset
   370
  #> Theory.add_axioms_i (map (apfst Binding.name) Proofterm.equality_axms)));
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   371
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   372
end;