src/Pure/Isar/attrib.ML
author wenzelm
Sun, 06 Nov 2011 21:51:46 +0100
changeset 45375 7fe19930dfc9
parent 44069 d7c7ec248ef0
child 45390 e29521ef9059
permissions -rw-r--r--
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute; misc tuning;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/attrib.ML
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Muenchen
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
     3
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
     4
Symbolic representation of attributes -- with name and syntax.
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
     5
*)
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
     6
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
     7
signature ATTRIB =
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
     8
sig
27729
aaf08262b177 tuned signature;
wenzelm
parents: 26891
diff changeset
     9
  type src = Args.src
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29004
diff changeset
    10
  type binding = binding * src list
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28084
diff changeset
    11
  val empty_binding: binding
27729
aaf08262b177 tuned signature;
wenzelm
parents: 26891
diff changeset
    12
  val print_attributes: theory -> unit
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16344
diff changeset
    13
  val intern: theory -> xstring -> string
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16344
diff changeset
    14
  val intern_src: theory -> src -> src
21031
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
    15
  val pretty_attribs: Proof.context -> src list -> Pretty.T list
26891
bfa1944e5238 added defined;
wenzelm
parents: 26715
diff changeset
    16
  val defined: theory -> string -> bool
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    17
  val attribute: theory -> src -> attribute
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    18
  val attribute_i: theory -> src -> attribute
18905
5542716503ab more generic type for map_specs/facts;
wenzelm
parents: 18872
diff changeset
    19
  val map_specs: ('a -> 'att) ->
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
    20
    (('c * 'a list) * 'b) list -> (('c * 'att list) * 'b) list
18905
5542716503ab more generic type for map_specs/facts;
wenzelm
parents: 18872
diff changeset
    21
  val map_facts: ('a -> 'att) ->
17105
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
    22
    (('c * 'a list) * ('d * 'a list) list) list ->
18905
5542716503ab more generic type for map_specs/facts;
wenzelm
parents: 18872
diff changeset
    23
    (('c * 'att list) * ('d * 'att list) list) list
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
    24
  val map_facts_refs: ('a -> 'att) -> ('b -> 'fact) ->
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
    25
    (('c * 'a list) * ('b * 'a list) list) list ->
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
    26
    (('c * 'att list) * ('fact * 'att list) list) list
38330
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
    27
  val eval_thms: Proof.context -> (Facts.ref * src list) list -> thm list
20289
ba7a7c56bed5 normalized Proof.context/method type aliases;
wenzelm
parents: 20241
diff changeset
    28
  val crude_closure: Proof.context -> src -> src
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
    29
  val setup: Binding.binding -> attribute context_parser -> string -> theory -> theory
30575
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30543
diff changeset
    30
  val attribute_setup: bstring * Position.T -> Symbol_Pos.text * Position.T -> string ->
368e26dfba69 more precise type Symbol_Pos.text;
wenzelm
parents: 30543
diff changeset
    31
    theory -> theory
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
    32
  val add_del: attribute -> attribute -> attribute context_parser
30513
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30466
diff changeset
    33
  val thm_sel: Facts.interval list parser
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30466
diff changeset
    34
  val thm: thm context_parser
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30466
diff changeset
    35
  val thms: thm list context_parser
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30466
diff changeset
    36
  val multi_thm: thm list context_parser
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
    37
  val print_configs: Proof.context -> unit
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
    38
  val internal: (morphism -> attribute) -> src
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    39
  val config_bool: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    40
    (Context.generic -> bool) -> bool Config.T * (theory -> theory)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    41
  val config_int: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    42
    (Context.generic -> int) -> int Config.T * (theory -> theory)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    43
  val config_real: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    44
    (Context.generic -> real) -> real Config.T * (theory -> theory)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    45
  val config_string: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    46
    (Context.generic -> string) -> string Config.T * (theory -> theory)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    47
  val setup_config_bool: Binding.binding -> (Context.generic -> bool) -> bool Config.T
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    48
  val setup_config_int: Binding.binding -> (Context.generic -> int) -> int Config.T
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    49
  val setup_config_string: Binding.binding -> (Context.generic -> string) -> string Config.T
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    50
  val setup_config_real: Binding.binding -> (Context.generic -> real) -> real Config.T
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    51
end;
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    52
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    53
structure Attrib: ATTRIB =
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    54
struct
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    55
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    56
(* source and bindings *)
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    57
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    58
type src = Args.src;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    59
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29004
diff changeset
    60
type binding = binding * src list;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28084
diff changeset
    61
val empty_binding: binding = (Binding.empty, []);
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    62
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    63
27729
aaf08262b177 tuned signature;
wenzelm
parents: 26891
diff changeset
    64
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    65
(** named attributes **)
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
    66
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    67
(* theory data *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    68
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
    69
structure Attributes = Theory_Data
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    70
(
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33092
diff changeset
    71
  type T = ((src -> attribute) * string) Name_Space.table;
33159
369da293bbd4 make SML/NJ happy;
wenzelm
parents: 33096
diff changeset
    72
  val empty : T = Name_Space.empty_table "attribute";
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16344
diff changeset
    73
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
    74
  fun merge data : T = Name_Space.merge_tables data;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    75
);
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    76
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    77
fun print_attributes thy =
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    78
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
    79
    val ctxt = Proof_Context.init_global thy;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
    80
    val attribs = Attributes.get thy;
42813
6c841fa92fa2 optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents: 42808
diff changeset
    81
    fun prt_attr (name, (_, "")) = Pretty.str name
6c841fa92fa2 optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents: 42808
diff changeset
    82
      | prt_attr (name, (_, comment)) =
6c841fa92fa2 optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents: 42808
diff changeset
    83
          Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 2, Pretty.str comment];
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    84
  in
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42289
diff changeset
    85
    [Pretty.big_list "attributes:" (map prt_attr (Name_Space.extern_table ctxt attribs))]
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    86
    |> Pretty.chunks |> Pretty.writeln
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    87
  end;
7611
5b5aba10c8f6 help: unkown theory context;
wenzelm
parents: 7598
diff changeset
    88
33092
c859019d3ac5 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 31794
diff changeset
    89
fun add_attribute name att comment thy = thy
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    90
  |> Attributes.map
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    91
    (Name_Space.define (Proof_Context.init_global thy) true (Sign.naming_of thy)
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    92
      (name, (att, comment)) #> snd);
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
    93
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    94
21031
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
    95
(* name space *)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    96
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33092
diff changeset
    97
val intern = Name_Space.intern o #1 o Attributes.get;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    98
val intern_src = Args.map_name o intern;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    99
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   100
fun extern ctxt = Name_Space.extern ctxt (#1 (Attributes.get (Proof_Context.theory_of ctxt)));
21031
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   101
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   102
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   103
(* pretty printing *)
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   104
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   105
fun pretty_attribs _ [] = []
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   106
  | pretty_attribs ctxt srcs =
38329
16bb1e60204b use Pretty.enum convenience;
wenzelm
parents: 37198
diff changeset
   107
      [Pretty.enum "," "[" "]" (map (Args.pretty_src ctxt o Args.map_name (extern ctxt)) srcs)];
21031
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   108
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   109
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   110
(* get attributes *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   111
26891
bfa1944e5238 added defined;
wenzelm
parents: 26715
diff changeset
   112
val defined = Symtab.defined o #2 o Attributes.get;
bfa1944e5238 added defined;
wenzelm
parents: 26715
diff changeset
   113
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   114
fun attribute_i thy =
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   115
  let
42380
9371ea9f91fb markup attributes/methods via name space;
wenzelm
parents: 42375
diff changeset
   116
    val (space, tab) = Attributes.get thy;
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   117
    fun attr src =
16344
a52fe1277902 attribs: NameSpace.table;
wenzelm
parents: 16141
diff changeset
   118
      let val ((name, _), pos) = Args.dest_src src in
42380
9371ea9f91fb markup attributes/methods via name space;
wenzelm
parents: 42375
diff changeset
   119
        (case Symtab.lookup tab name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   120
          NONE => error ("Unknown attribute: " ^ quote name ^ Position.str_of pos)
42380
9371ea9f91fb markup attributes/methods via name space;
wenzelm
parents: 42375
diff changeset
   121
        | SOME (att, _) => (Position.report pos (Name_Space.markup space name); att src))
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   122
      end;
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   123
  in attr end;
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   124
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   125
fun attribute thy = attribute_i thy o intern_src thy;
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   126
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   127
17105
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   128
(* attributed declarations *)
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   129
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   130
fun map_specs f = map (apfst (apsnd (map f)));
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
   131
17105
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   132
fun map_facts f = map (apfst (apsnd (map f)) o apsnd (map (apsnd (map f))));
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
   133
fun map_facts_refs f g = map_facts f #> map (apsnd (map (apfst g)));
17105
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   134
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   135
38330
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   136
(* fact expressions *)
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   137
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   138
fun eval_thms ctxt srcs = ctxt
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   139
  |> Proof_Context.note_thmss ""
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   140
    (map_facts_refs (attribute (Proof_Context.theory_of ctxt)) (Proof_Context.get_fact ctxt)
38330
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   141
      [((Binding.empty, []), srcs)])
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   142
  |> fst |> maps snd;
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   143
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   144
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   145
(* crude_closure *)
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   146
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   147
(*Produce closure without knowing facts in advance! The following
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   148
  works reasonably well for attribute parsers that do not peek at the
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   149
  thm structure.*)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   150
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   151
fun crude_closure ctxt src =
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   152
 (try (fn () =>
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   153
    Thm.apply_attribute (attribute_i (Proof_Context.theory_of ctxt) src)
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   154
      (Context.Proof ctxt, Drule.asm_rl)) ();
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   155
  Args.closure src);
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   156
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   157
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   158
(* attribute setup *)
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   159
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   160
fun syntax scan = Args.syntax "attribute" scan;
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   161
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   162
fun setup name scan =
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   163
  add_attribute name
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   164
    (fn src => fn (ctxt, th) => let val (a, ctxt') = syntax scan src ctxt in a (ctxt', th) end);
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   165
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   166
fun attribute_setup name (txt, pos) cmt =
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   167
  Context.theory_map (ML_Context.expression pos
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   168
    "val (name, scan, comment): binding * attribute context_parser * string"
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   169
    "Context.map_theory (Attrib.setup name scan comment)"
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 36959
diff changeset
   170
    (ML_Lex.read Position.none ("(" ^ ML_Syntax.make_binding name ^ ", ") @
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 36959
diff changeset
   171
      ML_Lex.read pos txt @
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 36959
diff changeset
   172
      ML_Lex.read Position.none (", " ^ ML_Syntax.print_string cmt ^ ")")));
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   173
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   174
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   175
(* add/del syntax *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   176
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   177
fun add_del add del = Scan.lift (Args.add >> K add || Args.del >> K del || Scan.succeed add);
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   178
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   179
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   180
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   181
(** parsing attributed theorems **)
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   182
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   183
val thm_sel = Parse.$$$ "(" |-- Parse.list1
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   184
 (Parse.nat --| Parse.minus -- Parse.nat >> Facts.FromTo ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   185
  Parse.nat --| Parse.minus >> Facts.From ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   186
  Parse.nat >> Facts.Single) --| Parse.$$$ ")";
27812
af8edf3ab68c unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents: 27751
diff changeset
   187
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   188
local
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   189
21698
43a842769765 thms etc.: proper treatment of internal_fact with selection;
wenzelm
parents: 21658
diff changeset
   190
val fact_name = Args.internal_fact >> K "<fact>" || Args.name;
43a842769765 thms etc.: proper treatment of internal_fact with selection;
wenzelm
parents: 21658
diff changeset
   191
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   192
fun gen_thm pick = Scan.depend (fn context =>
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   193
  let
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   194
    val thy = Context.theory_of context;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   195
    val get = Context.cases (Global_Theory.get_fact context) Proof_Context.get_fact context;
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26345
diff changeset
   196
    val get_fact = get o Facts.Fact;
27820
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   197
    fun get_named pos name = get (Facts.Named ((name, pos), NONE));
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   198
  in
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   199
    Parse.$$$ "[" |-- Args.attribs (intern thy) --| Parse.$$$ "]" >> (fn srcs =>
24008
63ff2445ce1e renamed Config to ConfigOption;
wenzelm
parents: 24003
diff changeset
   200
      let
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   201
        val atts = map (attribute_i thy) srcs;
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   202
        val (context', th') =
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   203
          Library.apply (map Thm.apply_attribute atts) (context, Drule.dummy_thm);
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   204
      in (context', pick "" [th']) end)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   205
    ||
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   206
    (Scan.ahead Args.alt_name -- Args.named_fact get_fact
27820
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   207
      >> (fn (s, fact) => ("", Facts.Fact s, fact)) ||
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   208
     Scan.ahead (Parse.position fact_name) :|-- (fn (name, pos) =>
27820
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   209
      Args.named_fact (get_named pos) -- Scan.option thm_sel
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   210
        >> (fn (fact, sel) => (name, Facts.Named ((name, pos), sel), fact))))
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   211
    -- Args.opt_attribs (intern thy) >> (fn ((name, thmref, fact), srcs) =>
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   212
      let
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   213
        val ths = Facts.select thmref fact;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   214
        val atts = map (attribute_i thy) srcs;
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   215
        val (context', ths') =
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   216
          Library.foldl_map (Library.apply (map Thm.apply_attribute atts)) (context, ths);
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   217
      in (context', pick name ths') end)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   218
  end);
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15117
diff changeset
   219
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   220
in
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   221
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   222
val thm = gen_thm Facts.the_single;
18998
10c251f29847 Context.generic is canonical state of parsers;
wenzelm
parents: 18977
diff changeset
   223
val multi_thm = gen_thm (K I);
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   224
val thms = Scan.repeat multi_thm >> flat;
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   225
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   226
end;
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   227
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   228
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   229
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   230
(** basic attributes **)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   231
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   232
(* internal *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   233
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   234
fun internal att = Args.src (("Pure.attribute", [Token.mk_attribute att]), Position.none);
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   235
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   236
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   237
(* rule composition *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   238
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   239
val COMP_att =
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   240
  Scan.lift (Scan.optional (Args.bracks Parse.nat) 1) -- thm
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   241
    >> (fn (i, B) => Thm.rule_attribute (fn _ => fn A => Drule.compose_single (A, i, B)));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   242
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   243
val THEN_att =
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   244
  Scan.lift (Scan.optional (Args.bracks Parse.nat) 1) -- thm
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   245
    >> (fn (i, B) => Thm.rule_attribute (fn _ => fn A => A RSN (i, B)));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   246
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   247
val OF_att =
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   248
  thms >> (fn Bs => Thm.rule_attribute (fn _ => fn A => Bs MRS A));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   249
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   250
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   251
(* rename_abs *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   252
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   253
val rename_abs =
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   254
  Scan.repeat (Args.maybe Args.name)
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   255
  >> (fn args => Thm.rule_attribute (K (Drule.rename_bvars' args)));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   256
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   257
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   258
(* unfold / fold definitions *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   259
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   260
fun unfolded_syntax rule =
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   261
  thms >> (fn ths => Thm.rule_attribute (fn context => rule (Context.proof_of context) ths));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   262
35624
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35021
diff changeset
   263
val unfolded = unfolded_syntax Local_Defs.unfold;
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35021
diff changeset
   264
val folded = unfolded_syntax Local_Defs.fold;
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   265
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   266
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   267
(* rule format *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   268
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   269
val rule_format = Args.mode "no_asm"
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   270
  >> (fn true => Object_Logic.rule_format_no_asm | false => Object_Logic.rule_format);
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   271
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   272
val elim_format = Thm.rule_attribute (K Tactic.make_elim);
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   273
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   274
44046
a43ca8ed6564 extended user-level attribute case_names with names for case hypotheses
nipkow
parents: 43347
diff changeset
   275
(* case names *)
a43ca8ed6564 extended user-level attribute case_names with names for case hypotheses
nipkow
parents: 43347
diff changeset
   276
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   277
val case_names =
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   278
  Scan.repeat1 (Args.name --
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   279
    Scan.optional (Parse.$$$ "[" |-- Scan.repeat1 (Args.maybe Args.name) --| Parse.$$$ "]") []) >>
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   280
  (fn cs =>
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   281
    Rule_Cases.cases_hyp_names (map fst cs)
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   282
      (map (map (the_default Rule_Cases.case_hypsN) o snd) cs));
44053
3cc902f81a26 made SML/NJ happy;
wenzelm
parents: 44046
diff changeset
   283
44046
a43ca8ed6564 extended user-level attribute case_names with names for case hypotheses
nipkow
parents: 43347
diff changeset
   284
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   285
(* misc rules *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   286
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   287
val no_vars = Thm.rule_attribute (fn context => fn th =>
26715
00ff79ab6e6b no_vars: reset body mode, i.e. invent global frees (which are acceptable to Variable.auto_fixes);
wenzelm
parents: 26685
diff changeset
   288
  let
00ff79ab6e6b no_vars: reset body mode, i.e. invent global frees (which are acceptable to Variable.auto_fixes);
wenzelm
parents: 26685
diff changeset
   289
    val ctxt = Variable.set_body false (Context.proof_of context);
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 31365
diff changeset
   290
    val ((_, [th']), _) = Variable.import true [th] ctxt;
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   291
  in th' end);
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   292
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   293
val eta_long =
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   294
  Thm.rule_attribute (K (Conv.fconv_rule Drule.eta_long_conversion));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   295
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   296
val rotated = Scan.optional Parse.int 1 >> (fn n => Thm.rule_attribute (K (rotate_prems n)));
29690
c81f8b2967e1 Added abs_def attribute.
berghofe
parents: 29581
diff changeset
   297
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   298
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   299
(* theory setup *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   300
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   301
val _ = Context.>> (Context.map_theory
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   302
 (setup (Binding.name "attribute") (Scan.lift Args.internal_attribute >> Morphism.form)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   303
    "internal attribute" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   304
  setup (Binding.name "tagged") (Scan.lift (Args.name -- Args.name) >> Thm.tag) "tagged theorem" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   305
  setup (Binding.name "untagged") (Scan.lift Args.name >> Thm.untag) "untagged theorem" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   306
  setup (Binding.name "kind") (Scan.lift Args.name >> Thm.kind) "theorem kind" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   307
  setup (Binding.name "COMP") COMP_att "direct composition with rules (no lifting)" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   308
  setup (Binding.name "THEN") THEN_att "resolution with rule" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   309
  setup (Binding.name "OF") OF_att "rule applied to facts" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   310
  setup (Binding.name "rename_abs") (Scan.lift rename_abs)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   311
    "rename bound variables in abstractions" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   312
  setup (Binding.name "unfolded") unfolded "unfolded definitions" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   313
  setup (Binding.name "folded") folded "folded definitions" #>
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   314
  setup (Binding.name "consumes") (Scan.lift (Scan.optional Parse.nat 1) >> Rule_Cases.consumes)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   315
    "number of consumed facts" #>
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   316
  setup (Binding.name "constraints") (Scan.lift Parse.nat >> Rule_Cases.constraints)
34986
7f7939c9370f Added "constraints" tag / attribute for specifying the number of equality
berghofe
parents: 33666
diff changeset
   317
    "number of equality constraints" #>
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   318
  setup (Binding.name "case_names") (Scan.lift case_names) "named rule cases" #>
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   319
  setup (Binding.name "case_conclusion")
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33159
diff changeset
   320
    (Scan.lift (Args.name -- Scan.repeat Args.name) >> Rule_Cases.case_conclusion)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   321
    "named conclusion of rule cases" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   322
  setup (Binding.name "params")
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   323
    (Scan.lift (Parse.and_list1 (Scan.repeat Args.name)) >> Rule_Cases.params)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   324
    "named rule parameters" #>
35021
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 34986
diff changeset
   325
  setup (Binding.name "standard") (Scan.succeed (Thm.rule_attribute (K Drule.export_without_context)))
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   326
    "result put into standard form (legacy)" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   327
  setup (Binding.name "rule_format") rule_format "result put into canonical rule format" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   328
  setup (Binding.name "elim_format") (Scan.succeed elim_format)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   329
    "destruct rule turned into elimination rule format" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   330
  setup (Binding.name "no_vars") (Scan.succeed no_vars) "frozen schematic vars" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   331
  setup (Binding.name "eta_long") (Scan.succeed eta_long)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   332
    "put theorem into eta long beta normal form" #>
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   333
  setup (Binding.name "atomize") (Scan.succeed Object_Logic.declare_atomize)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   334
    "declaration of atomize rule" #>
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   335
  setup (Binding.name "rulify") (Scan.succeed Object_Logic.declare_rulify)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   336
    "declaration of rulify rule" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   337
  setup (Binding.name "rotated") (Scan.lift rotated) "rotated theorem premises" #>
35624
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35021
diff changeset
   338
  setup (Binding.name "defn") (add_del Local_Defs.defn_add Local_Defs.defn_del)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   339
    "declaration of definitional transformations" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   340
  setup (Binding.name "abs_def") (Scan.succeed (Thm.rule_attribute (K Drule.abs_def)))
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   341
    "abstract over free variables of a definition"));
8633
427ead639d8a added add_del_args;
wenzelm
parents: 8496
diff changeset
   342
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   343
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   344
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   345
(** configuration options **)
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   346
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   347
(* naming *)
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   348
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
   349
structure Configs = Theory_Data
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24238
diff changeset
   350
(
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   351
  type T = Config.raw Symtab.table;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   352
  val empty = Symtab.empty;
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   353
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
   354
  fun merge data = Symtab.merge (K true) data;
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24238
diff changeset
   355
);
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   356
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   357
fun print_configs ctxt =
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   358
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   359
    val thy = Proof_Context.theory_of ctxt;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   360
    fun prt (name, config) =
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   361
      let val value = Config.get ctxt config in
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   362
        Pretty.block [Pretty.str (name ^ ": " ^ Config.print_type value ^ " ="), Pretty.brk 1,
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   363
          Pretty.str (Config.print_value value)]
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   364
      end;
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42289
diff changeset
   365
    val configs = Name_Space.extern_table ctxt (#1 (Attributes.get thy), Configs.get thy);
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   366
  in Pretty.writeln (Pretty.big_list "configuration options" (map prt configs)) end;
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   367
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   368
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   369
(* concrete syntax *)
23988
aa46577f4f44 added attribute "option" for setting configuration options;
wenzelm
parents: 23937
diff changeset
   370
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   371
local
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   372
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   373
val equals = Parse.$$$ "=";
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   374
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   375
fun scan_value (Config.Bool _) =
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   376
      equals -- Args.$$$ "false" >> K (Config.Bool false) ||
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   377
      equals -- Args.$$$ "true" >> K (Config.Bool true) ||
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   378
      Scan.succeed (Config.Bool true)
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   379
  | scan_value (Config.Int _) = equals |-- Parse.int >> Config.Int
40291
012ed4426fda support for real valued configuration options;
wenzelm
parents: 39557
diff changeset
   380
  | scan_value (Config.Real _) = equals |-- Parse.real >> Config.Real
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   381
  | scan_value (Config.String _) = equals |-- Args.name >> Config.String;
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   382
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   383
fun scan_config thy config =
36787
f60e4dd6d76f renamed Config.get_thy to Config.get_global etc. to indicate that this is not the real thing;
wenzelm
parents: 36002
diff changeset
   384
  let val config_type = Config.get_global thy config
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   385
  in scan_value config_type >> (K o Thm.declaration_attribute o K o Config.put_generic config) end;
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   386
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   387
fun register binding config thy =
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   388
  let val name = Sign.full_name thy binding in
24126
913e1fa904fb turned simp_depth_limit into configuration option;
wenzelm
parents: 24110
diff changeset
   389
    thy
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   390
    |> setup binding (Scan.lift (scan_config thy config) >> Morphism.form) "configuration option"
24126
913e1fa904fb turned simp_depth_limit into configuration option;
wenzelm
parents: 24110
diff changeset
   391
    |> Configs.map (Symtab.update (name, config))
913e1fa904fb turned simp_depth_limit into configuration option;
wenzelm
parents: 24110
diff changeset
   392
  end;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   393
42808
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   394
fun declare make coerce binding default =
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   395
  let
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   396
    val name = Binding.name_of binding;
42808
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   397
    val config_value = Config.declare_generic {global = false} name (make o default);
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   398
    val config = coerce config_value;
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   399
  in (config, register binding config_value) end;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   400
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   401
in
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   402
42808
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   403
val config_bool = declare Config.Bool Config.bool;
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   404
val config_int = declare Config.Int Config.int;
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   405
val config_real = declare Config.Real Config.real;
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   406
val config_string = declare Config.String Config.string;
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   407
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   408
fun register_config config = register (Binding.name (Config.name_of config)) config;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   409
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   410
end;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   411
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   412
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   413
(* implicit setup *)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   414
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   415
local
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   416
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   417
fun setup_config declare_config binding default =
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   418
  let
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   419
    val (config, setup) = declare_config binding default;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   420
    val _ = Context.>> (Context.map_theory setup);
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   421
  in config end;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   422
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   423
in
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   424
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   425
val setup_config_bool = setup_config config_bool;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   426
val setup_config_int = setup_config config_int;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   427
val setup_config_string = setup_config config_string;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   428
val setup_config_real = setup_config config_real;
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   429
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   430
end;
23988
aa46577f4f44 added attribute "option" for setting configuration options;
wenzelm
parents: 23937
diff changeset
   431
aa46577f4f44 added attribute "option" for setting configuration options;
wenzelm
parents: 23937
diff changeset
   432
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   433
(* theory setup *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   434
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   435
val _ = Context.>> (Context.map_theory
42277
7503beeffd8d tuned signature;
wenzelm
parents: 42224
diff changeset
   436
 (register_config Ast.trace_raw #>
43347
f18cf88453d6 tuned name (cf. blast_stats);
wenzelm
parents: 42813
diff changeset
   437
  register_config Ast.stats_raw #>
42056
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 41377
diff changeset
   438
  register_config Syntax.positions_raw #>
42289
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   439
  register_config Printer.show_brackets_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   440
  register_config Printer.show_sorts_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   441
  register_config Printer.show_types_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   442
  register_config Printer.show_structs_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   443
  register_config Printer.show_question_marks_raw #>
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   444
  register_config Syntax.ambiguity_level_raw #>
44069
d7c7ec248ef0 make syntax ambiguity warnings a config option
kleing
parents: 44053
diff changeset
   445
  register_config Syntax.ambiguity_warnings_raw #>
42284
326f57825e1a explicit structure Syntax_Trans;
wenzelm
parents: 42277
diff changeset
   446
  register_config Syntax_Trans.eta_contract_raw #>
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42616
diff changeset
   447
  register_config Name_Space.names_long_raw #>
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42616
diff changeset
   448
  register_config Name_Space.names_short_raw #>
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42616
diff changeset
   449
  register_config Name_Space.names_unique_raw #>
41375
7a89b4b94817 configuration option "ML_trace";
wenzelm
parents: 41228
diff changeset
   450
  register_config ML_Context.trace_raw #>
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   451
  register_config Proof_Context.show_abbrevs_raw #>
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   452
  register_config Goal_Display.goals_limit_raw #>
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   453
  register_config Goal_Display.show_main_goal_raw #>
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   454
  register_config Goal_Display.show_consts_raw #>
39166
19efc2af3e6c turned show_hyps and show_tags into proper configuration option;
wenzelm
parents: 39163
diff changeset
   455
  register_config Display.show_hyps_raw #>
19efc2af3e6c turned show_hyps and show_tags into proper configuration option;
wenzelm
parents: 39163
diff changeset
   456
  register_config Display.show_tags_raw #>
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   457
  register_config Unify.trace_bound_raw #>
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   458
  register_config Unify.search_bound_raw #>
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   459
  register_config Unify.trace_simp_raw #>
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   460
  register_config Unify.trace_types_raw #>
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41183
diff changeset
   461
  register_config Raw_Simplifier.simp_depth_limit_raw #>
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41183
diff changeset
   462
  register_config Raw_Simplifier.simp_trace_depth_limit_raw #>
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41183
diff changeset
   463
  register_config Raw_Simplifier.simp_debug_raw #>
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41183
diff changeset
   464
  register_config Raw_Simplifier.simp_trace_raw));
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   465
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   466
end;