src/Pure/Isar/specification.ML
author wenzelm
Mon, 03 Jun 2019 15:40:08 +0200
changeset 70308 7f568724d67e
parent 69992 bd3c10813cc4
child 70729 c92d2abcc998
permissions -rw-r--r--
clarified signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/specification.ML
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
     3
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
     4
Derived local theory specifications --- with type-inference and
18810
6dc5416368e9 swapped Toplevel.theory_context;
wenzelm
parents: 18786
diff changeset
     5
toplevel polymorphism.
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
     6
*)
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
     7
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
     8
signature SPECIFICATION =
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
     9
sig
59844
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    10
  val read_props: string list -> (binding * string option * mixfix) list -> Proof.context ->
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    11
    term list * Proof.context
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    12
  val check_spec_open: (binding * typ option * mixfix) list ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    13
    (binding * typ option * mixfix) list -> term list -> term -> Proof.context ->
63395
734723445a8c PIDE reports of implicit variable scope;
wenzelm
parents: 63394
diff changeset
    14
    ((binding * typ option * mixfix) list * string list * (string -> Position.T list) * term) *
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    15
    Proof.context
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    16
  val read_spec_open: (binding * string option * mixfix) list ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    17
    (binding * string option * mixfix) list -> string list -> string -> Proof.context ->
63395
734723445a8c PIDE reports of implicit variable scope;
wenzelm
parents: 63394
diff changeset
    18
    ((binding * typ option * mixfix) list * string list * (string -> Position.T list) * term) *
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    19
    Proof.context
63182
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
    20
  type multi_specs =
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
    21
    ((Attrib.binding * term) * term list * (binding * typ option * mixfix) list) list
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
    22
  type multi_specs_cmd =
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
    23
    ((Attrib.binding * string) * string list * (binding * string option * mixfix) list) list
63064
2f18172214c8 support 'assumes' in specifications, e.g. 'definition', 'inductive';
wenzelm
parents: 63063
diff changeset
    24
  val check_multi_specs: (binding * typ option * mixfix) list -> multi_specs -> Proof.context ->
30482
6e3c92de4a7d simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
wenzelm
parents: 30472
diff changeset
    25
    (((binding * typ) * mixfix) list * (Attrib.binding * term) list) * Proof.context
63064
2f18172214c8 support 'assumes' in specifications, e.g. 'definition', 'inductive';
wenzelm
parents: 63063
diff changeset
    26
  val read_multi_specs: (binding * string option * mixfix) list -> multi_specs_cmd -> Proof.context ->
30482
6e3c92de4a7d simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
wenzelm
parents: 30472
diff changeset
    27
    (((binding * typ) * mixfix) list * (Attrib.binding * term) list) * Proof.context
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
    28
  val axiomatization: (binding * typ option * mixfix) list ->
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
    29
    (binding * typ option * mixfix) list -> term list ->
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
    30
    (Attrib.binding * term) list -> theory -> (term list * thm list) * theory
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
    31
  val axiomatization_cmd: (binding * string option * mixfix) list ->
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
    32
    (binding * string option * mixfix) list -> string list ->
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
    33
    (Attrib.binding * string) list -> theory -> (term list * thm list) * theory
35894
ab6dc4d86ea1 added Specification.axiom convenience;
wenzelm
parents: 35625
diff changeset
    34
  val axiom: Attrib.binding * term -> theory -> thm * theory
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    35
  val definition: (binding * typ option * mixfix) option ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    36
    (binding * typ option * mixfix) list -> term list -> Attrib.binding * term ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    37
    local_theory -> (term * (string * thm)) * local_theory
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    38
  val definition': (binding * typ option * mixfix) option ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    39
    (binding * typ option * mixfix) list ->  term list -> Attrib.binding * term ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    40
    bool -> local_theory -> (term * (string * thm)) * local_theory
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    41
  val definition_cmd: (binding * string option * mixfix) option ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    42
    (binding * string option * mixfix) list -> string list -> Attrib.binding * string ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    43
    bool -> local_theory -> (term * (string * thm)) * local_theory
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    44
  val abbreviation: Syntax.mode -> (binding * typ option * mixfix) option ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    45
    (binding * typ option * mixfix) list -> term -> bool -> local_theory -> local_theory
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    46
  val abbreviation_cmd: Syntax.mode -> (binding * string option * mixfix) option ->
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
    47
    (binding * string option * mixfix) list -> string -> bool -> local_theory -> local_theory
66248
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
    48
  val alias: binding * string -> local_theory -> local_theory
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
    49
  val alias_cmd: binding * (xstring * Position.T) -> local_theory -> local_theory
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
    50
  val type_alias: binding * string -> local_theory -> local_theory
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
    51
  val type_alias_cmd: binding * (xstring * Position.T) -> local_theory -> local_theory
35413
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
    52
  val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> local_theory -> local_theory
55639
e4e8cbd9d780 tuned whitespace;
wenzelm
parents: 55119
diff changeset
    53
  val type_notation_cmd: bool -> Syntax.mode -> (string * mixfix) list ->
e4e8cbd9d780 tuned whitespace;
wenzelm
parents: 55119
diff changeset
    54
    local_theory -> local_theory
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24927
diff changeset
    55
  val notation: bool -> Syntax.mode -> (term * mixfix) list -> local_theory -> local_theory
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24927
diff changeset
    56
  val notation_cmd: bool -> Syntax.mode -> (string * mixfix) list -> local_theory -> local_theory
28080
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27858
diff changeset
    57
  val theorems: string ->
63267
ac1a0b81453e tuned signature;
wenzelm
parents: 63239
diff changeset
    58
    (Attrib.binding * Attrib.thms) list ->
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
    59
    (binding * typ option * mixfix) list ->
44192
a32ca9165928 less verbosity in batch mode -- spam reduction and notable performance improvement;
wenzelm
parents: 43329
diff changeset
    60
    bool -> local_theory -> (string * thm list) list * local_theory
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 25371
diff changeset
    61
  val theorems_cmd: string ->
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 56932
diff changeset
    62
    (Attrib.binding * (Facts.ref * Token.src list) list) list ->
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
    63
    (binding * string option * mixfix) list ->
44192
a32ca9165928 less verbosity in batch mode -- spam reduction and notable performance improvement;
wenzelm
parents: 43329
diff changeset
    64
    bool -> local_theory -> (string * thm list) list * local_theory
63094
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
    65
  val theorem: bool -> string -> Method.text option ->
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28080
diff changeset
    66
    (thm list list -> local_theory -> local_theory) -> Attrib.binding ->
47067
4ef29b0c568f optional 'includes' element for long theorem statements;
wenzelm
parents: 47066
diff changeset
    67
    string list -> Element.context_i list -> Element.statement_i ->
24452
93b113c5ac33 - theorem(_i) now also takes "interactive" flag as argument
berghofe
parents: 24219
diff changeset
    68
    bool -> local_theory -> Proof.state
63094
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
    69
  val theorem_cmd: bool -> string -> Method.text option ->
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28080
diff changeset
    70
    (thm list list -> local_theory -> local_theory) -> Attrib.binding ->
47067
4ef29b0c568f optional 'includes' element for long theorem statements;
wenzelm
parents: 47066
diff changeset
    71
    (xstring * Position.T) list -> Element.context list -> Element.statement ->
24452
93b113c5ac33 - theorem(_i) now also takes "interactive" flag as argument
berghofe
parents: 24219
diff changeset
    72
    bool -> local_theory -> Proof.state
63094
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
    73
  val schematic_theorem: bool -> string -> Method.text option ->
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36106
diff changeset
    74
    (thm list list -> local_theory -> local_theory) -> Attrib.binding ->
47067
4ef29b0c568f optional 'includes' element for long theorem statements;
wenzelm
parents: 47066
diff changeset
    75
    string list -> Element.context_i list -> Element.statement_i ->
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36106
diff changeset
    76
    bool -> local_theory -> Proof.state
63094
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
    77
  val schematic_theorem_cmd: bool -> string -> Method.text option ->
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36106
diff changeset
    78
    (thm list list -> local_theory -> local_theory) -> Attrib.binding ->
47067
4ef29b0c568f optional 'includes' element for long theorem statements;
wenzelm
parents: 47066
diff changeset
    79
    (xstring * Position.T) list -> Element.context list -> Element.statement ->
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36106
diff changeset
    80
    bool -> local_theory -> Proof.state
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
    81
end;
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
    82
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
    83
structure Specification: SPECIFICATION =
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
    84
struct
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
    85
59844
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    86
(* prepare propositions *)
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    87
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    88
fun read_props raw_props raw_fixes ctxt =
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    89
  let
60469
d1ea37df7358 tuned signature;
wenzelm
parents: 60454
diff changeset
    90
    val (_, ctxt1) = ctxt |> Proof_Context.add_fixes_cmd raw_fixes;
59844
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    91
    val props1 = map (Syntax.parse_prop ctxt1) raw_props;
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    92
    val (props2, ctxt2) = ctxt1 |> fold_map Variable.fix_dummy_patterns props1;
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    93
    val props3 = Syntax.check_props ctxt2 props2;
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    94
    val ctxt3 = ctxt2 |> fold Variable.declare_term props3;
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    95
  in (props3, ctxt3) end;
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    96
c648efffea73 support for minimal specifications, with usual treatment of fixes and dummies;
wenzelm
parents: 58993
diff changeset
    97
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
    98
(* prepare specification *)
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
    99
63394
wenzelm
parents: 63352
diff changeset
   100
fun get_positions ctxt x =
wenzelm
parents: 63352
diff changeset
   101
  let
wenzelm
parents: 63352
diff changeset
   102
    fun get Cs (Const ("_type_constraint_", C) $ t) = get (C :: Cs) t
wenzelm
parents: 63352
diff changeset
   103
      | get Cs (Free (y, T)) =
wenzelm
parents: 63352
diff changeset
   104
          if x = y then
wenzelm
parents: 63352
diff changeset
   105
            map_filter Term_Position.decode_positionT
wenzelm
parents: 63352
diff changeset
   106
              (T :: map (Type.constraint_type ctxt) Cs)
wenzelm
parents: 63352
diff changeset
   107
          else []
wenzelm
parents: 63352
diff changeset
   108
      | get _ (t $ u) = get [] t @ get [] u
wenzelm
parents: 63352
diff changeset
   109
      | get _ (Abs (_, _, t)) = get [] t
wenzelm
parents: 63352
diff changeset
   110
      | get _ _ = [];
wenzelm
parents: 63352
diff changeset
   111
  in get [] end;
wenzelm
parents: 63352
diff changeset
   112
24724
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   113
local
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   114
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   115
fun prep_decls prep_var raw_vars ctxt =
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   116
  let
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   117
    val (vars, ctxt') = fold_map prep_var raw_vars ctxt;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   118
    val (xs, ctxt'') = ctxt'
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   119
      |> Context_Position.set_visible false
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   120
      |> Proof_Context.add_fixes vars
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   121
      ||> Context_Position.restore_visible ctxt';
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   122
    val _ =
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   123
      Context_Position.reports ctxt''
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   124
        (map (Binding.pos_of o #1) vars ~~
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   125
          map (Variable.markup_entity_def ctxt'' ##> Properties.remove Markup.kindN) xs);
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   126
  in ((vars, xs), ctxt'') end;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   127
63182
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   128
fun close_form ctxt ys prems concl =
63396
ae07cd27ebf1 PIDE reports of implicit variable scope;
wenzelm
parents: 63395
diff changeset
   129
  let
ae07cd27ebf1 PIDE reports of implicit variable scope;
wenzelm
parents: 63395
diff changeset
   130
    val xs = rev (fold (Variable.add_free_names ctxt) (prems @ [concl]) (rev ys));
ae07cd27ebf1 PIDE reports of implicit variable scope;
wenzelm
parents: 63395
diff changeset
   131
ae07cd27ebf1 PIDE reports of implicit variable scope;
wenzelm
parents: 63395
diff changeset
   132
    val pos_props = Logic.strip_imp_concl concl :: Logic.strip_imp_prems concl @ prems;
ae07cd27ebf1 PIDE reports of implicit variable scope;
wenzelm
parents: 63395
diff changeset
   133
    fun get_pos x = maps (get_positions ctxt x) pos_props;
ae07cd27ebf1 PIDE reports of implicit variable scope;
wenzelm
parents: 63395
diff changeset
   134
    val _ = Context_Position.reports ctxt (maps (Syntax_Phases.reports_of_scope o get_pos) xs);
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   135
  in Logic.close_prop_constraint (Variable.default_type ctxt) (xs ~~ xs) prems concl end;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   136
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   137
fun dummy_frees ctxt xs tss =
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   138
  let
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   139
    val names =
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   140
      Variable.names_of ((fold o fold) Variable.declare_term tss ctxt)
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   141
      |> fold Name.declare xs;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   142
    val (tss', _) = (fold_map o fold_map) Term.free_dummy_patterns tss names;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   143
  in tss' end;
24724
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   144
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   145
fun prep_spec_open prep_var parse_prop raw_vars raw_params raw_prems raw_concl ctxt =
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   146
  let
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   147
    val ((vars, xs), vars_ctxt) = prep_decls prep_var raw_vars ctxt;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   148
    val (ys, params_ctxt) = vars_ctxt |> fold_map prep_var raw_params |-> Proof_Context.add_fixes;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   149
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   150
    val props =
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   151
      map (parse_prop params_ctxt) (raw_concl :: raw_prems)
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   152
      |> singleton (dummy_frees params_ctxt (xs @ ys));
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   153
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   154
    val concl :: prems = Syntax.check_props params_ctxt props;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   155
    val spec = Logic.list_implies (prems, concl);
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   156
    val spec_ctxt = Variable.declare_term spec params_ctxt;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   157
63395
734723445a8c PIDE reports of implicit variable scope;
wenzelm
parents: 63394
diff changeset
   158
    fun get_pos x = maps (get_positions spec_ctxt x) props;
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   159
  in ((vars, xs, get_pos, spec), spec_ctxt) end;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   160
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   161
fun prep_specs prep_var parse_prop prep_att raw_vars raw_specss ctxt =
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   162
  let
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   163
    val ((vars, xs), vars_ctxt) = prep_decls prep_var raw_vars ctxt;
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   164
63179
wenzelm
parents: 63178
diff changeset
   165
    val propss0 =
63182
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   166
      raw_specss |> map (fn ((_, raw_concl), raw_prems, raw_params) =>
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   167
        let val (ys, ctxt') = vars_ctxt |> fold_map prep_var raw_params |-> Proof_Context.add_fixes
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   168
        in (ys, map (pair ctxt') (raw_concl :: raw_prems)) end);
63179
wenzelm
parents: 63178
diff changeset
   169
    val props =
63182
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   170
      burrow (grouped 10 Par_List.map_independent (uncurry parse_prop)) (map #2 propss0)
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   171
      |> dummy_frees vars_ctxt xs
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   172
      |> map2 (fn (ys, _) => fn concl :: prems => close_form vars_ctxt ys prems concl) propss0;
61947
8d996ee7e986 more position information;
wenzelm
parents: 60477
diff changeset
   173
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   174
    val specs = Syntax.check_props vars_ctxt props;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   175
    val specs_ctxt = vars_ctxt |> fold Variable.declare_term specs;
24724
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   176
60407
53ef7b78e78a tuned signature;
wenzelm
parents: 60379
diff changeset
   177
    val ps = specs_ctxt |> fold_map Proof_Context.inferred_param xs |> fst;
53ef7b78e78a tuned signature;
wenzelm
parents: 60379
diff changeset
   178
    val params = map2 (fn (b, _, mx) => fn (_, T) => ((b, T), mx)) vars ps;
61947
8d996ee7e986 more position information;
wenzelm
parents: 60477
diff changeset
   179
    val name_atts: Attrib.binding list =
63179
wenzelm
parents: 63178
diff changeset
   180
      map (fn ((name, atts), _) => (name, map (prep_att ctxt) atts)) (map #1 raw_specss);
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   181
  in ((params, name_atts ~~ specs), specs_ctxt) end;
24724
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   182
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   183
in
21370
d9dd7b4e5e69 replaced Variable.fix_frees by Variable.auto_fixes (depends on body mode);
wenzelm
parents: 21359
diff changeset
   184
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   185
val check_spec_open = prep_spec_open Proof_Context.cert_var (K I);
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   186
val read_spec_open = prep_spec_open Proof_Context.read_var Syntax.parse_prop;
30482
6e3c92de4a7d simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
wenzelm
parents: 30472
diff changeset
   187
63182
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   188
type multi_specs =
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   189
  ((Attrib.binding * term) * term list * (binding * typ option * mixfix) list) list;
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   190
type multi_specs_cmd =
b065b4833092 allow 'for' fixes for multi_specs;
wenzelm
parents: 63181
diff changeset
   191
  ((Attrib.binding * string) * string list * (binding * string option * mixfix) list) list;
61947
8d996ee7e986 more position information;
wenzelm
parents: 60477
diff changeset
   192
63064
2f18172214c8 support 'assumes' in specifications, e.g. 'definition', 'inductive';
wenzelm
parents: 63063
diff changeset
   193
fun check_multi_specs xs specs =
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   194
  prep_specs Proof_Context.cert_var (K I) (K I) xs specs;
63064
2f18172214c8 support 'assumes' in specifications, e.g. 'definition', 'inductive';
wenzelm
parents: 63063
diff changeset
   195
2f18172214c8 support 'assumes' in specifications, e.g. 'definition', 'inductive';
wenzelm
parents: 63063
diff changeset
   196
fun read_multi_specs xs specs =
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   197
  prep_specs Proof_Context.read_var Syntax.parse_prop Attrib.check_src xs specs;
30482
6e3c92de4a7d simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
wenzelm
parents: 30472
diff changeset
   198
24724
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   199
end;
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   200
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   201
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28093
diff changeset
   202
(* axiomatization -- within global theory *)
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   203
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   204
fun gen_axioms prep_stmt prep_att raw_decls raw_fixes raw_prems raw_concls thy =
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   205
  let
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   206
    (*specification*)
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   207
    val ((vars, [prems, concls], _, _), vars_ctxt) =
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   208
      Proof_Context.init_global thy
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   209
      |> prep_stmt (raw_decls @ raw_fixes) ((map o map) (rpair []) [raw_prems, map snd raw_concls]);
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   210
    val (decls, fixes) = chop (length raw_decls) vars;
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   211
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   212
    val frees =
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   213
      rev ((fold o fold) (Variable.add_frees vars_ctxt) [prems, concls] [])
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   214
      |> map (fn (x, T) => (x, Free (x, T)));
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   215
    val close = Logic.close_prop (map #2 fixes @ frees) prems;
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   216
    val specs =
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   217
      map ((apsnd o map) (prep_att vars_ctxt) o fst) raw_concls ~~ map close concls;
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28093
diff changeset
   218
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28093
diff changeset
   219
    (*consts*)
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   220
    val (consts, consts_thy) = thy
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   221
      |> fold_map (fn ((b, _, mx), (_, t)) => Theory.specify_const ((b, Term.type_of t), mx)) decls;
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   222
    val subst = Term.subst_atomic (map (#2 o #2) decls ~~ consts);
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28093
diff changeset
   223
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28093
diff changeset
   224
    (*axioms*)
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   225
    val (axioms, axioms_thy) =
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   226
      (specs, consts_thy) |-> fold_map (fn ((b, atts), prop) =>
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   227
        Thm.add_axiom_global (b, subst prop) #>> (fn (_, th) => ((b, atts), [([th], [])])));
30470
9ae8f9d78cd3 axiomatization: more precise treatment of binding;
wenzelm
parents: 30434
diff changeset
   228
9ae8f9d78cd3 axiomatization: more precise treatment of binding;
wenzelm
parents: 30434
diff changeset
   229
    (*facts*)
33703
50b6c07c0dd4 axiomatization: declare Spec_Rules, direct result;
wenzelm
parents: 33671
diff changeset
   230
    val (facts, facts_lthy) = axioms_thy
38388
94d5624dd1f7 Named_Target.theory_init
haftmann
parents: 38350
diff changeset
   231
      |> Named_Target.theory_init
33703
50b6c07c0dd4 axiomatization: declare Spec_Rules, direct result;
wenzelm
parents: 33671
diff changeset
   232
      |> Spec_Rules.add Spec_Rules.Unknown (consts, maps (maps #1 o #2) axioms)
50b6c07c0dd4 axiomatization: declare Spec_Rules, direct result;
wenzelm
parents: 33671
diff changeset
   233
      |> Local_Theory.notes axioms;
30470
9ae8f9d78cd3 axiomatization: more precise treatment of binding;
wenzelm
parents: 30434
diff changeset
   234
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   235
  in ((consts, map (the_single o #2) facts), Local_Theory.exit_global facts_lthy) end;
18786
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   236
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   237
val axiomatization = gen_axioms Proof_Context.cert_stmt (K I);
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   238
val axiomatization_cmd = gen_axioms Proof_Context.read_stmt Attrib.check_src;
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   239
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63096
diff changeset
   240
fun axiom (b, ax) = axiomatization [] [] [] [(b, ax)] #>> (hd o snd);
35894
ab6dc4d86ea1 added Specification.axiom convenience;
wenzelm
parents: 35625
diff changeset
   241
18786
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   242
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   243
(* definition *)
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   244
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   245
fun gen_def prep_spec prep_att raw_var raw_params raw_prems ((a, raw_atts), raw_spec) int lthy =
18786
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   246
  let
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   247
    val atts = map (prep_att lthy) raw_atts;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   248
63394
wenzelm
parents: 63352
diff changeset
   249
    val ((vars, xs, get_pos, spec), _) = lthy
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   250
      |> prep_spec (the_list raw_var) raw_params raw_prems raw_spec;
63395
734723445a8c PIDE reports of implicit variable scope;
wenzelm
parents: 63394
diff changeset
   251
    val (((x, T), rhs), prove) = Local_Defs.derived_def lthy get_pos {conditional = true} spec;
56169
9b0dc5c704c9 reject internal names, notably from Term.free_dummy_patterns;
wenzelm
parents: 56026
diff changeset
   252
    val _ = Name.reject_internal (x, []);
62770
wenzelm
parents: 61950
diff changeset
   253
    val (b, mx) =
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   254
      (case (vars, xs) of
63395
734723445a8c PIDE reports of implicit variable scope;
wenzelm
parents: 63394
diff changeset
   255
        ([], []) => (Binding.make (x, (case get_pos x of [] => Position.none | p :: _ => p)), NoSyn)
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   256
      | ([(b, _, mx)], [y]) =>
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   257
          if x = y then (b, mx)
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   258
          else
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   259
            error ("Head of definition " ^ quote x ^ " differs from declaration " ^ quote y ^
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   260
              Position.here (Binding.pos_of b)));
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   261
    val name = Thm.def_binding_optional b a;
33455
4da71b27b3fe declare Spec_Rules for most basic definitional packages;
wenzelm
parents: 33389
diff changeset
   262
    val ((lhs, (_, raw_th)), lthy2) = lthy
62770
wenzelm
parents: 61950
diff changeset
   263
      |> Local_Theory.define_internal ((b, mx), ((Binding.suffix_name "_raw" name, []), rhs));
33455
4da71b27b3fe declare Spec_Rules for most basic definitional packages;
wenzelm
parents: 33389
diff changeset
   264
4da71b27b3fe declare Spec_Rules for most basic definitional packages;
wenzelm
parents: 33389
diff changeset
   265
    val th = prove lthy2 raw_th;
69992
bd3c10813cc4 more informative Spec_Rules.Equational, notably primrec argument types;
wenzelm
parents: 66251
diff changeset
   266
    val lthy3 = lthy2 |> Spec_Rules.add Spec_Rules.equational ([lhs], [th]);
33455
4da71b27b3fe declare Spec_Rules for most basic definitional packages;
wenzelm
parents: 33389
diff changeset
   267
33670
02b7738aef6a eliminated slightly odd kind argument of LocalTheory.note(s);
wenzelm
parents: 33644
diff changeset
   268
    val ([(def_name, [th'])], lthy4) = lthy3
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66248
diff changeset
   269
      |> Local_Theory.notes [((name, atts), [([th], [])])];
18786
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   270
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66248
diff changeset
   271
    val lthy5 = lthy4
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66248
diff changeset
   272
      |> Code.declare_default_eqns [(th', true)];
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66248
diff changeset
   273
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66248
diff changeset
   274
    val lhs' = Morphism.term (Local_Theory.target_morphism lthy5) lhs;
44192
a32ca9165928 less verbosity in batch mode -- spam reduction and notable performance improvement;
wenzelm
parents: 43329
diff changeset
   275
56932
11a4001b06c6 more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents: 56897
diff changeset
   276
    val _ =
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66248
diff changeset
   277
      Proof_Display.print_consts int (Position.thread_data ()) lthy5
56932
11a4001b06c6 more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents: 56897
diff changeset
   278
        (member (op =) (Term.add_frees lhs' [])) [(x, T)];
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66248
diff changeset
   279
  in ((lhs, (def_name, th')), lthy5) end;
18786
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   280
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   281
val definition' = gen_def check_spec_open (K I);
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   282
fun definition xs ys As B = definition' xs ys As B false;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   283
val definition_cmd = gen_def read_spec_open Attrib.check_src;
18786
591a37d48794 added definition(_i);
wenzelm
parents: 18771
diff changeset
   284
19080
46ba991e27d5 added abbreviation(_i);
wenzelm
parents: 18954
diff changeset
   285
46ba991e27d5 added abbreviation(_i);
wenzelm
parents: 18954
diff changeset
   286
(* abbreviation *)
46ba991e27d5 added abbreviation(_i);
wenzelm
parents: 18954
diff changeset
   287
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   288
fun gen_abbrev prep_spec mode raw_var raw_params raw_spec int lthy =
19080
46ba991e27d5 added abbreviation(_i);
wenzelm
parents: 18954
diff changeset
   289
  let
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   290
    val lthy1 = lthy |> Proof_Context.set_syntax_mode mode;
63394
wenzelm
parents: 63352
diff changeset
   291
    val ((vars, xs, get_pos, spec), _) = lthy
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   292
      |> Proof_Context.set_mode Proof_Context.mode_abbrev
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   293
      |> prep_spec (the_list raw_var) raw_params [] raw_spec;
63395
734723445a8c PIDE reports of implicit variable scope;
wenzelm
parents: 63394
diff changeset
   294
    val ((x, T), rhs) = Local_Defs.abs_def (#2 (Local_Defs.cert_def lthy1 get_pos spec));
56169
9b0dc5c704c9 reject internal names, notably from Term.free_dummy_patterns;
wenzelm
parents: 56026
diff changeset
   295
    val _ = Name.reject_internal (x, []);
62770
wenzelm
parents: 61950
diff changeset
   296
    val (b, mx) =
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   297
      (case (vars, xs) of
63395
734723445a8c PIDE reports of implicit variable scope;
wenzelm
parents: 63394
diff changeset
   298
        ([], []) => (Binding.make (x, (case get_pos x of [] => Position.none | p :: _ => p)), NoSyn)
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   299
      | ([(b, _, mx)], [y]) =>
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   300
          if x = y then (b, mx)
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   301
          else
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   302
            error ("Head of abbreviation " ^ quote x ^ " differs from declaration " ^ quote y ^
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   303
              Position.here (Binding.pos_of b)));
55119
9ca72949ebac observe local syntax mode (according to e3a39dae2004, which was lost in 0f3ad56548bc), e.g. relevant for "abbreviation (output)" with non-terminating syntax;
wenzelm
parents: 54883
diff changeset
   304
    val lthy2 = lthy1
62770
wenzelm
parents: 61950
diff changeset
   305
      |> Local_Theory.abbrev mode ((b, mx), rhs) |> snd
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42357
diff changeset
   306
      |> Proof_Context.restore_syntax_mode lthy;
24724
0df74bb87a13 read/check_specification: proper type inference across multiple sections, result is in closed form;
wenzelm
parents: 24676
diff changeset
   307
56932
11a4001b06c6 more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents: 56897
diff changeset
   308
    val _ = Proof_Display.print_consts int (Position.thread_data ()) lthy2 (K false) [(x, T)];
55119
9ca72949ebac observe local syntax mode (according to e3a39dae2004, which was lost in 0f3ad56548bc), e.g. relevant for "abbreviation (output)" with non-terminating syntax;
wenzelm
parents: 54883
diff changeset
   309
  in lthy2 end;
19080
46ba991e27d5 added abbreviation(_i);
wenzelm
parents: 18954
diff changeset
   310
63180
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   311
val abbreviation = gen_abbrev check_spec_open;
ddfd021884b4 clarified check_open_spec / read_open_spec;
wenzelm
parents: 63179
diff changeset
   312
val abbreviation_cmd = gen_abbrev read_spec_open;
19080
46ba991e27d5 added abbreviation(_i);
wenzelm
parents: 18954
diff changeset
   313
19664
e1dc01a48a52 added const_syntax(_i);
wenzelm
parents: 19585
diff changeset
   314
66248
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   315
(* alias *)
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   316
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   317
fun gen_alias decl check (b, arg) lthy =
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   318
  let
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   319
    val (c, reports) = check {proper = true, strict = false} lthy arg;
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   320
    val _ = Position.reports reports;
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   321
  in decl b c lthy end;
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   322
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   323
val alias =
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   324
  gen_alias Local_Theory.const_alias (K (K (fn c => (c, []))));
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   325
val alias_cmd =
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   326
  gen_alias Local_Theory.const_alias
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   327
    (fn flags => fn ctxt => fn (c, pos) =>
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   328
      apfst (#1 o dest_Const) (Proof_Context.check_const flags ctxt (c, [pos])));
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   329
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   330
val type_alias =
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   331
  gen_alias Local_Theory.type_alias (K (K (fn c => (c, []))));
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   332
val type_alias_cmd =
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   333
  gen_alias Local_Theory.type_alias (apfst (#1 o dest_Type) ooo Proof_Context.check_type_name);
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   334
df85956228c2 added command 'alias' and 'type_alias';
wenzelm
parents: 63396
diff changeset
   335
21230
abfdce60b371 theorem statements: incorporate Obtain.statement, tuned;
wenzelm
parents: 21206
diff changeset
   336
(* notation *)
19664
e1dc01a48a52 added const_syntax(_i);
wenzelm
parents: 19585
diff changeset
   337
35413
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   338
local
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   339
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   340
fun gen_type_notation prep_type add mode args lthy =
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   341
  lthy |> Local_Theory.type_notation add mode (map (apfst (prep_type lthy)) args);
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   342
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24927
diff changeset
   343
fun gen_notation prep_const add mode args lthy =
33671
4b0f2599ed48 modernized structure Local_Theory;
wenzelm
parents: 33670
diff changeset
   344
  lthy |> Local_Theory.notation add mode (map (apfst (prep_const lthy)) args);
19664
e1dc01a48a52 added const_syntax(_i);
wenzelm
parents: 19585
diff changeset
   345
35413
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   346
in
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   347
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   348
val type_notation = gen_type_notation (K I);
55951
c07d184aebe9 tuned signature -- more uniform check_type_name/read_type_name;
wenzelm
parents: 55639
diff changeset
   349
val type_notation_cmd =
56002
2028467b4df4 tuned signature;
wenzelm
parents: 55997
diff changeset
   350
  gen_type_notation (Proof_Context.read_type_name {proper = true, strict = false});
35413
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   351
24927
48e08f37ce92 Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents: 24848
diff changeset
   352
val notation = gen_notation (K I);
56002
2028467b4df4 tuned signature;
wenzelm
parents: 55997
diff changeset
   353
val notation_cmd = gen_notation (Proof_Context.read_const {proper = false, strict = false});
19664
e1dc01a48a52 added const_syntax(_i);
wenzelm
parents: 19585
diff changeset
   354
35413
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   355
end;
4c7cba1f7ce9 added type_notation command;
wenzelm
parents: 35399
diff changeset
   356
20914
3f065aa89792 added theorems(_i) -- with present_results;
wenzelm
parents: 20890
diff changeset
   357
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   358
(* fact statements *)
20914
3f065aa89792 added theorems(_i) -- with present_results;
wenzelm
parents: 20890
diff changeset
   359
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   360
local
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   361
60469
d1ea37df7358 tuned signature;
wenzelm
parents: 60454
diff changeset
   362
fun gen_theorems prep_fact prep_att add_fixes
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   363
    kind raw_facts raw_fixes int lthy =
20914
3f065aa89792 added theorems(_i) -- with present_results;
wenzelm
parents: 20890
diff changeset
   364
  let
3f065aa89792 added theorems(_i) -- with present_results;
wenzelm
parents: 20890
diff changeset
   365
    val facts = raw_facts |> map (fn ((name, atts), bs) =>
55997
9dc5ce83202c modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents: 55955
diff changeset
   366
      ((name, map (prep_att lthy) atts),
9dc5ce83202c modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents: 55955
diff changeset
   367
        bs |> map (fn (b, more_atts) => (prep_fact lthy b, map (prep_att lthy) more_atts))));
60469
d1ea37df7358 tuned signature;
wenzelm
parents: 60454
diff changeset
   368
    val (_, ctxt') = add_fixes raw_fixes lthy;
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   369
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   370
    val facts' = facts
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   371
      |> Attrib.partial_evaluation ctxt'
58028
e4250d370657 tuned signature -- define some elementary operations earlier;
wenzelm
parents: 58011
diff changeset
   372
      |> Attrib.transform_facts (Proof_Context.export_morphism ctxt' lthy);
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   373
    val (res, lthy') = lthy |> Local_Theory.notes_kind kind facts';
56932
11a4001b06c6 more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents: 56897
diff changeset
   374
    val _ = Proof_Display.print_results int (Position.thread_data ()) lthy' ((kind, ""), res);
20914
3f065aa89792 added theorems(_i) -- with present_results;
wenzelm
parents: 20890
diff changeset
   375
  in (res, lthy') end;
3f065aa89792 added theorems(_i) -- with present_results;
wenzelm
parents: 20890
diff changeset
   376
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   377
in
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   378
60469
d1ea37df7358 tuned signature;
wenzelm
parents: 60454
diff changeset
   379
val theorems = gen_theorems (K I) (K I) Proof_Context.add_fixes;
d1ea37df7358 tuned signature;
wenzelm
parents: 60454
diff changeset
   380
val theorems_cmd = gen_theorems Proof_Context.get_fact Attrib.check_src Proof_Context.add_fixes_cmd;
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   381
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 45584
diff changeset
   382
end;
20914
3f065aa89792 added theorems(_i) -- with present_results;
wenzelm
parents: 20890
diff changeset
   383
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   384
21230
abfdce60b371 theorem statements: incorporate Obtain.statement, tuned;
wenzelm
parents: 21206
diff changeset
   385
(* complex goal statements *)
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   386
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   387
local
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   388
60477
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   389
fun prep_statement prep_att prep_stmt raw_elems raw_stmt ctxt =
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   390
  let
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   391
    val (stmt, elems_ctxt) = prep_stmt raw_elems raw_stmt ctxt;
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   392
    val prems = Assumption.local_prems_of elems_ctxt ctxt;
70308
7f568724d67e clarified signature;
wenzelm
parents: 69992
diff changeset
   393
    val stmt_ctxt = fold (fold (Proof_Context.augment o fst) o snd) stmt elems_ctxt;
60477
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   394
  in
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   395
    (case raw_stmt of
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   396
      Element.Shows _ =>
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   397
        let val stmt' = Attrib.map_specs (map prep_att) stmt
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   398
        in (([], prems, stmt', NONE), stmt_ctxt) end
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   399
    | Element.Obtains raw_obtains =>
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   400
        let
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   401
          val asms_ctxt = stmt_ctxt
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   402
            |> fold (fn ((name, _), asm) =>
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   403
                snd o Proof_Context.add_assms Assumption.assume_export
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   404
                  [((name, [Context_Rules.intro_query NONE]), asm)]) stmt;
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   405
          val that = Assumption.local_prems_of asms_ctxt stmt_ctxt;
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   406
          val ([(_, that')], that_ctxt) = asms_ctxt
63096
7910b1db2596 re-enable fact index for 'obtains' assumption (amending 5c8e6a751adc);
wenzelm
parents: 63094
diff changeset
   407
            |> Proof_Context.set_stmt true
7910b1db2596 re-enable fact index for 'obtains' assumption (amending 5c8e6a751adc);
wenzelm
parents: 63094
diff changeset
   408
            |> Proof_Context.note_thmss "" [((Binding.name Auto_Bind.thatN, []), [(that, [])])]
7910b1db2596 re-enable fact index for 'obtains' assumption (amending 5c8e6a751adc);
wenzelm
parents: 63094
diff changeset
   409
            ||> Proof_Context.restore_stmt asms_ctxt;
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   410
63352
4eaf35781b23 tuned signature;
wenzelm
parents: 63267
diff changeset
   411
          val stmt' = [(Binding.empty_atts, [(#2 (#1 (Obtain.obtain_thesis ctxt)), [])])];
63019
80ef19b51493 prefer internal attribute source;
wenzelm
parents: 62992
diff changeset
   412
        in ((Obtain.obtains_attribs raw_obtains, prems, stmt', SOME that'), that_ctxt) end)
60477
051b200f7578 improved treatment of Element.Obtains via Expression.prepare_stmt;
wenzelm
parents: 60469
diff changeset
   413
  end;
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   414
56026
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   415
fun gen_theorem schematic bundle_includes prep_att prep_stmt
63094
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
   416
    long kind before_qed after_qed (name, raw_atts) raw_includes raw_elems raw_concl int lthy =
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   417
  let
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47021
diff changeset
   418
    val _ = Local_Theory.assert lthy;
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   419
55997
9dc5ce83202c modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents: 55955
diff changeset
   420
    val elems = raw_elems |> map (Element.map_ctxt_attrib (prep_att lthy));
47067
4ef29b0c568f optional 'includes' element for long theorem statements;
wenzelm
parents: 47066
diff changeset
   421
    val ((more_atts, prems, stmt, facts), goal_ctxt) = lthy
56026
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   422
      |> bundle_includes raw_includes
55997
9dc5ce83202c modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents: 55955
diff changeset
   423
      |> prep_statement (prep_att lthy) prep_stmt elems raw_concl;
9dc5ce83202c modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents: 55955
diff changeset
   424
    val atts = more_atts @ map (prep_att lthy) raw_atts;
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   425
56932
11a4001b06c6 more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents: 56897
diff changeset
   426
    val pos = Position.thread_data ();
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   427
    fun after_qed' results goal_ctxt' =
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   428
      let
54883
dd04a8b654fc proper context for norm_hhf and derived operations;
wenzelm
parents: 51313
diff changeset
   429
        val results' =
dd04a8b654fc proper context for norm_hhf and derived operations;
wenzelm
parents: 51313
diff changeset
   430
          burrow (map (Goal.norm_result lthy) o Proof_Context.export goal_ctxt' lthy) results;
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   431
        val (res, lthy') =
63352
4eaf35781b23 tuned signature;
wenzelm
parents: 63267
diff changeset
   432
          if forall (Binding.is_empty_atts o fst) stmt then (map (pair "") results', lthy)
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   433
          else
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   434
            Local_Theory.notes_kind kind
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   435
              (map2 (fn (b, _) => fn ths => (b, [(ths, [])])) stmt results') lthy;
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   436
        val lthy'' =
63352
4eaf35781b23 tuned signature;
wenzelm
parents: 63267
diff changeset
   437
          if Binding.is_empty_atts (name, atts) then
56932
11a4001b06c6 more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents: 56897
diff changeset
   438
            (Proof_Display.print_results int pos lthy' ((kind, ""), res); lthy')
28080
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27858
diff changeset
   439
          else
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 27858
diff changeset
   440
            let
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   441
              val ([(res_name, _)], lthy'') =
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   442
                Local_Theory.notes_kind kind [((name, atts), [(maps #2 res, [])])] lthy';
56932
11a4001b06c6 more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents: 56897
diff changeset
   443
              val _ = Proof_Display.print_results int pos lthy' ((kind, res_name), res);
45584
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   444
            in lthy'' end;
41a768a431a6 do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents: 45583
diff changeset
   445
      in after_qed results' lthy'' end;
63094
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
   446
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
   447
    val prems_name = if long then Auto_Bind.assmsN else Auto_Bind.thatN;
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   448
  in
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   449
    goal_ctxt
63094
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
   450
    |> not (null prems) ?
056ea294c256 toplevel theorem statements support 'if'/'for' eigen-context;
wenzelm
parents: 63069
diff changeset
   451
      (Proof_Context.note_thmss "" [((Binding.name prems_name, []), [(prems, [])])] #> snd)
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36317
diff changeset
   452
    |> Proof.theorem before_qed after_qed' (map snd stmt)
32856
92d9555ac790 clarified Proof.refine_insert -- always "refine" to apply standard method treatment (of conjunctions);
wenzelm
parents: 32786
diff changeset
   453
    |> (case facts of NONE => I | SOME ths => Proof.refine_insert ths)
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36106
diff changeset
   454
    |> tap (fn state => not schematic andalso Proof.schematic_goal state andalso
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36106
diff changeset
   455
        error "Illegal schematic goal statement")
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   456
  end;
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   457
21230
abfdce60b371 theorem statements: incorporate Obtain.statement, tuned;
wenzelm
parents: 21206
diff changeset
   458
in
abfdce60b371 theorem statements: incorporate Obtain.statement, tuned;
wenzelm
parents: 21206
diff changeset
   459
56026
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   460
val theorem =
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   461
  gen_theorem false Bundle.includes (K I) Expression.cert_statement;
47067
4ef29b0c568f optional 'includes' element for long theorem statements;
wenzelm
parents: 47066
diff changeset
   462
val theorem_cmd =
56026
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   463
  gen_theorem false Bundle.includes_cmd Attrib.check_src Expression.read_statement;
36317
506d732cb522 explicit 'schematic_theorem' etc. for schematic theorem statements;
wenzelm
parents: 36106
diff changeset
   464
56026
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   465
val schematic_theorem =
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   466
  gen_theorem true Bundle.includes (K I) Expression.cert_statement;
47067
4ef29b0c568f optional 'includes' element for long theorem statements;
wenzelm
parents: 47066
diff changeset
   467
val schematic_theorem_cmd =
56026
893fe12639bc tuned signature -- prefer Name_Space.get with its builtin error;
wenzelm
parents: 56002
diff changeset
   468
  gen_theorem true Bundle.includes_cmd Attrib.check_src Expression.read_statement;
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   469
18620
fc8b5f275359 Theory specifications --- with type-inference, but no internal polymorphism.
wenzelm
parents:
diff changeset
   470
end;
21036
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   471
0eed532acfca added theorem(_i);
wenzelm
parents: 20914
diff changeset
   472
end;