| author | wenzelm | 
| Tue, 22 Sep 2015 18:06:49 +0200 | |
| changeset 61251 | 2da25a27a616 | 
| parent 60477 | 051b200f7578 | 
| child 61947 | 8d996ee7e986 | 
| permissions | -rw-r--r-- | 
| 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 | 4 | Derived local theory specifications --- with type-inference and | 
| 18810 | 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: 
58993diff
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: 
58993diff
changeset | 11 | term list * Proof.context | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 12 | val read_prop: string -> (binding * string option * mixfix) list -> Proof.context -> | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 13 | term * Proof.context | 
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 14 | val check_spec: | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 15 | (binding * typ option * mixfix) list -> (Attrib.binding * term) list -> Proof.context -> | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 16 | (((binding * typ) * mixfix) list * (Attrib.binding * term) list) * Proof.context | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 17 | val read_spec: | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 18 | (binding * string option * mixfix) list -> (Attrib.binding * string) list -> Proof.context -> | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 19 | (((binding * typ) * mixfix) list * (Attrib.binding * term) list) * Proof.context | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 20 | val check_free_spec: | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 21 | (binding * typ option * mixfix) list -> (Attrib.binding * term) list -> Proof.context -> | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 22 | (((binding * typ) * mixfix) list * (Attrib.binding * term) list) * Proof.context | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 23 | val read_free_spec: | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 24 | (binding * string option * mixfix) list -> (Attrib.binding * string) list -> Proof.context -> | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 25 | (((binding * typ) * mixfix) list * (Attrib.binding * term) list) * Proof.context | 
| 29581 | 26 | val check_specification: (binding * typ option * mixfix) list -> | 
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 27 | (Attrib.binding * term list) list -> Proof.context -> | 
| 29581 | 28 | (((binding * typ) * mixfix) list * (Attrib.binding * term list) list) * Proof.context | 
| 29 | val read_specification: (binding * string option * mixfix) list -> | |
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28080diff
changeset | 30 | (Attrib.binding * string list) list -> Proof.context -> | 
| 29581 | 31 | (((binding * typ) * mixfix) list * (Attrib.binding * term list) list) * Proof.context | 
| 32 | val axiomatization: (binding * typ option * mixfix) list -> | |
| 28114 | 33 | (Attrib.binding * term list) list -> theory -> | 
| 33703 
50b6c07c0dd4
axiomatization: declare Spec_Rules, direct result;
 wenzelm parents: 
33671diff
changeset | 34 | (term list * thm list list) * theory | 
| 29581 | 35 | val axiomatization_cmd: (binding * string option * mixfix) list -> | 
| 28114 | 36 | (Attrib.binding * string list) list -> theory -> | 
| 33703 
50b6c07c0dd4
axiomatization: declare Spec_Rules, direct result;
 wenzelm parents: 
33671diff
changeset | 37 | (term list * thm list list) * theory | 
| 35894 | 38 | val axiom: Attrib.binding * term -> theory -> thm * theory | 
| 18954 | 39 | val definition: | 
| 29581 | 40 | (binding * typ option * mixfix) option * (Attrib.binding * term) -> | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 41 | local_theory -> (term * (string * thm)) * local_theory | 
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 42 | val definition': | 
| 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 43 | (binding * typ option * mixfix) option * (Attrib.binding * term) -> | 
| 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 44 | bool -> local_theory -> (term * (string * thm)) * local_theory | 
| 24927 
48e08f37ce92
Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
 wenzelm parents: 
24848diff
changeset | 45 | val definition_cmd: | 
| 29581 | 46 | (binding * string option * mixfix) option * (Attrib.binding * string) -> | 
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 47 | bool -> local_theory -> (term * (string * thm)) * local_theory | 
| 29581 | 48 | val abbreviation: Syntax.mode -> (binding * typ option * mixfix) option * term -> | 
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 49 | bool -> local_theory -> local_theory | 
| 29581 | 50 | val abbreviation_cmd: Syntax.mode -> (binding * string option * mixfix) option * string -> | 
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 51 | bool -> local_theory -> local_theory | 
| 35413 | 52 | val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> local_theory -> local_theory | 
| 55639 | 53 | val type_notation_cmd: bool -> Syntax.mode -> (string * mixfix) list -> | 
| 54 | local_theory -> local_theory | |
| 24949 | 55 | val notation: bool -> Syntax.mode -> (term * mixfix) list -> local_theory -> local_theory | 
| 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: 
27858diff
changeset | 57 | val theorems: string -> | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
56932diff
changeset | 58 | (Attrib.binding * (thm list * Token.src list) list) list -> | 
| 45600 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 59 | (binding * typ option * mixfix) list -> | 
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 60 | bool -> local_theory -> (string * thm list) list * local_theory | 
| 26336 
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
 wenzelm parents: 
25371diff
changeset | 61 | val theorems_cmd: string -> | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
56932diff
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: 
45584diff
changeset | 63 | (binding * string option * mixfix) list -> | 
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 64 | bool -> local_theory -> (string * thm list) list * local_theory | 
| 24986 | 65 | val theorem: string -> Method.text option -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28080diff
changeset | 66 | (thm list list -> local_theory -> local_theory) -> Attrib.binding -> | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 67 | string list -> Element.context_i list -> Element.statement_i -> | 
| 24452 
93b113c5ac33
- theorem(_i) now also takes "interactive" flag as argument
 berghofe parents: 
24219diff
changeset | 68 | bool -> local_theory -> Proof.state | 
| 24986 | 69 | val theorem_cmd: string -> Method.text option -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28080diff
changeset | 70 | (thm list list -> local_theory -> local_theory) -> Attrib.binding -> | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 71 | (xstring * Position.T) list -> Element.context list -> Element.statement -> | 
| 24452 
93b113c5ac33
- theorem(_i) now also takes "interactive" flag as argument
 berghofe parents: 
24219diff
changeset | 72 | bool -> local_theory -> Proof.state | 
| 36317 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 73 | val schematic_theorem: string -> Method.text option -> | 
| 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 74 | (thm list list -> local_theory -> local_theory) -> Attrib.binding -> | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 75 | string list -> Element.context_i list -> Element.statement_i -> | 
| 36317 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 76 | bool -> local_theory -> Proof.state | 
| 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 77 | val schematic_theorem_cmd: string -> Method.text option -> | 
| 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 78 | (thm list list -> local_theory -> local_theory) -> Attrib.binding -> | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 79 | (xstring * Position.T) list -> Element.context list -> Element.statement -> | 
| 36317 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
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: 
58993diff
changeset | 86 | (* prepare propositions *) | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 87 | |
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 88 | fun read_props raw_props raw_fixes ctxt = | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 89 | let | 
| 60469 | 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: 
58993diff
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: 
58993diff
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: 
58993diff
changeset | 93 | val props3 = Syntax.check_props ctxt2 props2; | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 94 | val ctxt3 = ctxt2 |> fold Variable.declare_term props3; | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 95 | in (props3, ctxt3) end; | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 96 | |
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 97 | fun read_prop raw_prop raw_fixes ctxt = | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 98 | let val ([prop], ctxt') = read_props [raw_prop] raw_fixes ctxt | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 99 | in (prop, ctxt') end; | 
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 100 | |
| 
c648efffea73
support for minimal specifications, with usual treatment of fixes and dummies;
 wenzelm parents: 
58993diff
changeset | 101 | |
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 102 | (* prepare specification *) | 
| 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 103 | |
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 104 | local | 
| 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 105 | |
| 60445 | 106 | fun close_forms ctxt i As = | 
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 107 | let | 
| 60454 
a4c6b278f3a7
eliminated slightly odd Element.close_form: toplevel specifications have different policies than proof text elements;
 wenzelm parents: 
60448diff
changeset | 108 | val xs = rev (fold (Variable.add_free_names ctxt) As []); | 
| 55639 | 109 | val types = | 
| 60454 
a4c6b278f3a7
eliminated slightly odd Element.close_form: toplevel specifications have different policies than proof text elements;
 wenzelm parents: 
60448diff
changeset | 110 | map (Type_Infer.param i o rpair []) (Name.invent Name.context Name.aT (length xs)); | 
| 
a4c6b278f3a7
eliminated slightly odd Element.close_form: toplevel specifications have different policies than proof text elements;
 wenzelm parents: 
60448diff
changeset | 111 | val uniform_typing = AList.lookup (op =) (xs ~~ types); | 
| 
a4c6b278f3a7
eliminated slightly odd Element.close_form: toplevel specifications have different policies than proof text elements;
 wenzelm parents: 
60448diff
changeset | 112 | val close = fold_rev (Logic.dependent_all_constraint uniform_typing) (xs ~~ xs); | 
| 
a4c6b278f3a7
eliminated slightly odd Element.close_form: toplevel specifications have different policies than proof text elements;
 wenzelm parents: 
60448diff
changeset | 113 | in map close As end; | 
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 114 | |
| 60379 | 115 | fun prepare prep_var parse_prop prep_att do_close raw_vars raw_specss ctxt = | 
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 116 | let | 
| 60379 | 117 | val (vars, vars_ctxt) = ctxt |> fold_map prep_var raw_vars; | 
| 42360 | 118 | val (xs, params_ctxt) = vars_ctxt |> Proof_Context.add_fixes vars; | 
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 119 | |
| 42265 | 120 | val Asss = | 
| 121 | (map o map) snd raw_specss | |
| 58993 
302104d8366b
prefer independent parallel map where user input is processed -- avoid non-deterministic feedback in error situations;
 wenzelm parents: 
58848diff
changeset | 122 | |> (burrow o burrow) (grouped 10 Par_List.map_independent (parse_prop params_ctxt)); | 
| 24734 | 123 | val names = Variable.names_of (params_ctxt |> (fold o fold o fold) Variable.declare_term Asss) | 
| 124 | |> fold Name.declare xs; | |
| 125 | val Asss' = #1 ((fold_map o fold_map o fold_map) Term.free_dummy_patterns Asss names); | |
| 126 | val idx = (fold o fold o fold) Term.maxidx_term Asss' ~1 + 1; | |
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 127 | val specs = | 
| 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 128 | (if do_close then | 
| 24734 | 129 | #1 (fold_map | 
| 60445 | 130 | (fn Ass => fn i => (burrow (close_forms params_ctxt i) Ass, i + 1)) Asss' idx) | 
| 24734 | 131 | else Asss') | 
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 132 | |> flat |> burrow (Syntax.check_props params_ctxt); | 
| 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 133 | val specs_ctxt = params_ctxt |> (fold o fold) Variable.declare_term specs; | 
| 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 134 | |
| 60407 | 135 | val ps = specs_ctxt |> fold_map Proof_Context.inferred_param xs |> fst; | 
| 136 | val params = map2 (fn (b, _, mx) => fn (_, T) => ((b, T), mx)) vars ps; | |
| 55997 
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
 wenzelm parents: 
55955diff
changeset | 137 | val name_atts = map (fn ((name, atts), _) => (name, map (prep_att ctxt) atts)) (flat raw_specss); | 
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 138 | in ((params, name_atts ~~ specs), specs_ctxt) end; | 
| 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 139 | |
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 140 | |
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 141 | fun single_spec (a, prop) = [(a, [prop])]; | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 142 | fun the_spec (a, [prop]) = (a, prop); | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 143 | |
| 60379 | 144 | fun prep_spec prep_var parse_prop prep_att do_close vars specs = | 
| 145 | prepare prep_var parse_prop prep_att do_close | |
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 146 | vars (map single_spec specs) #>> apsnd (map the_spec); | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 147 | |
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 148 | in | 
| 21370 
d9dd7b4e5e69
replaced Variable.fix_frees by Variable.auto_fixes (depends on body mode);
 wenzelm parents: 
21359diff
changeset | 149 | |
| 60379 | 150 | fun check_spec x = prep_spec Proof_Context.cert_var (K I) (K I) true x; | 
| 151 | fun read_spec x = prep_spec Proof_Context.read_var Syntax.parse_prop Attrib.check_src true x; | |
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 152 | |
| 60379 | 153 | fun check_free_spec x = prep_spec Proof_Context.cert_var (K I) (K I) false x; | 
| 154 | fun read_free_spec x = prep_spec Proof_Context.read_var Syntax.parse_prop Attrib.check_src false x; | |
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 155 | |
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 156 | fun check_specification vars specs = | 
| 60379 | 157 | prepare Proof_Context.cert_var (K I) (K I) true vars [specs]; | 
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 158 | |
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 159 | fun read_specification vars specs = | 
| 60379 | 160 | prepare Proof_Context.read_var Syntax.parse_prop Attrib.check_src true vars [specs]; | 
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 161 | |
| 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 162 | end; | 
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 163 | |
| 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 164 | |
| 28114 | 165 | (* axiomatization -- within global theory *) | 
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 166 | |
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 167 | fun gen_axioms prep raw_vars raw_specs thy = | 
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 168 | let | 
| 42360 | 169 | val ((vars, specs), _) = prep raw_vars raw_specs (Proof_Context.init_global thy); | 
| 42494 | 170 | val xs = map (fn ((b, T), _) => (Variable.check_name b, T)) vars; | 
| 28114 | 171 | |
| 172 | (*consts*) | |
| 33173 
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
 wenzelm parents: 
32856diff
changeset | 173 | val (consts, consts_thy) = thy |> fold_map Theory.specify_const vars; | 
| 28114 | 174 | val subst = Term.subst_atomic (map Free xs ~~ consts); | 
| 175 | ||
| 176 | (*axioms*) | |
| 30470 
9ae8f9d78cd3
axiomatization: more precise treatment of binding;
 wenzelm parents: 
30434diff
changeset | 177 | val (axioms, axioms_thy) = (specs, consts_thy) |-> fold_map (fn ((b, atts), props) => | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 178 | fold_map Thm.add_axiom_global | 
| 30470 
9ae8f9d78cd3
axiomatization: more precise treatment of binding;
 wenzelm parents: 
30434diff
changeset | 179 | (map (apfst (fn a => Binding.map_name (K a) b)) | 
| 47021 
f35f654f297d
clarified Binding.name_of vs Name_Space.base_name vs Variable.check_name (see also 9bd8d4addd6e, 3305f573294e);
 wenzelm parents: 
46992diff
changeset | 180 | (Global_Theory.name_multi (Binding.name_of b) (map subst props))) | 
| 36106 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35894diff
changeset | 181 | #>> (fn ths => ((b, atts), [(map #2 ths, [])]))); | 
| 30470 
9ae8f9d78cd3
axiomatization: more precise treatment of binding;
 wenzelm parents: 
30434diff
changeset | 182 | |
| 
9ae8f9d78cd3
axiomatization: more precise treatment of binding;
 wenzelm parents: 
30434diff
changeset | 183 | (*facts*) | 
| 33703 
50b6c07c0dd4
axiomatization: declare Spec_Rules, direct result;
 wenzelm parents: 
33671diff
changeset | 184 | val (facts, facts_lthy) = axioms_thy | 
| 38388 | 185 | |> Named_Target.theory_init | 
| 33703 
50b6c07c0dd4
axiomatization: declare Spec_Rules, direct result;
 wenzelm parents: 
33671diff
changeset | 186 | |> Spec_Rules.add Spec_Rules.Unknown (consts, maps (maps #1 o #2) axioms) | 
| 
50b6c07c0dd4
axiomatization: declare Spec_Rules, direct result;
 wenzelm parents: 
33671diff
changeset | 187 | |> Local_Theory.notes axioms; | 
| 30470 
9ae8f9d78cd3
axiomatization: more precise treatment of binding;
 wenzelm parents: 
30434diff
changeset | 188 | |
| 33703 
50b6c07c0dd4
axiomatization: declare Spec_Rules, direct result;
 wenzelm parents: 
33671diff
changeset | 189 | in ((consts, map #2 facts), Local_Theory.exit_global facts_lthy) end; | 
| 18786 | 190 | |
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 191 | val axiomatization = gen_axioms check_specification; | 
| 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 192 | val axiomatization_cmd = gen_axioms read_specification; | 
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 193 | |
| 35894 | 194 | fun axiom (b, ax) = axiomatization [] [(b, [ax])] #>> (hd o hd o snd); | 
| 195 | ||
| 18786 | 196 | |
| 197 | (* definition *) | |
| 198 | ||
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 199 | fun gen_def prep (raw_var, raw_spec) int lthy = | 
| 18786 | 200 | let | 
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 201 | val (vars, [((raw_name, atts), prop)]) = fst (prep (the_list raw_var) [raw_spec] lthy); | 
| 35624 | 202 | val (((x, T), rhs), prove) = Local_Defs.derived_def lthy true prop; | 
| 56169 
9b0dc5c704c9
reject internal names, notably from Term.free_dummy_patterns;
 wenzelm parents: 
56026diff
changeset | 203 | val _ = Name.reject_internal (x, []); | 
| 30434 | 204 | val var as (b, _) = | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 205 | (case vars of | 
| 28965 | 206 | [] => (Binding.name x, NoSyn) | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 207 | | [((b, _), mx)] => | 
| 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 208 | let | 
| 42494 | 209 | val y = Variable.check_name b; | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 210 | val _ = x = y orelse | 
| 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 211 |               error ("Head of definition " ^ quote x ^ " differs from declaration " ^ quote y ^
 | 
| 48992 | 212 | Position.here (Binding.pos_of b)); | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 213 | in (b, mx) end); | 
| 30434 | 214 | val name = Thm.def_binding_optional b raw_name; | 
| 33455 
4da71b27b3fe
declare Spec_Rules for most basic definitional packages;
 wenzelm parents: 
33389diff
changeset | 215 | val ((lhs, (_, raw_th)), lthy2) = lthy | 
| 46992 
eeea81b86b70
refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
 wenzelm parents: 
46989diff
changeset | 216 | |> Local_Theory.define_internal (var, ((Binding.suffix_name "_raw" name, []), rhs)); | 
| 33455 
4da71b27b3fe
declare Spec_Rules for most basic definitional packages;
 wenzelm parents: 
33389diff
changeset | 217 | |
| 
4da71b27b3fe
declare Spec_Rules for most basic definitional packages;
 wenzelm parents: 
33389diff
changeset | 218 | val th = prove lthy2 raw_th; | 
| 
4da71b27b3fe
declare Spec_Rules for most basic definitional packages;
 wenzelm parents: 
33389diff
changeset | 219 | val lthy3 = lthy2 |> Spec_Rules.add Spec_Rules.Equational ([lhs], [th]); | 
| 
4da71b27b3fe
declare Spec_Rules for most basic definitional packages;
 wenzelm parents: 
33389diff
changeset | 220 | |
| 33670 
02b7738aef6a
eliminated slightly odd kind argument of LocalTheory.note(s);
 wenzelm parents: 
33644diff
changeset | 221 | val ([(def_name, [th'])], lthy4) = lthy3 | 
| 47080 | 222 | |> Local_Theory.notes [((name, Code.add_default_eqn_attrib :: atts), [([th], [])])]; | 
| 18786 | 223 | |
| 33671 | 224 | val lhs' = Morphism.term (Local_Theory.target_morphism lthy4) lhs; | 
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 225 | |
| 56932 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56897diff
changeset | 226 | val _ = | 
| 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56897diff
changeset | 227 | Proof_Display.print_consts int (Position.thread_data ()) lthy4 | 
| 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56897diff
changeset | 228 | (member (op =) (Term.add_frees lhs' [])) [(x, T)]; | 
| 33455 
4da71b27b3fe
declare Spec_Rules for most basic definitional packages;
 wenzelm parents: 
33389diff
changeset | 229 | in ((lhs, (def_name, th')), lthy4) end; | 
| 18786 | 230 | |
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 231 | val definition' = gen_def check_free_spec; | 
| 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 232 | fun definition spec = definition' spec false; | 
| 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 233 | val definition_cmd = gen_def read_free_spec; | 
| 18786 | 234 | |
| 19080 | 235 | |
| 236 | (* abbreviation *) | |
| 237 | ||
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 238 | fun gen_abbrev prep mode (raw_var, raw_prop) int lthy = | 
| 19080 | 239 | let | 
| 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: 
54883diff
changeset | 240 | val lthy1 = lthy | 
| 
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: 
54883diff
changeset | 241 | |> Proof_Context.set_syntax_mode mode; | 
| 30482 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 242 | val ((vars, [(_, prop)]), _) = | 
| 
6e3c92de4a7d
simplified versions check_spec, read_spec, check_free_spec, read_free_spec: operate on list of singleton statements;
 wenzelm parents: 
30472diff
changeset | 243 | prep (the_list raw_var) [(Attrib.empty_binding, raw_prop)] | 
| 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: 
54883diff
changeset | 244 | (lthy1 |> Proof_Context.set_mode Proof_Context.mode_abbrev); | 
| 
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: 
54883diff
changeset | 245 | val ((x, T), rhs) = Local_Defs.abs_def (#2 (Local_Defs.cert_def lthy1 prop)); | 
| 56169 
9b0dc5c704c9
reject internal names, notably from Term.free_dummy_patterns;
 wenzelm parents: 
56026diff
changeset | 246 | val _ = Name.reject_internal (x, []); | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 247 | val var = | 
| 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 248 | (case vars of | 
| 28965 | 249 | [] => (Binding.name x, NoSyn) | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 250 | | [((b, _), mx)] => | 
| 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 251 | let | 
| 42494 | 252 | val y = Variable.check_name b; | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 253 | val _ = x = y orelse | 
| 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 254 |               error ("Head of abbreviation " ^ quote x ^ " differs from declaration " ^ quote y ^
 | 
| 48992 | 255 | Position.here (Binding.pos_of b)); | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 256 | in (b, mx) end); | 
| 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: 
54883diff
changeset | 257 | val lthy2 = lthy1 | 
| 33671 | 258 | |> Local_Theory.abbrev mode (var, rhs) |> snd | 
| 42360 | 259 | |> Proof_Context.restore_syntax_mode lthy; | 
| 24724 
0df74bb87a13
read/check_specification: proper type inference across multiple sections, result is in closed form;
 wenzelm parents: 
24676diff
changeset | 260 | |
| 56932 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56897diff
changeset | 261 | 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: 
54883diff
changeset | 262 | in lthy2 end; | 
| 19080 | 263 | |
| 44192 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 264 | val abbreviation = gen_abbrev check_free_spec; | 
| 
a32ca9165928
less verbosity in batch mode -- spam reduction and notable performance improvement;
 wenzelm parents: 
43329diff
changeset | 265 | val abbreviation_cmd = gen_abbrev read_free_spec; | 
| 19080 | 266 | |
| 19664 | 267 | |
| 21230 
abfdce60b371
theorem statements: incorporate Obtain.statement, tuned;
 wenzelm parents: 
21206diff
changeset | 268 | (* notation *) | 
| 19664 | 269 | |
| 35413 | 270 | local | 
| 271 | ||
| 272 | fun gen_type_notation prep_type add mode args lthy = | |
| 273 | lthy |> Local_Theory.type_notation add mode (map (apfst (prep_type lthy)) args); | |
| 274 | ||
| 24949 | 275 | fun gen_notation prep_const add mode args lthy = | 
| 33671 | 276 | lthy |> Local_Theory.notation add mode (map (apfst (prep_const lthy)) args); | 
| 19664 | 277 | |
| 35413 | 278 | in | 
| 279 | ||
| 280 | val type_notation = gen_type_notation (K I); | |
| 55951 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55639diff
changeset | 281 | val type_notation_cmd = | 
| 56002 | 282 |   gen_type_notation (Proof_Context.read_type_name {proper = true, strict = false});
 | 
| 35413 | 283 | |
| 24927 
48e08f37ce92
Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
 wenzelm parents: 
24848diff
changeset | 284 | val notation = gen_notation (K I); | 
| 56002 | 285 | val notation_cmd = gen_notation (Proof_Context.read_const {proper = false, strict = false});
 | 
| 19664 | 286 | |
| 35413 | 287 | end; | 
| 288 | ||
| 20914 | 289 | |
| 21036 | 290 | (* fact statements *) | 
| 20914 | 291 | |
| 45600 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 292 | local | 
| 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 293 | |
| 60469 | 294 | 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: 
45584diff
changeset | 295 | kind raw_facts raw_fixes int lthy = | 
| 20914 | 296 | let | 
| 297 | 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: 
55955diff
changeset | 298 | ((name, map (prep_att lthy) atts), | 
| 
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
 wenzelm parents: 
55955diff
changeset | 299 | bs |> map (fn (b, more_atts) => (prep_fact lthy b, map (prep_att lthy) more_atts)))); | 
| 60469 | 300 | val (_, ctxt') = add_fixes raw_fixes lthy; | 
| 45600 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 301 | |
| 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 302 | val facts' = facts | 
| 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 303 | |> Attrib.partial_evaluation ctxt' | 
| 58028 
e4250d370657
tuned signature -- define some elementary operations earlier;
 wenzelm parents: 
58011diff
changeset | 304 | |> 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: 
45584diff
changeset | 305 | 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: 
56897diff
changeset | 306 | val _ = Proof_Display.print_results int (Position.thread_data ()) lthy' ((kind, ""), res); | 
| 20914 | 307 | in (res, lthy') end; | 
| 308 | ||
| 45600 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 309 | in | 
| 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 310 | |
| 60469 | 311 | val theorems = gen_theorems (K I) (K I) Proof_Context.add_fixes; | 
| 312 | 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: 
45584diff
changeset | 313 | |
| 
1bbbac9a0cb0
'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
 wenzelm parents: 
45584diff
changeset | 314 | end; | 
| 20914 | 315 | |
| 21036 | 316 | |
| 21230 
abfdce60b371
theorem statements: incorporate Obtain.statement, tuned;
 wenzelm parents: 
21206diff
changeset | 317 | (* complex goal statements *) | 
| 21036 | 318 | |
| 319 | local | |
| 320 | ||
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 321 | fun prep_statement prep_att prep_stmt raw_elems raw_stmt ctxt = | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 322 | let | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 323 | val (stmt, elems_ctxt) = prep_stmt raw_elems raw_stmt ctxt; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 324 | val prems = Assumption.local_prems_of elems_ctxt ctxt; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 325 | val stmt_ctxt = fold (fold (Variable.auto_fixes o fst) o snd) stmt elems_ctxt; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 326 | in | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 327 | (case raw_stmt of | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 328 | Element.Shows _ => | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 329 | let val stmt' = Attrib.map_specs (map prep_att) stmt | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 330 | in (([], prems, stmt', NONE), stmt_ctxt) end | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 331 | | Element.Obtains raw_obtains => | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 332 | let | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 333 | val asms_ctxt = stmt_ctxt | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 334 | |> fold (fn ((name, _), asm) => | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 335 | snd o Proof_Context.add_assms Assumption.assume_export | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 336 | [((name, [Context_Rules.intro_query NONE]), asm)]) stmt; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 337 | val that = Assumption.local_prems_of asms_ctxt stmt_ctxt; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 338 | val ([(_, that')], that_ctxt) = asms_ctxt | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 339 | |> Proof_Context.note_thmss "" [((Binding.name Auto_Bind.thatN, []), [(that, [])])]; | 
| 21036 | 340 | |
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 341 | val more_atts = map (Attrib.internal o K) (Obtain.obtains_attributes raw_obtains); | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 342 | val stmt' = [((Binding.empty, []), [(#2 (#1 (Obtain.obtain_thesis ctxt)), [])])]; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 343 | in ((more_atts, prems, stmt', SOME that'), that_ctxt) end) | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60469diff
changeset | 344 | end; | 
| 21036 | 345 | |
| 56026 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 346 | fun gen_theorem schematic bundle_includes prep_att prep_stmt | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 347 | kind before_qed after_qed (name, raw_atts) raw_includes raw_elems raw_concl int lthy = | 
| 21036 | 348 | let | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47021diff
changeset | 349 | val _ = Local_Theory.assert lthy; | 
| 21036 | 350 | |
| 55997 
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
 wenzelm parents: 
55955diff
changeset | 351 | val elems = raw_elems |> map (Element.map_ctxt_attrib (prep_att lthy)); | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 352 | val ((more_atts, prems, stmt, facts), goal_ctxt) = lthy | 
| 56026 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 353 | |> bundle_includes raw_includes | 
| 55997 
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
 wenzelm parents: 
55955diff
changeset | 354 | |> 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: 
55955diff
changeset | 355 | val atts = more_atts @ map (prep_att lthy) raw_atts; | 
| 21036 | 356 | |
| 56932 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56897diff
changeset | 357 | val pos = Position.thread_data (); | 
| 21036 | 358 | fun after_qed' results goal_ctxt' = | 
| 45584 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 359 | let | 
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
51313diff
changeset | 360 | val results' = | 
| 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
51313diff
changeset | 361 | 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: 
45583diff
changeset | 362 | val (res, lthy') = | 
| 49062 
7e31dfd99ce7
discontinued complicated/unreliable notion of recent proofs within context;
 wenzelm parents: 
49059diff
changeset | 363 | if forall (Attrib.is_empty_binding o fst) stmt then (map (pair "") results', lthy) | 
| 45584 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 364 | else | 
| 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 365 | Local_Theory.notes_kind kind | 
| 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 366 | (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: 
45583diff
changeset | 367 | val lthy'' = | 
| 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 368 | if Attrib.is_empty_binding (name, atts) then | 
| 56932 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56897diff
changeset | 369 | (Proof_Display.print_results int pos lthy' ((kind, ""), res); lthy') | 
| 28080 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 370 | else | 
| 
4723eb2456ce
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
27858diff
changeset | 371 | let | 
| 45584 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 372 | val ([(res_name, _)], lthy'') = | 
| 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 373 | 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: 
56897diff
changeset | 374 | 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: 
45583diff
changeset | 375 | in lthy'' end; | 
| 
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
 wenzelm parents: 
45583diff
changeset | 376 | in after_qed results' lthy'' end; | 
| 21036 | 377 | in | 
| 378 | goal_ctxt | |
| 42360 | 379 | |> Proof_Context.note_thmss "" [((Binding.name Auto_Bind.assmsN, []), [(prems, [])])] | 
| 21450 | 380 | |> snd | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36317diff
changeset | 381 | |> 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: 
32786diff
changeset | 382 | |> (case facts of NONE => I | SOME ths => Proof.refine_insert ths) | 
| 36317 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 383 | |> tap (fn state => not schematic andalso Proof.schematic_goal state andalso | 
| 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 384 | error "Illegal schematic goal statement") | 
| 21036 | 385 | end; | 
| 386 | ||
| 21230 
abfdce60b371
theorem statements: incorporate Obtain.statement, tuned;
 wenzelm parents: 
21206diff
changeset | 387 | in | 
| 
abfdce60b371
theorem statements: incorporate Obtain.statement, tuned;
 wenzelm parents: 
21206diff
changeset | 388 | |
| 56026 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 389 | val theorem = | 
| 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 390 | gen_theorem false Bundle.includes (K I) Expression.cert_statement; | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 391 | val theorem_cmd = | 
| 56026 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 392 | gen_theorem false Bundle.includes_cmd Attrib.check_src Expression.read_statement; | 
| 36317 
506d732cb522
explicit 'schematic_theorem' etc. for schematic theorem statements;
 wenzelm parents: 
36106diff
changeset | 393 | |
| 56026 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 394 | val schematic_theorem = | 
| 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 395 | gen_theorem true Bundle.includes (K I) Expression.cert_statement; | 
| 47067 
4ef29b0c568f
optional 'includes' element for long theorem statements;
 wenzelm parents: 
47066diff
changeset | 396 | val schematic_theorem_cmd = | 
| 56026 
893fe12639bc
tuned signature -- prefer Name_Space.get with its builtin error;
 wenzelm parents: 
56002diff
changeset | 397 | gen_theorem true Bundle.includes_cmd Attrib.check_src Expression.read_statement; | 
| 21036 | 398 | |
| 18620 
fc8b5f275359
Theory specifications --- with type-inference, but no internal polymorphism.
 wenzelm parents: diff
changeset | 399 | end; | 
| 21036 | 400 | |
| 401 | end; |