src/Pure/pure_thy.ML
author wenzelm
Tue, 02 Oct 2007 22:23:30 +0200
changeset 24817 636b23afee76
parent 24793 cbe63f2193b6
child 24965 8b4a02947721
permissions -rw-r--r--
removed unused add_defss;
     1 (*  Title:      Pure/pure_thy.ML
     2     ID:         $Id$
     3     Author:     Markus Wenzel, TU Muenchen
     4 
     5 Theorem storage.  The ProtoPure theory.
     6 *)
     7 
     8 signature BASIC_PURE_THY =
     9 sig
    10   datatype interval = FromTo of int * int | From of int | Single of int
    11   datatype thmref =
    12     Name of string |
    13     NameSelection of string * interval list |
    14     Fact of string
    15   val get_thm: theory -> thmref -> thm
    16   val get_thms: theory -> thmref -> thm list
    17   val get_thmss: theory -> thmref list -> thm list
    18   structure ProtoPure:
    19     sig
    20       val thy: theory
    21       val prop_def: thm
    22       val term_def: thm
    23       val conjunction_def: thm
    24     end
    25 end;
    26 
    27 signature PURE_THY =
    28 sig
    29   include BASIC_PURE_THY
    30   val tag_rule: Markup.property -> thm -> thm
    31   val untag_rule: string -> thm -> thm
    32   val tag: Markup.property -> attribute
    33   val untag: string -> attribute
    34   val has_name_hint: thm -> bool
    35   val get_name_hint: thm -> string
    36   val put_name_hint: string -> thm -> thm
    37   val has_kind: thm -> bool
    38   val get_kind: thm -> string
    39   val kind_rule: string -> thm -> thm
    40   val kind: string -> attribute
    41   val kind_internal: attribute
    42   val has_internal: Markup.property list -> bool
    43   val is_internal: thm -> bool
    44   val string_of_thmref: thmref -> string
    45   val get_thm_closure: theory -> thmref -> thm
    46   val get_thms_closure: theory -> thmref -> thm list
    47   val single_thm: string -> thm list -> thm
    48   val name_of_thmref: thmref -> string
    49   val map_name_of_thmref: (string -> string) -> thmref -> thmref
    50   val select_thm: thmref -> thm list -> thm list
    51   val selections: string * thm list -> (thmref * thm) list
    52   val theorems_of: theory -> thm list NameSpace.table
    53   val fact_index_of: theory -> FactIndex.T
    54   val valid_thms: theory -> thmref * thm list -> bool
    55   val thms_containing: theory -> FactIndex.spec -> (string * thm list) list
    56   val thms_containing_consts: theory -> string list -> (string * thm) list
    57   val thms_of: theory -> (string * thm) list
    58   val all_thms_of: theory -> (string * thm) list
    59   val hide_thms: bool -> string list -> theory -> theory
    60   val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
    61   val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list
    62   val burrow_facts: ('a list -> 'b list) ->
    63     ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
    64   val name_multi: string -> 'a list -> (string * 'a) list
    65   val name_thm: bool -> bool -> string -> thm -> thm
    66   val name_thms: bool -> bool -> string -> thm list -> thm list
    67   val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list
    68   val store_thm: (bstring * thm) * attribute list -> theory -> thm * theory
    69   val smart_store_thms: (bstring * thm list) -> thm list
    70   val smart_store_thms_open: (bstring * thm list) -> thm list
    71   val forall_elim_var: int -> thm -> thm
    72   val forall_elim_vars: int -> thm -> thm
    73   val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory
    74   val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory 
    75   val note_thmss: string -> ((bstring * attribute list) *
    76     (thmref * attribute list) list) list -> theory -> (bstring * thm list) list * theory
    77   val note_thmss_i: string -> ((bstring * attribute list) *
    78     (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
    79   val note_thmss_qualified: string -> string -> ((bstring * attribute list) *
    80     (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
    81   val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory
    82   val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory
    83   val add_axiomss: ((bstring * string list) * attribute list) list ->
    84     theory -> thm list list * theory
    85   val add_axiomss_i: ((bstring * term list) * attribute list) list ->
    86     theory -> thm list list * theory
    87   val simple_def: bstring * attribute list ->
    88     ((bstring * typ * mixfix) * term list) * term -> theory -> (string * thm) * theory
    89   val add_defs: bool -> ((bstring * string) * attribute list) list ->
    90     theory -> thm list * theory
    91   val add_defs_i: bool -> ((bstring * term) * attribute list) list ->
    92     theory -> thm list * theory
    93   val add_defs_unchecked: bool -> ((bstring * string) * attribute list) list ->
    94     theory -> thm list * theory
    95   val add_defs_unchecked_i: bool -> ((bstring * term) * attribute list) list ->
    96     theory -> thm list * theory
    97   val appl_syntax: (string * typ * mixfix) list
    98   val applC_syntax: (string * typ * mixfix) list
    99 end;
   100 
   101 structure PureThy: PURE_THY =
   102 struct
   103 
   104 
   105 (*** theorem tags ***)
   106 
   107 (* add / delete tags *)
   108 
   109 fun tag_rule tg = Thm.map_tags (insert (op =) tg);
   110 fun untag_rule s = Thm.map_tags (filter_out (fn (s', _) => s = s'));
   111 
   112 fun tag tg x = Thm.rule_attribute (K (tag_rule tg)) x;
   113 fun untag s x = Thm.rule_attribute (K (untag_rule s)) x;
   114 
   115 
   116 (* unofficial theorem names *)
   117 
   118 fun the_name_hint thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.nameN);
   119 
   120 val has_name_hint = can the_name_hint;
   121 val get_name_hint = the_default "??.unknown" o try the_name_hint;
   122 
   123 fun put_name_hint name = untag_rule Markup.nameN #> tag_rule (Markup.nameN, name);
   124 
   125 
   126 (* theorem kinds *)
   127 
   128 fun the_kind thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.kindN);
   129 
   130 val has_kind = can the_kind;
   131 val get_kind = the_default "??.unknown" o try the_kind;
   132 
   133 fun kind_rule k = tag_rule (Markup.kindN, k) o untag_rule Markup.kindN;
   134 fun kind k x = if k = "" then x else Thm.rule_attribute (K (kind_rule k)) x;
   135 fun kind_internal x = kind Thm.internalK x;
   136 fun has_internal tags = exists (fn tg => tg = (Markup.kindN, Thm.internalK)) tags;
   137 val is_internal = has_internal o Thm.get_tags;
   138 
   139 
   140 
   141 (*** theorem database ***)
   142 
   143 (** dataype theorems **)
   144 
   145 structure TheoremsData = TheoryDataFun
   146 (
   147   type T =
   148    {theorems: thm list NameSpace.table,
   149     index: FactIndex.T} ref;
   150 
   151   fun mk_empty _ =
   152     ref {theorems = NameSpace.empty_table, index = FactIndex.empty}: T;
   153 
   154   val empty = mk_empty ();
   155   fun copy (ref x) = ref x;
   156   val extend = mk_empty;
   157   fun merge _ = mk_empty;
   158 );
   159 
   160 val get_theorems_ref = TheoremsData.get;
   161 val get_theorems = ! o get_theorems_ref;
   162 val theorems_of = #theorems o get_theorems;
   163 val fact_index_of = #index o get_theorems;
   164 
   165 
   166 
   167 (** retrieve theorems **)
   168 
   169 fun the_thms _ (SOME thms) = thms
   170   | the_thms name NONE = error ("Unknown theorem(s) " ^ quote name);
   171 
   172 fun single_thm _ [thm] = thm
   173   | single_thm name _ = error ("Single theorem expected " ^ quote name);
   174 
   175 
   176 (* datatype interval *)
   177 
   178 datatype interval =
   179   FromTo of int * int |
   180   From of int |
   181   Single of int;
   182 
   183 fun string_of_interval (FromTo (i, j)) = string_of_int i ^ "-" ^ string_of_int j
   184   | string_of_interval (From i) = string_of_int i ^ "-"
   185   | string_of_interval (Single i) = string_of_int i;
   186 
   187 fun interval n iv =
   188   let fun err () = raise Fail ("Bad interval specification " ^ string_of_interval iv) in
   189     (case iv of
   190       FromTo (i, j) => if i <= j then i upto j else err ()
   191     | From i => if i <= n then i upto n else err ()
   192     | Single i => [i])
   193   end;
   194 
   195 
   196 (* datatype thmref *)
   197 
   198 datatype thmref =
   199   Name of string |
   200   NameSelection of string * interval list |
   201   Fact of string;
   202 
   203 fun name_of_thmref (Name name) = name
   204   | name_of_thmref (NameSelection (name, _)) = name
   205   | name_of_thmref (Fact _) = error "Illegal literal fact";
   206 
   207 fun map_name_of_thmref f (Name name) = Name (f name)
   208   | map_name_of_thmref f (NameSelection (name, is)) = NameSelection (f name, is)
   209   | map_name_of_thmref _ thmref = thmref;
   210 
   211 fun string_of_thmref (Name name) = name
   212   | string_of_thmref (NameSelection (name, is)) =
   213       name ^ enclose "(" ")" (commas (map string_of_interval is))
   214   | string_of_thmref (Fact _) = error "Illegal literal fact";
   215 
   216 
   217 (* select_thm *)
   218 
   219 fun select_thm (Name _) thms = thms
   220   | select_thm (Fact _) thms = thms
   221   | select_thm (NameSelection (name, ivs)) thms =
   222       let
   223         val n = length thms;
   224         fun err msg = error (msg ^ " for " ^ quote name ^ " (length " ^ string_of_int n ^ ")");
   225         fun select i =
   226           if i < 1 orelse i > n then err ("Bad subscript " ^ string_of_int i)
   227           else nth thms (i - 1);
   228         val is = maps (interval n) ivs handle Fail msg => err msg;
   229       in map select is end;
   230 
   231 
   232 (* selections *)
   233 
   234 fun selections (name, [thm]) = [(Name name, thm)]
   235   | selections (name, thms) = (1 upto length thms, thms) |> ListPair.map (fn (i, thm) =>
   236       (NameSelection (name, [Single i]), thm));
   237 
   238 
   239 (* get_thm(s)_closure -- statically scoped versions *)
   240 
   241 (*beware of proper order of evaluation!*)
   242 
   243 fun lookup_thms thy =
   244   let
   245     val (space, thms) = #theorems (get_theorems thy);
   246     val thy_ref = Theory.check_thy thy;
   247   in
   248     fn name =>
   249       Option.map (map (Thm.transfer (Theory.deref thy_ref)))     (*dynamic identity*)
   250       (Symtab.lookup thms (NameSpace.intern space name)) (*static content*)
   251   end;
   252 
   253 fun get_thms_closure thy =
   254   let val closures = map lookup_thms (thy :: Theory.ancestors_of thy) in
   255     fn thmref =>
   256       let val name = name_of_thmref thmref;
   257       in select_thm thmref (the_thms name (get_first (fn f => f name) closures)) end
   258   end;
   259 
   260 fun get_thm_closure thy =
   261   let val get = get_thms_closure thy
   262   in fn thmref => single_thm (name_of_thmref thmref) (get thmref) end;
   263 
   264 
   265 (* get_thms etc. *)
   266 
   267 fun get_thms theory thmref =
   268   let val name = name_of_thmref thmref in
   269     get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory)
   270     |> the_thms name |> select_thm thmref |> map (Thm.transfer theory)
   271   end;
   272 
   273 fun get_thmss thy thmrefs = maps (get_thms thy) thmrefs;
   274 fun get_thm thy thmref = single_thm (name_of_thmref thmref) (get_thms thy thmref);
   275 
   276 
   277 (* thms_containing etc. *)
   278 
   279 fun valid_thms thy (thmref, ths) =
   280   (case try (get_thms thy) thmref of
   281     NONE => false
   282   | SOME ths' => Thm.eq_thms (ths, ths'));
   283 
   284 fun thms_containing theory spec =
   285   (theory :: Theory.ancestors_of theory)
   286   |> maps (fn thy =>
   287       FactIndex.find (fact_index_of thy) spec
   288       |> List.filter (fn (name, ths) => valid_thms theory (Name name, ths))
   289       |> distinct (eq_fst (op =)));
   290 
   291 fun thms_containing_consts thy consts =
   292   thms_containing thy (consts, []) |> maps #2
   293   |> map (`(get_name_hint));
   294 
   295 
   296 (* thms_of etc. *)
   297 
   298 fun thms_of thy =
   299   let val thms = #2 (theorems_of thy)
   300   in map (`(get_name_hint)) (maps snd (Symtab.dest thms)) end;
   301 
   302 fun all_thms_of thy = maps thms_of (thy :: Theory.ancestors_of thy);
   303 
   304 
   305 
   306 (** store theorems **)                    (*DESTRUCTIVE*)
   307 
   308 (* hiding -- affects current theory node only *)
   309 
   310 fun hide_thms fully names thy = CRITICAL (fn () =>
   311   let
   312     val r as ref {theorems = (space, thms), index} = get_theorems_ref thy;
   313     val space' = fold (NameSpace.hide fully) names space;
   314   in r := {theorems = (space', thms), index = index}; thy end);
   315 
   316 
   317 (* fact specifications *)
   318 
   319 fun map_facts f = map (apsnd (map (apfst (map f))));
   320 fun burrow_fact f = split_list #>> burrow f #> op ~~;
   321 fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
   322 
   323 
   324 (* naming *)
   325 
   326 fun gen_names _ len "" = replicate len ""
   327   | gen_names j len name = map (fn i => name ^ "_" ^ string_of_int i) (j + 1 upto j + len);
   328 
   329 fun name_multi name [x] = [(name, x)]
   330   | name_multi name xs = gen_names 0 (length xs) name ~~ xs;
   331 
   332 fun name_thm pre official name thm = thm
   333   |> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name)
   334   |> (if has_name_hint thm andalso pre orelse name = "" then I else put_name_hint name);
   335 
   336 fun name_thms pre official name xs =
   337   map (uncurry (name_thm pre official)) (name_multi name xs);
   338 
   339 fun name_thmss official name fact =
   340   burrow_fact (name_thms true official name) fact;
   341 
   342 
   343 (* enter_thms *)
   344 
   345 fun warn_overwrite name = warning ("Replaced old copy of theorems " ^ quote name);
   346 fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name);
   347 
   348 fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap
   349   | enter_thms pre_name post_name app_att (bname, thms) thy = CRITICAL (fn () =>
   350       let
   351         val name = Sign.full_name thy bname;
   352         val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms));
   353         val r as ref {theorems = (space, theorems), index} = get_theorems_ref thy';
   354         val space' = Sign.declare_name thy' name space;
   355         val theorems' = Symtab.update (name, thms') theorems;
   356         val index' = FactIndex.add_global (name, thms') index;
   357       in
   358         (case Symtab.lookup theorems name of
   359           NONE => ()
   360         | SOME thms'' =>
   361             if Thm.eq_thms (thms', thms'') then warn_same name
   362             else warn_overwrite name);
   363         r := {theorems = (space', theorems'), index = index'};
   364         (thms', thy')
   365       end);
   366 
   367 
   368 (* add_thms(s) *)
   369 
   370 fun add_thms_atts pre_name ((bname, thms), atts) =
   371   enter_thms pre_name (name_thms false true)
   372     (foldl_map (Thm.theory_attributes atts)) (bname, thms);
   373 
   374 fun gen_add_thmss pre_name =
   375   fold_map (add_thms_atts pre_name);
   376 
   377 fun gen_add_thms pre_name args =
   378   apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args);
   379 
   380 val add_thmss = gen_add_thmss (name_thms true true);
   381 val add_thms = gen_add_thms (name_thms true true);
   382 
   383 
   384 (* note_thmss(_i) *)
   385 
   386 local
   387 
   388 fun gen_note_thmss get k = fold_map (fn ((bname, more_atts), ths_atts) => fn thy =>
   389   let
   390     fun app (x, (ths, atts)) = foldl_map (Thm.theory_attributes atts) (x, ths);
   391     val (thms, thy') = thy |> enter_thms
   392       (name_thmss true) (name_thms false true) (apsnd flat o foldl_map app)
   393       (bname, map (fn (ths, atts) => (get thy ths, atts @ more_atts @ [kind k])) ths_atts);
   394   in ((bname, thms), thy') end);
   395 
   396 in
   397 
   398 val note_thmss = gen_note_thmss get_thms;
   399 val note_thmss_i = gen_note_thmss (K I);
   400 
   401 end;
   402 
   403 fun note_thmss_qualified k path facts thy =
   404   thy
   405   |> Sign.add_path path
   406   |> Sign.no_base_names
   407   |> note_thmss_i k facts
   408   ||> Sign.restore_naming thy;
   409 
   410 
   411 (* store_thm *)
   412 
   413 fun store_thm ((bname, thm), atts) thy =
   414   let val ([th'], thy') = add_thms_atts (name_thms true true) ((bname, [thm]), atts) thy
   415   in (th', thy') end;
   416 
   417 
   418 (* smart_store_thms(_open) *)
   419 
   420 local
   421 
   422 fun smart_store _ (name, []) =
   423       error ("Cannot store empty list of theorems: " ^ quote name)
   424   | smart_store official (name, [thm]) =
   425       fst (enter_thms (name_thms true official) (name_thms false official) I (name, [thm])
   426         (Thm.theory_of_thm thm))
   427   | smart_store official (name, thms) =
   428       let val thy = Theory.merge_list (map Thm.theory_of_thm thms) in
   429         fst (enter_thms (name_thms true official) (name_thms false official) I (name, thms) thy)
   430       end;
   431 
   432 in
   433 
   434 val smart_store_thms = smart_store true;
   435 val smart_store_thms_open = smart_store false;
   436 
   437 end;
   438 
   439 
   440 (* forall_elim_var(s) -- belongs to drule.ML *)
   441 
   442 fun forall_elim_vars_aux strip_vars i th =
   443   let
   444     val {thy, tpairs, prop, ...} = Thm.rep_thm th;
   445     val add_used = Term.fold_aterms
   446       (fn Var ((x, j), _) => if i = j then insert (op =) x else I | _ => I);
   447     val used = fold (fn (t, u) => add_used t o add_used u) tpairs (add_used prop []);
   448     val vars = strip_vars prop;
   449     val cvars = (Name.variant_list used (map #1 vars), vars)
   450       |> ListPair.map (fn (x, (_, T)) => Thm.cterm_of thy (Var ((x, i), T)));
   451   in fold Thm.forall_elim cvars th end;
   452 
   453 val forall_elim_vars = forall_elim_vars_aux Term.strip_all_vars;
   454 
   455 fun forall_elim_var i th = forall_elim_vars_aux
   456   (fn Const ("all", _) $ Abs (a, T, _) => [(a, T)]
   457   | _ => raise THM ("forall_elim_vars", i, [th])) i th;
   458 
   459 
   460 (* store axioms as theorems *)
   461 
   462 local
   463   fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name);
   464   fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs;
   465   fun add_single add ((name, ax), atts) thy =
   466     let
   467       val named_ax = [(name, ax)];
   468       val thy' = add named_ax thy;
   469       val thm = hd (get_axs thy' named_ax);
   470     in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end;
   471   fun add_multi add ((name, axs), atts) thy =
   472     let
   473       val named_axs = name_multi name axs;
   474       val thy' = add named_axs thy;
   475       val thms = get_axs thy' named_axs;
   476     in apfst hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end;
   477   fun add_singles add = fold_map (add_single add);
   478   fun add_multis add = fold_map (add_multi add);
   479 in
   480   val add_axioms           = add_singles Theory.add_axioms;
   481   val add_axioms_i         = add_singles Theory.add_axioms_i;
   482   val add_axiomss          = add_multis Theory.add_axioms;
   483   val add_axiomss_i        = add_multis Theory.add_axioms_i;
   484   val add_defs             = add_singles o Theory.add_defs false;
   485   val add_defs_i           = add_singles o Theory.add_defs_i false;
   486   val add_defs_unchecked   = add_singles o Theory.add_defs true;
   487   val add_defs_unchecked_i = add_singles o Theory.add_defs_i true;
   488 end;
   489 
   490 
   491 (* simple interface for simple definitions *)
   492 
   493 fun simple_def (raw_name, atts) (((raw_c, ty, syn), ts), t) thy =
   494   let
   495     val c = Sign.full_name thy raw_c;
   496     val name = if raw_name = "" then Thm.def_name raw_c else raw_name;
   497     val def = Logic.mk_equals (list_comb (Const (c, ty), ts), t);
   498   in
   499     thy
   500     |> Sign.add_consts_authentic [] [(raw_c, ty, syn)]
   501     |> add_defs_i false [((name, def), atts)]
   502     |-> (fn [thm] => pair (c, thm))
   503   end;
   504 
   505 
   506 
   507 (*** the ProtoPure theory ***)
   508 
   509 val typ = SimpleSyntax.read_typ;
   510 val term = SimpleSyntax.read_term;
   511 val prop = SimpleSyntax.read_prop;
   512 
   513 val appl_syntax =
   514  [("_appl", typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)),
   515   ("_appl", typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))];
   516 
   517 val applC_syntax =
   518  [("",       typ "'a => cargs",                  Delimfix "_"),
   519   ("_cargs", typ "'a => cargs => cargs",         Mixfix ("_/ _", [1000, 1000], 1000)),
   520   ("_applC", typ "('b => 'a) => cargs => logic", Mixfix ("(1_/ _)", [1000, 1000], 999)),
   521   ("_applC", typ "('b => 'a) => cargs => aprop", Mixfix ("(1_/ _)", [1000, 1000], 999))];
   522 
   523 val proto_pure =
   524   Context.pre_pure_thy
   525   |> Compress.init_data
   526   |> TheoremsData.init
   527   |> Sign.add_types
   528    [("fun", 2, NoSyn),
   529     ("prop", 0, NoSyn),
   530     ("itself", 1, NoSyn),
   531     ("dummy", 0, NoSyn)]
   532   |> Sign.add_nonterminals Syntax.basic_nonterms
   533   |> Sign.add_syntax_i
   534    [("_lambda",     typ "pttrns => 'a => logic",     Mixfix ("(3%_./ _)", [0, 3], 3)),
   535     ("_abs",        typ "'a",                        NoSyn),
   536     ("",            typ "'a => args",                Delimfix "_"),
   537     ("_args",       typ "'a => args => args",        Delimfix "_,/ _"),
   538     ("",            typ "id => idt",                 Delimfix "_"),
   539     ("_idtdummy",   typ "idt",                       Delimfix "'_"),
   540     ("_idtyp",      typ "id => type => idt",         Mixfix ("_::_", [], 0)),
   541     ("_idtypdummy", typ "type => idt",               Mixfix ("'_()::_", [], 0)),
   542     ("",            typ "idt => idt",                Delimfix "'(_')"),
   543     ("",            typ "idt => idts",               Delimfix "_"),
   544     ("_idts",       typ "idt => idts => idts",       Mixfix ("_/ _", [1, 0], 0)),
   545     ("",            typ "idt => pttrn",              Delimfix "_"),
   546     ("",            typ "pttrn => pttrns",           Delimfix "_"),
   547     ("_pttrns",     typ "pttrn => pttrns => pttrns", Mixfix ("_/ _", [1, 0], 0)),
   548     ("",            typ "id => aprop",               Delimfix "_"),
   549     ("",            typ "longid => aprop",           Delimfix "_"),
   550     ("",            typ "var => aprop",              Delimfix "_"),
   551     ("_DDDOT",      typ "aprop",                     Delimfix "..."),
   552     ("_aprop",      typ "aprop => prop",             Delimfix "PROP _"),
   553     ("_asm",        typ "prop => asms",              Delimfix "_"),
   554     ("_asms",       typ "prop => asms => asms",      Delimfix "_;/ _"),
   555     ("_bigimpl",    typ "asms => prop => prop",      Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
   556     ("_ofclass",    typ "type => logic => prop",     Delimfix "(1OFCLASS/(1'(_,/ _')))"),
   557     ("_mk_ofclass", typ "dummy",                     NoSyn),
   558     ("_TYPE",       typ "type => logic",             Delimfix "(1TYPE/(1'(_')))"),
   559     ("",            typ "id => logic",               Delimfix "_"),
   560     ("",            typ "longid => logic",           Delimfix "_"),
   561     ("",            typ "var => logic",              Delimfix "_"),
   562     ("_DDDOT",      typ "logic",                     Delimfix "..."),
   563     ("_constify",   typ "num => num_const",          Delimfix "_"),
   564     ("_indexnum",   typ "num_const => index",        Delimfix "\\<^sub>_"),
   565     ("_index",      typ "logic => index",            Delimfix "(00\\<^bsub>_\\<^esub>)"),
   566     ("_indexdefault", typ "index",                   Delimfix ""),
   567     ("_indexvar",   typ "index",                     Delimfix "'\\<index>"),
   568     ("_struct",     typ "index => logic",            Mixfix ("\\<struct>_", [1000], 1000)),
   569     ("==>",         typ "prop => prop => prop",      Delimfix "op ==>"),
   570     (Term.dummy_patternN, typ "aprop",               Delimfix "'_")]
   571   |> Sign.add_syntax_i appl_syntax
   572   |> Sign.add_modesyntax_i (Symbol.xsymbolsN, true)
   573    [("fun",      typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
   574     ("_bracket", typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
   575     ("_ofsort",  typ "tid => sort => type",    Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
   576     ("_constrain", typ "'a => type => 'a",     Mixfix ("_\\<Colon>_", [4, 0], 3)),
   577     ("_idtyp",    typ "id => type => idt",     Mixfix ("_\\<Colon>_", [], 0)),
   578     ("_idtypdummy", typ "type => idt",         Mixfix ("'_()\\<Colon>_", [], 0)),
   579     ("_type_constraint_", typ "'a",            NoSyn),
   580     ("_lambda",  typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
   581     ("==",       typ "'a => 'a => prop",       InfixrName ("\\<equiv>", 2)),
   582     ("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
   583     ("==>",      typ "prop => prop => prop",   InfixrName ("\\<Longrightarrow>", 1)),
   584     ("_DDDOT",   typ "aprop",                  Delimfix "\\<dots>"),
   585     ("_bigimpl", typ "asms => prop => prop",   Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
   586     ("_DDDOT",   typ "logic",                  Delimfix "\\<dots>")]
   587   |> Sign.add_modesyntax_i ("", false)
   588    [("prop", typ "prop => prop", Mixfix ("_", [0], 0)),
   589     ("ProtoPure.term", typ "'a => prop", Delimfix "TERM _"),
   590     ("ProtoPure.conjunction", typ "prop => prop => prop", InfixrName ("&&", 2))]
   591   |> Sign.add_modesyntax_i ("HTML", false)
   592    [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
   593   |> Sign.add_consts_i
   594    [("==", typ "'a => 'a => prop", InfixrName ("==", 2)),
   595     ("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
   596     ("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)),
   597     ("prop", typ "prop => prop", NoSyn),
   598     ("TYPE", typ "'a itself", NoSyn),
   599     (Term.dummy_patternN, typ "'a", Delimfix "'_")]
   600   |> Theory.add_finals_i false
   601     [Const ("==", typ "'a => 'a => prop"),
   602      Const ("==>", typ "prop => prop => prop"),
   603      Const ("all", typ "('a => prop) => prop"),
   604      Const ("TYPE", typ "'a itself"),
   605      Const (Term.dummy_patternN, typ "'a")]
   606   |> Sign.add_trfuns Syntax.pure_trfuns
   607   |> Sign.add_trfunsT Syntax.pure_trfunsT
   608   |> Sign.local_path
   609   |> Sign.add_consts_i
   610    [("term", typ "'a => prop", NoSyn),
   611     ("conjunction", typ "prop => prop => prop", NoSyn)]
   612   |> (add_defs_i false o map Thm.no_attributes)
   613    [("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"),
   614     ("term_def", prop "(CONST ProtoPure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
   615     ("conjunction_def", prop "(A && B) == (!!C::prop. (A ==> B ==> C) ==> C)")] |> snd
   616   |> Sign.hide_consts false ["conjunction", "term"]
   617   |> add_thmss [(("nothing", []), [])] |> snd
   618   |> Theory.add_axioms_i Proofterm.equality_axms
   619   |> Theory.end_theory;
   620 
   621 structure ProtoPure =
   622 struct
   623   val thy = proto_pure;
   624   val prop_def = get_axiom thy "prop_def";
   625   val term_def = get_axiom thy "term_def";
   626   val conjunction_def = get_axiom thy "conjunction_def";
   627 end;
   628 
   629 end;
   630 
   631 structure BasicPureThy: BASIC_PURE_THY = PureThy;
   632 open BasicPureThy;