src/Pure/Isar/attrib.ML
author wenzelm
Sun, 18 Mar 2012 13:04:22 +0100
changeset 47005 421760a1efe7
parent 46906 3c1787d46935
child 47249 c0481c3c2a6c
permissions -rw-r--r--
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming); more explicit Context.generic for Name_Space.declare/define and derivatives (NB: naming changed after Proof_Context.init_global); prefer Context.pretty in low-level operations of structure Sorts/Type (defer full Syntax.init_pretty until error output); simplified signatures;
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
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45537
diff changeset
    12
  val is_empty_binding: binding -> bool
27729
aaf08262b177 tuned signature;
wenzelm
parents: 26891
diff changeset
    13
  val print_attributes: theory -> unit
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16344
diff changeset
    14
  val intern: theory -> xstring -> string
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16344
diff changeset
    15
  val intern_src: theory -> src -> src
21031
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
    16
  val pretty_attribs: Proof.context -> src list -> Pretty.T list
26891
bfa1944e5238 added defined;
wenzelm
parents: 26715
diff changeset
    17
  val defined: theory -> string -> bool
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    18
  val attribute: theory -> src -> attribute
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    19
  val attribute_i: theory -> src -> attribute
45390
e29521ef9059 tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents: 45375
diff changeset
    20
  val map_specs: ('a list -> 'att list) ->
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
    21
    (('c * 'a list) * 'b) list -> (('c * 'att list) * 'b) list
45390
e29521ef9059 tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents: 45375
diff changeset
    22
  val map_facts: ('a list -> 'att list) ->
17105
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
    23
    (('c * 'a list) * ('d * 'a list) list) list ->
18905
5542716503ab more generic type for map_specs/facts;
wenzelm
parents: 18872
diff changeset
    24
    (('c * 'att list) * ('d * 'att list) list) list
45390
e29521ef9059 tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents: 45375
diff changeset
    25
  val map_facts_refs: ('a list -> 'att list) -> ('b -> 'fact) ->
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
    26
    (('c * 'a list) * ('b * 'a list) list) list ->
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
    27
    (('c * 'att list) * ('fact * 'att list) list) list
38330
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
    28
  val eval_thms: Proof.context -> (Facts.ref * src list) list -> thm list
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
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
    37
  val partial_evaluation: Proof.context ->
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
    38
    (binding * (thm list * Args.src list) list) list ->
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
    39
    (binding * (thm list * Args.src list) list) list
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
    40
  val internal: (morphism -> attribute) -> src
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
    41
  val print_configs: Proof.context -> unit
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    42
  val config_bool: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    43
    (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
    44
  val config_int: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    45
    (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
    46
  val config_real: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    47
    (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
    48
  val config_string: Binding.binding ->
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
    49
    (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
    50
  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
    51
  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
    52
  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
    53
  val setup_config_real: Binding.binding -> (Context.generic -> real) -> real Config.T
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    54
end;
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    55
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    56
structure Attrib: ATTRIB =
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    57
struct
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    58
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    59
(* source and bindings *)
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    60
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    61
type src = Args.src;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    62
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29004
diff changeset
    63
type binding = binding * src list;
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45537
diff changeset
    64
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28084
diff changeset
    65
val empty_binding: binding = (Binding.empty, []);
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45537
diff changeset
    66
fun is_empty_binding ((b, srcs): binding) = Binding.is_empty b andalso null srcs;
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    67
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    68
27729
aaf08262b177 tuned signature;
wenzelm
parents: 26891
diff changeset
    69
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    70
(** named attributes **)
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
    71
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    72
(* theory data *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    73
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
    74
structure Attributes = Theory_Data
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    75
(
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33092
diff changeset
    76
  type T = ((src -> attribute) * string) Name_Space.table;
33159
369da293bbd4 make SML/NJ happy;
wenzelm
parents: 33096
diff changeset
    77
  val empty : T = Name_Space.empty_table "attribute";
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16344
diff changeset
    78
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
    79
  fun merge data : T = Name_Space.merge_tables data;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    80
);
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    81
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    82
fun print_attributes thy =
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    83
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
    84
    val ctxt = Proof_Context.init_global thy;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
    85
    val attribs = Attributes.get thy;
42813
6c841fa92fa2 optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents: 42808
diff changeset
    86
    fun prt_attr (name, (_, "")) = Pretty.str name
6c841fa92fa2 optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents: 42808
diff changeset
    87
      | prt_attr (name, (_, comment)) =
6c841fa92fa2 optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents: 42808
diff changeset
    88
          Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 2, Pretty.str comment];
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    89
  in
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42289
diff changeset
    90
    [Pretty.big_list "attributes:" (map prt_attr (Name_Space.extern_table ctxt attribs))]
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    91
    |> Pretty.chunks |> Pretty.writeln
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22669
diff changeset
    92
  end;
7611
5b5aba10c8f6 help: unkown theory context;
wenzelm
parents: 7598
diff changeset
    93
33092
c859019d3ac5 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 31794
diff changeset
    94
fun add_attribute name att comment thy = thy
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46906
diff changeset
    95
  |> Attributes.map (Name_Space.define (Context.Theory thy) true (name, (att, comment)) #> snd);
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
    96
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
    97
21031
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
    98
(* name space *)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
    99
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33092
diff changeset
   100
val intern = Name_Space.intern o #1 o Attributes.get;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   101
val intern_src = Args.map_name o intern;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   102
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   103
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
   104
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   105
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   106
(* pretty printing *)
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   107
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   108
fun pretty_attribs _ [] = []
a56e6d1e56a3 added pretty_attribs (from attrib.ML);
wenzelm
parents: 20906
diff changeset
   109
  | pretty_attribs ctxt srcs =
38329
16bb1e60204b use Pretty.enum convenience;
wenzelm
parents: 37198
diff changeset
   110
      [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
   111
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15596
diff changeset
   112
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   113
(* get attributes *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   114
26891
bfa1944e5238 added defined;
wenzelm
parents: 26715
diff changeset
   115
val defined = Symtab.defined o #2 o Attributes.get;
bfa1944e5238 added defined;
wenzelm
parents: 26715
diff changeset
   116
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   117
fun attribute_i thy =
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   118
  let
42380
9371ea9f91fb markup attributes/methods via name space;
wenzelm
parents: 42375
diff changeset
   119
    val (space, tab) = Attributes.get thy;
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   120
    fun attr src =
16344
a52fe1277902 attribs: NameSpace.table;
wenzelm
parents: 16141
diff changeset
   121
      let val ((name, _), pos) = Args.dest_src src in
42380
9371ea9f91fb markup attributes/methods via name space;
wenzelm
parents: 42375
diff changeset
   122
        (case Symtab.lookup tab name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   123
          NONE => error ("Unknown attribute: " ^ quote name ^ Position.str_of pos)
42380
9371ea9f91fb markup attributes/methods via name space;
wenzelm
parents: 42375
diff changeset
   124
        | SOME (att, _) => (Position.report pos (Name_Space.markup space name); att src))
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   125
      end;
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   126
  in attr end;
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   127
18734
f5ea6b0d3501 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   128
fun attribute thy = attribute_i thy o intern_src thy;
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   129
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   130
17105
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   131
(* attributed declarations *)
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   132
45390
e29521ef9059 tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents: 45375
diff changeset
   133
fun map_specs f = map (apfst (apsnd f));
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
   134
45390
e29521ef9059 tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents: 45375
diff changeset
   135
fun map_facts f = map (apfst (apsnd f) o apsnd (map (apsnd f)));
30759
3bc78fbb9f57 added map_facts_refs;
wenzelm
parents: 30575
diff changeset
   136
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
   137
1b07a176a880 added map_specs/facts operators (from locale.ML);
wenzelm
parents: 16934
diff changeset
   138
38330
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   139
(* fact expressions *)
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   140
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   141
fun eval_thms ctxt srcs = ctxt
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   142
  |> Proof_Context.note_thmss ""
45390
e29521ef9059 tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents: 45375
diff changeset
   143
    (map_facts_refs (map (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
   144
      [((Binding.empty, []), srcs)])
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   145
  |> fst |> maps snd;
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   146
e98236e5068b tuned eval_thms (cf. note etc. in proof.ML);
wenzelm
parents: 38329
diff changeset
   147
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   148
(* attribute setup *)
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   149
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   150
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
   151
31306
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   152
fun setup name scan =
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   153
  add_attribute name
a74ee84288a0 eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents: 31305
diff changeset
   154
    (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
   155
30525
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   156
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
   157
  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
   158
    "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
   159
    "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
   160
    (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
   161
      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
   162
      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
   163
8a5a0aa30e1c added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents: 30513
diff changeset
   164
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   165
(* add/del syntax *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   166
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   167
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
   168
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   169
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   170
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   171
(** parsing attributed theorems **)
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   172
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   173
val thm_sel = Parse.$$$ "(" |-- Parse.list1
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   174
 (Parse.nat --| Parse.minus -- Parse.nat >> Facts.FromTo ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   175
  Parse.nat --| Parse.minus >> Facts.From ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   176
  Parse.nat >> Facts.Single) --| Parse.$$$ ")";
27812
af8edf3ab68c unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents: 27751
diff changeset
   177
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   178
local
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   179
21698
43a842769765 thms etc.: proper treatment of internal_fact with selection;
wenzelm
parents: 21658
diff changeset
   180
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
   181
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   182
fun gen_thm pick = Scan.depend (fn context =>
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   183
  let
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   184
    val thy = Context.theory_of context;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   185
    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
   186
    val get_fact = get o Facts.Fact;
27820
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   187
    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
   188
  in
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   189
    Parse.$$$ "[" |-- Args.attribs (intern thy) --| Parse.$$$ "]" >> (fn srcs =>
24008
63ff2445ce1e renamed Config to ConfigOption;
wenzelm
parents: 24003
diff changeset
   190
      let
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   191
        val atts = map (attribute_i thy) srcs;
46775
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 46512
diff changeset
   192
        val (th', context') = fold (uncurry o Thm.apply_attribute) atts (Drule.dummy_thm, context);
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   193
      in (context', pick "" [th']) end)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   194
    ||
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   195
    (Scan.ahead Args.alt_name -- Args.named_fact get_fact
27820
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   196
      >> (fn (s, fact) => ("", Facts.Fact s, fact)) ||
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   197
     Scan.ahead (Parse.position fact_name) :|-- (fn (name, pos) =>
27820
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   198
      Args.named_fact (get_named pos) -- Scan.option thm_sel
56515e560104 pass position to get_fact;
wenzelm
parents: 27812
diff changeset
   199
        >> (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
   200
    -- Args.opt_attribs (intern thy) >> (fn ((name, thmref, fact), srcs) =>
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   201
      let
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   202
        val ths = Facts.select thmref fact;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   203
        val atts = map (attribute_i thy) srcs;
46775
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 46512
diff changeset
   204
        val (ths', context') =
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 46512
diff changeset
   205
          fold_map (curry (fold (uncurry o Thm.apply_attribute) atts)) ths context;
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   206
      in (context', pick name ths') end)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   207
  end);
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15117
diff changeset
   208
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   209
in
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   210
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25983
diff changeset
   211
val thm = gen_thm Facts.the_single;
18998
10c251f29847 Context.generic is canonical state of parsers;
wenzelm
parents: 18977
diff changeset
   212
val multi_thm = gen_thm (K I);
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   213
val thms = Scan.repeat multi_thm >> flat;
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   214
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   215
end;
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   216
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   217
5879
18b8f048d93a several args parsers;
wenzelm
parents: 5823
diff changeset
   218
45586
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   219
(** partial evaluation -- observing rule/declaration/mixed attributes **)
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   220
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   221
local
45526
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   222
45586
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   223
val strict_eq_thm = op = o pairself Thm.rep_thm;
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   224
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   225
fun apply_att src (context, th) =
45526
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   226
  let
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   227
    val src1 = Args.assignable src;
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   228
    val result = attribute_i (Context.theory_of context) src1 (context, th);
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   229
    val src2 = Args.closure src1;
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   230
  in (src2, result) end;
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   231
45527
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   232
fun err msg src =
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   233
  let val ((name, _), pos) = Args.dest_src src
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   234
  in error (msg ^ " " ^ quote name ^ Position.str_of pos) end;
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   235
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   236
fun eval src ((th, dyn), (decls, context)) =
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   237
  (case (apply_att src (context, th), dyn) of
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   238
    ((_, (NONE, SOME th')), NONE) => ((th', NONE), (decls, context))
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   239
  | ((_, (NONE, SOME _)), SOME _) => err "Mixed dynamic attribute followed by static rule" src
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   240
  | ((src', (SOME context', NONE)), NONE) =>
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   241
      let
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   242
        val decls' =
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   243
          (case decls of
45526
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   244
            [] => [(th, [src'])]
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   245
          | (th2, srcs2) :: rest =>
45586
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   246
              if strict_eq_thm (th, th2)
45526
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   247
              then ((th2, src' :: srcs2) :: rest)
20a82863d5ef clarified Attrib.partial_evaluation;
wenzelm
parents: 45493
diff changeset
   248
              else (th, [src']) :: (th2, srcs2) :: rest);
45527
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   249
      in ((th, NONE), (decls', context')) end
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   250
  | ((src', (opt_context', opt_th')), _) =>
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   251
      let
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   252
        val context' = the_default context opt_context';
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   253
        val th' = the_default th opt_th';
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   254
        val dyn' =
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   255
          (case dyn of
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   256
            NONE => SOME (th, [src'])
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   257
          | SOME (dyn_th, srcs) => SOME (dyn_th, src' :: srcs));
d2b3d16b673a retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents: 45526
diff changeset
   258
      in ((th', dyn'), (decls, context')) end);
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   259
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   260
in
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   261
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   262
fun partial_evaluation ctxt facts =
45586
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   263
  (facts, Context.Proof (Context_Position.set_visible false ctxt)) |->
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   264
    fold_map (fn ((b, more_atts), fact) => fn context =>
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   265
      let
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   266
        val (fact', (decls, context')) =
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   267
          (fact, ([], context)) |-> fold_map (fn (ths, atts) => fn res1 =>
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   268
            (ths, res1) |-> fold_map (fn th => fn res2 =>
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   269
              let
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   270
                val ((th', dyn'), res3) = fold eval (atts @ more_atts) ((th, NONE), res2);
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   271
                val th_atts' =
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   272
                  (case dyn' of
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   273
                    NONE => (th', [])
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   274
                  | SOME (dyn_th', atts') => (dyn_th', rev atts'));
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   275
              in (th_atts', res3) end))
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   276
          |>> flat;
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   277
        val decls' = rev (map (apsnd rev) decls);
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   278
        val facts' =
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   279
          if eq_list (eq_fst strict_eq_thm) (decls', fact') then
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   280
            [((b, []), map2 (fn (th, atts1) => fn (_, atts2) => (th, atts1 @ atts2)) decls' fact')]
45619
wenzelm
parents: 45612
diff changeset
   281
          else if null decls' then [((b, []), fact')]
45586
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   282
          else [(empty_binding, decls'), ((b, []), fact')];
c94f149cdf5d refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents: 45584
diff changeset
   283
      in (facts', context') end)
46906
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46903
diff changeset
   284
  |> fst |> flat |> map (apsnd (map (apfst single)))
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46903
diff changeset
   285
  |> filter_out (fn (b, fact) => is_empty_binding b andalso forall (null o #2) fact);
45493
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   286
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   287
end;
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   288
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   289
12453fd8dcff some support for partial evaluation of attributed facts;
wenzelm
parents: 45491
diff changeset
   290
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   291
(** basic attributes **)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   292
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   293
(* internal *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   294
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   295
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
   296
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   297
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   298
(* rule composition *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   299
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   300
val COMP_att =
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   301
  Scan.lift (Scan.optional (Args.bracks Parse.nat) 1) -- thm
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   302
    >> (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
   303
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   304
val THEN_att =
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   305
  Scan.lift (Scan.optional (Args.bracks Parse.nat) 1) -- thm
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   306
    >> (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
   307
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   308
val OF_att =
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   309
  thms >> (fn Bs => Thm.rule_attribute (fn _ => fn A => Bs MRS A));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   310
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   311
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   312
(* rename_abs *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   313
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   314
val rename_abs =
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   315
  Scan.repeat (Args.maybe Args.name)
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   316
  >> (fn args => Thm.rule_attribute (K (Drule.rename_bvars' args)));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   317
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   318
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   319
(* unfold / fold definitions *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   320
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   321
fun unfolded_syntax rule =
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   322
  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
   323
35624
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35021
diff changeset
   324
val unfolded = unfolded_syntax Local_Defs.unfold;
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35021
diff changeset
   325
val folded = unfolded_syntax Local_Defs.fold;
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   326
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   327
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   328
(* rule format *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   329
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   330
val rule_format = Args.mode "no_asm"
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   331
  >> (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
   332
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   333
val elim_format = Thm.rule_attribute (K Tactic.make_elim);
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   334
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   335
44046
a43ca8ed6564 extended user-level attribute case_names with names for case hypotheses
nipkow
parents: 43347
diff changeset
   336
(* case names *)
a43ca8ed6564 extended user-level attribute case_names with names for case hypotheses
nipkow
parents: 43347
diff changeset
   337
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   338
val case_names =
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   339
  Scan.repeat1 (Args.name --
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   340
    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
   341
  (fn cs =>
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   342
    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
   343
      (map (map (the_default Rule_Cases.case_hypsN) o snd) cs));
44053
3cc902f81a26 made SML/NJ happy;
wenzelm
parents: 44046
diff changeset
   344
44046
a43ca8ed6564 extended user-level attribute case_names with names for case hypotheses
nipkow
parents: 43347
diff changeset
   345
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   346
(* misc rules *)
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   347
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   348
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
   349
  let
00ff79ab6e6b no_vars: reset body mode, i.e. invent global frees (which are acceptable to Variable.auto_fixes);
wenzelm
parents: 26685
diff changeset
   350
    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
   351
    val ((_, [th']), _) = Variable.import true [th] ctxt;
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   352
  in th' end);
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   353
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   354
val eta_long =
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   355
  Thm.rule_attribute (K (Conv.fconv_rule Drule.eta_long_conversion));
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   356
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   357
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
   358
25983
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   359
111d2ed164f4 misc tuning and internal rearrangement;
wenzelm
parents: 24723
diff changeset
   360
(* theory setup *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   361
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   362
val _ = Context.>> (Context.map_theory
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   363
 (setup (Binding.name "attribute") (Scan.lift Args.internal_attribute >> Morphism.form)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   364
    "internal attribute" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   365
  setup (Binding.name "tagged") (Scan.lift (Args.name -- Args.name) >> Thm.tag) "tagged theorem" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   366
  setup (Binding.name "untagged") (Scan.lift Args.name >> Thm.untag) "untagged theorem" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   367
  setup (Binding.name "kind") (Scan.lift Args.name >> Thm.kind) "theorem kind" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   368
  setup (Binding.name "COMP") COMP_att "direct composition with rules (no lifting)" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   369
  setup (Binding.name "THEN") THEN_att "resolution with rule" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   370
  setup (Binding.name "OF") OF_att "rule applied to facts" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   371
  setup (Binding.name "rename_abs") (Scan.lift rename_abs)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   372
    "rename bound variables in abstractions" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   373
  setup (Binding.name "unfolded") unfolded "unfolded definitions" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   374
  setup (Binding.name "folded") folded "folded definitions" #>
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   375
  setup (Binding.name "consumes") (Scan.lift (Scan.optional Parse.nat 1) >> Rule_Cases.consumes)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   376
    "number of consumed facts" #>
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   377
  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
   378
    "number of equality constraints" #>
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 44069
diff changeset
   379
  setup (Binding.name "case_names") (Scan.lift case_names) "named rule cases" #>
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   380
  setup (Binding.name "case_conclusion")
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33159
diff changeset
   381
    (Scan.lift (Args.name -- Scan.repeat Args.name) >> Rule_Cases.case_conclusion)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   382
    "named conclusion of rule cases" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   383
  setup (Binding.name "params")
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   384
    (Scan.lift (Parse.and_list1 (Scan.repeat Args.name)) >> Rule_Cases.params)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   385
    "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
   386
  setup (Binding.name "standard") (Scan.succeed (Thm.rule_attribute (K Drule.export_without_context)))
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   387
    "result put into standard form (legacy)" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   388
  setup (Binding.name "rule_format") rule_format "result put into canonical rule format" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   389
  setup (Binding.name "elim_format") (Scan.succeed elim_format)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   390
    "destruct rule turned into elimination rule format" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   391
  setup (Binding.name "no_vars") (Scan.succeed no_vars) "frozen schematic vars" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   392
  setup (Binding.name "eta_long") (Scan.succeed eta_long)
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   393
    "put theorem into eta long beta normal form" #>
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   394
  setup (Binding.name "atomize") (Scan.succeed Object_Logic.declare_atomize)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   395
    "declaration of atomize rule" #>
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   396
  setup (Binding.name "rulify") (Scan.succeed Object_Logic.declare_rulify)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   397
    "declaration of rulify rule" #>
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   398
  setup (Binding.name "rotated") (Scan.lift rotated) "rotated theorem premises" #>
35624
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35021
diff changeset
   399
  setup (Binding.name "defn") (add_del Local_Defs.defn_add Local_Defs.defn_del)
31305
a16f4d4f5b24 modernized attribute setup;
wenzelm
parents: 31177
diff changeset
   400
    "declaration of definitional transformations" #>
46903
3d44892ac0d6 improved attribute "abs_def" to handle object-equality as well;
wenzelm
parents: 46775
diff changeset
   401
  setup (Binding.name "abs_def")
3d44892ac0d6 improved attribute "abs_def" to handle object-equality as well;
wenzelm
parents: 46775
diff changeset
   402
    (Scan.succeed (Thm.rule_attribute (fn context =>
3d44892ac0d6 improved attribute "abs_def" to handle object-equality as well;
wenzelm
parents: 46775
diff changeset
   403
      Local_Defs.meta_rewrite_rule (Context.proof_of context) #> Drule.abs_def)))
3d44892ac0d6 improved attribute "abs_def" to handle object-equality as well;
wenzelm
parents: 46775
diff changeset
   404
    "abstract over free variables of definitionial theorem"));
8633
427ead639d8a added add_del_args;
wenzelm
parents: 8496
diff changeset
   405
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   406
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   407
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   408
(** configuration options **)
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   409
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   410
(* naming *)
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   411
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
   412
structure Configs = Theory_Data
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24238
diff changeset
   413
(
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   414
  type T = Config.raw Symtab.table;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   415
  val empty = Symtab.empty;
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   416
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33368
diff changeset
   417
  fun merge data = Symtab.merge (K true) data;
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24238
diff changeset
   418
);
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   419
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   420
fun print_configs ctxt =
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   421
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   422
    val thy = Proof_Context.theory_of ctxt;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   423
    fun prt (name, config) =
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   424
      let val value = Config.get ctxt config in
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   425
        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
   426
          Pretty.str (Config.print_value value)]
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   427
      end;
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42289
diff changeset
   428
    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
   429
  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
   430
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   431
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   432
(* concrete syntax *)
23988
aa46577f4f44 added attribute "option" for setting configuration options;
wenzelm
parents: 23937
diff changeset
   433
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   434
local
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   435
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   436
val equals = Parse.$$$ "=";
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   437
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   438
fun scan_value (Config.Bool _) =
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   439
      equals -- Args.$$$ "false" >> K (Config.Bool false) ||
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   440
      equals -- Args.$$$ "true" >> K (Config.Bool true) ||
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   441
      Scan.succeed (Config.Bool true)
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36787
diff changeset
   442
  | scan_value (Config.Int _) = equals |-- Parse.int >> Config.Int
40291
012ed4426fda support for real valued configuration options;
wenzelm
parents: 39557
diff changeset
   443
  | scan_value (Config.Real _) = equals |-- Parse.real >> Config.Real
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   444
  | scan_value (Config.String _) = equals |-- Args.name >> Config.String;
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   445
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   446
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
   447
  let val config_type = Config.get_global thy config
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   448
  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
   449
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   450
fun register binding config thy =
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   451
  let val name = Sign.full_name thy binding in
24126
913e1fa904fb turned simp_depth_limit into configuration option;
wenzelm
parents: 24110
diff changeset
   452
    thy
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   453
    |> 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
   454
    |> Configs.map (Symtab.update (name, config))
913e1fa904fb turned simp_depth_limit into configuration option;
wenzelm
parents: 24110
diff changeset
   455
  end;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   456
42808
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   457
fun declare make coerce binding default =
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   458
  let
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   459
    val name = Binding.name_of binding;
42808
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   460
    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
   461
    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
   462
  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
   463
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   464
in
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   465
42808
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   466
val config_bool = declare Config.Bool Config.bool;
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   467
val config_int = declare Config.Int Config.int;
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   468
val config_real = declare Config.Real Config.real;
30870aee8a3f discontinued global config options within attribute name space;
wenzelm
parents: 42669
diff changeset
   469
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
   470
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   471
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
   472
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   473
end;
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   474
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   475
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   476
(* implicit setup *)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   477
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   478
local
24110
4ab3084e311c tuned config options: eliminated separate attribute "option";
wenzelm
parents: 24030
diff changeset
   479
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   480
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
   481
  let
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   482
    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
   483
    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
   484
  in config end;
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   485
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   486
in
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   487
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42380
diff changeset
   488
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
   489
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
   490
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
   491
val setup_config_real = setup_config config_real;
24003
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   492
da76d7e6435c attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents: 23988
diff changeset
   493
end;
23988
aa46577f4f44 added attribute "option" for setting configuration options;
wenzelm
parents: 23937
diff changeset
   494
aa46577f4f44 added attribute "option" for setting configuration options;
wenzelm
parents: 23937
diff changeset
   495
18636
cb068cfdcac8 added rule, declaration;
wenzelm
parents: 18418
diff changeset
   496
(* theory setup *)
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   497
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   498
val _ = Context.>> (Context.map_theory
42277
7503beeffd8d tuned signature;
wenzelm
parents: 42224
diff changeset
   499
 (register_config Ast.trace_raw #>
43347
f18cf88453d6 tuned name (cf. blast_stats);
wenzelm
parents: 42813
diff changeset
   500
  register_config Ast.stats_raw #>
42289
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   501
  register_config Printer.show_brackets_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   502
  register_config Printer.show_sorts_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   503
  register_config Printer.show_types_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   504
  register_config Printer.show_structs_raw #>
dafae095d733 discontinued special status of structure Printer;
wenzelm
parents: 42284
diff changeset
   505
  register_config Printer.show_question_marks_raw #>
46512
4f9f61f9b535 simplified configuration options for syntax ambiguity;
wenzelm
parents: 46506
diff changeset
   506
  register_config Syntax.ambiguity_warning_raw #>
46506
c7faa011bfa7 simplified configuration options for syntax ambiguity;
wenzelm
parents: 46126
diff changeset
   507
  register_config Syntax.ambiguity_limit_raw #>
42284
326f57825e1a explicit structure Syntax_Trans;
wenzelm
parents: 42277
diff changeset
   508
  register_config Syntax_Trans.eta_contract_raw #>
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42616
diff changeset
   509
  register_config Name_Space.names_long_raw #>
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42616
diff changeset
   510
  register_config Name_Space.names_short_raw #>
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42616
diff changeset
   511
  register_config Name_Space.names_unique_raw #>
41375
7a89b4b94817 configuration option "ML_trace";
wenzelm
parents: 41228
diff changeset
   512
  register_config ML_Context.trace_raw #>
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   513
  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
   514
  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
   515
  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
   516
  register_config Goal_Display.show_consts_raw #>
39166
19efc2af3e6c turned show_hyps and show_tags into proper configuration option;
wenzelm
parents: 39163
diff changeset
   517
  register_config Display.show_hyps_raw #>
19efc2af3e6c turned show_hyps and show_tags into proper configuration option;
wenzelm
parents: 39163
diff changeset
   518
  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
   519
  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
   520
  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
   521
  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
   522
  register_config Unify.trace_types_raw #>
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41183
diff changeset
   523
  register_config Raw_Simplifier.simp_depth_limit_raw #>
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41183
diff changeset
   524
  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
   525
  register_config Raw_Simplifier.simp_debug_raw #>
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41183
diff changeset
   526
  register_config Raw_Simplifier.simp_trace_raw));
5823
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   527
ee7c198a2154 Symbolic theorem attributes.
wenzelm
parents:
diff changeset
   528
end;