author | wenzelm |
Wed, 15 Feb 2006 21:35:11 +0100 | |
changeset 19061 | ffbbac0261c9 |
parent 19025 | 596fb1eb7856 |
child 19276 | ac90764bb654 |
permissions | -rw-r--r-- |
12014 | 1 |
(* Title: Pure/Isar/locale.ML |
11896 | 2 |
ID: $Id$ |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
3 |
Author: Clemens Ballarin, TU Muenchen; Markus Wenzel, LMU/TU Muenchen |
11896 | 4 |
|
12058 | 5 |
Locales -- Isar proof contexts as meta-level predicates, with local |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
6 |
syntax and implicit structures. |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
7 |
|
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
8 |
Draws some basic ideas from Florian Kammueller's original version of |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
9 |
locales, but uses the richer infrastructure of Isar instead of the raw |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
10 |
meta-logic. Furthermore, we provide structured import of contexts |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
11 |
(with merge and rename operations), as well as type-inference of the |
13375 | 12 |
signature parts, and predicate definitions of the specification text. |
14446 | 13 |
|
17437 | 14 |
Interpretation enables the reuse of theorems of locales in other |
15 |
contexts, namely those defined by theories, structured proofs and |
|
16 |
locales themselves. |
|
17 |
||
14446 | 18 |
See also: |
19 |
||
20 |
[1] Clemens Ballarin. Locales and Locale Expressions in Isabelle/Isar. |
|
21 |
In Stefano Berardi et al., Types for Proofs and Programs: International |
|
15099 | 22 |
Workshop, TYPES 2003, Torino, Italy, LNCS 3085, pages 34-50, 2004. |
11896 | 23 |
*) |
24 |
||
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
25 |
(* TODO: |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
26 |
- beta-eta normalisation of interpretation parameters |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
27 |
- dangling type frees in locales |
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
28 |
- test subsumption of interpretations when merging theories |
17138 | 29 |
- var vs. fixes in locale to be interpreted (interpretation in locale) |
30 |
(implicit locale expressions generated by multiple registrations) |
|
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
31 |
*) |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
32 |
|
11896 | 33 |
signature LOCALE = |
34 |
sig |
|
12273 | 35 |
datatype expr = |
36 |
Locale of string | |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
37 |
Rename of expr * (string * mixfix option) option list | |
12273 | 38 |
Merge of expr list |
39 |
val empty: expr |
|
18137 | 40 |
datatype 'a element = Elem of 'a | Expr of expr |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
41 |
|
16458 | 42 |
val intern: theory -> xstring -> string |
43 |
val extern: theory -> string -> xstring |
|
18806 | 44 |
val init: string -> theory -> cterm list * Proof.context |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
45 |
|
18795
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
46 |
(* The specification of a locale *) |
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
47 |
|
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
48 |
val parameters_of: theory -> string -> |
18917 | 49 |
((string * typ) * mixfix) list |
18795
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
50 |
val local_asms_of: theory -> string -> |
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
51 |
((string * Attrib.src list) * term list) list |
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
52 |
val global_asms_of: theory -> string -> |
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
53 |
((string * Attrib.src list) * term list) list |
303793f49b0f
Interface to access the specification of a named locale.
ballarin
parents:
18782
diff
changeset
|
54 |
|
18899
a8e913c93578
theorem(_in_locale): Element.statement, Obtain.statement;
wenzelm
parents:
18890
diff
changeset
|
55 |
(* Processing of locale statements *) |
18137 | 56 |
val read_context_statement: xstring option -> Element.context element list -> |
18617 | 57 |
(string * (string list * string list)) list list -> Proof.context -> |
18806 | 58 |
string option * (cterm list * Proof.context) * (cterm list * Proof.context) * |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
59 |
(term * (term list * term list)) list list |
18137 | 60 |
val cert_context_statement: string option -> Element.context_i element list -> |
18617 | 61 |
(term * (term list * term list)) list list -> Proof.context -> |
18806 | 62 |
string option * (cterm list * Proof.context) * (cterm list * Proof.context) * |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
63 |
(term * (term list * term list)) list list |
15596 | 64 |
|
65 |
(* Diagnostic functions *) |
|
12758 | 66 |
val print_locales: theory -> unit |
18137 | 67 |
val print_locale: theory -> bool -> expr -> Element.context list -> unit |
17138 | 68 |
val print_global_registrations: bool -> string -> theory -> unit |
18617 | 69 |
val print_local_registrations': bool -> string -> Proof.context -> unit |
70 |
val print_local_registrations: bool -> string -> Proof.context -> unit |
|
18137 | 71 |
|
18917 | 72 |
val add_locale: bool -> bstring -> expr -> Element.context list -> theory |
19061
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
73 |
-> Proof.context (*body context!*) * theory |
18917 | 74 |
val add_locale_i: bool -> bstring -> expr -> Element.context_i list -> theory |
19061
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
75 |
-> Proof.context (*body context!*) * theory |
15596 | 76 |
|
15696 | 77 |
(* Storing results *) |
15703 | 78 |
val note_thmss: string -> xstring -> |
18806 | 79 |
((string * Attrib.src list) * (thmref * Attrib.src list) list) list -> |
80 |
theory -> ((string * thm list) list * (string * thm list) list) * (Proof.context * theory) |
|
15703 | 81 |
val note_thmss_i: string -> string -> |
18806 | 82 |
((string * Attrib.src list) * (thm list * Attrib.src list) list) list -> |
83 |
theory -> ((string * thm list) list * (string * thm list) list) * (Proof.context * theory) |
|
84 |
val add_thmss: string -> string -> |
|
85 |
((string * Attrib.src list) * (thm list * Attrib.src list) list) list -> |
|
86 |
cterm list * Proof.context -> |
|
87 |
((string * thm list) list * (string * thm list) list) * Proof.context |
|
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
88 |
val add_abbrevs: string -> bool -> (bstring * term * mixfix) list -> |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
89 |
cterm list * Proof.context -> Proof.context |
18137 | 90 |
|
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
91 |
val theorem: string -> Method.text option -> (thm list list -> theory -> theory) -> |
18899
a8e913c93578
theorem(_in_locale): Element.statement, Obtain.statement;
wenzelm
parents:
18890
diff
changeset
|
92 |
string * Attrib.src list -> Element.context element list -> Element.statement -> |
17355 | 93 |
theory -> Proof.state |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
94 |
val theorem_i: string -> Method.text option -> (thm list list -> theory -> theory) -> |
18907 | 95 |
string * Attrib.src list -> Element.context_i element list -> Element.statement_i -> |
17355 | 96 |
theory -> Proof.state |
17856 | 97 |
val theorem_in_locale: string -> Method.text option -> |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
98 |
(thm list list -> thm list list -> theory -> theory) -> |
18899
a8e913c93578
theorem(_in_locale): Element.statement, Obtain.statement;
wenzelm
parents:
18890
diff
changeset
|
99 |
xstring -> string * Attrib.src list -> Element.context element list -> Element.statement -> |
17355 | 100 |
theory -> Proof.state |
17856 | 101 |
val theorem_in_locale_i: string -> Method.text option -> |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
102 |
(thm list list -> thm list list -> theory -> theory) -> |
18137 | 103 |
string -> string * Attrib.src list -> Element.context_i element list -> |
18907 | 104 |
Element.statement_i -> theory -> Proof.state |
17355 | 105 |
val smart_theorem: string -> xstring option -> |
18899
a8e913c93578
theorem(_in_locale): Element.statement, Obtain.statement;
wenzelm
parents:
18890
diff
changeset
|
106 |
string * Attrib.src list -> Element.context element list -> Element.statement -> |
17355 | 107 |
theory -> Proof.state |
108 |
val interpretation: string * Attrib.src list -> expr -> string option list -> |
|
109 |
theory -> Proof.state |
|
110 |
val interpretation_in_locale: xstring * expr -> theory -> Proof.state |
|
111 |
val interpret: string * Attrib.src list -> expr -> string option list -> |
|
112 |
bool -> Proof.state -> Proof.state |
|
11896 | 113 |
end; |
12839 | 114 |
|
12289 | 115 |
structure Locale: LOCALE = |
11896 | 116 |
struct |
117 |
||
12273 | 118 |
(** locale elements and expressions **) |
11896 | 119 |
|
18137 | 120 |
datatype ctxt = datatype Element.ctxt; |
17355 | 121 |
|
12273 | 122 |
datatype expr = |
123 |
Locale of string | |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
124 |
Rename of expr * (string * mixfix option) option list | |
12273 | 125 |
Merge of expr list; |
11896 | 126 |
|
12273 | 127 |
val empty = Merge []; |
128 |
||
18137 | 129 |
datatype 'a element = |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
130 |
Elem of 'a | Expr of expr; |
12273 | 131 |
|
18137 | 132 |
fun map_elem f (Elem e) = Elem (f e) |
133 |
| map_elem _ (Expr e) = Expr e; |
|
134 |
||
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
135 |
type witness = term * thm; (*hypothesis as fact*) |
12070 | 136 |
type locale = |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
137 |
{predicate: cterm list * witness list, |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
138 |
(* CB: For locales with "(open)" this entry is ([], []). |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
139 |
For new-style locales, which declare predicates, if the locale declares |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
140 |
no predicates, this is also ([], []). |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
141 |
If the locale declares predicates, the record field is |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
142 |
([statement], axioms), where statement is the locale predicate applied |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
143 |
to the (assumed) locale parameters. Axioms contains the projections |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
144 |
from the locale predicate to the normalised assumptions of the locale |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
145 |
(cf. [1], normalisation of locale expressions.) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
146 |
*) |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
147 |
import: expr, (*dynamic import*) |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
148 |
elems: (Element.context_i * stamp) list, (*static content*) |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
149 |
params: ((string * typ) * mixfix) list * string list, (*all/local params*) |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
150 |
abbrevs: ((bool * (bstring * term * mixfix) list) * stamp) list, (*abbreviations*) |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
151 |
regs: ((string * string list) * (term * thm) list) list} |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
152 |
(* Registrations: indentifiers and witness theorems of locales interpreted |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
153 |
in the locale. |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
154 |
*) |
12063 | 155 |
|
11896 | 156 |
|
15703 | 157 |
(* CB: an internal (Int) locale element was either imported or included, |
158 |
an external (Ext) element appears directly in the locale text. *) |
|
159 |
||
160 |
datatype ('a, 'b) int_ext = Int of 'a | Ext of 'b; |
|
161 |
||
162 |
||
163 |
||
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
164 |
(** management of registrations in theories and proof contexts **) |
11896 | 165 |
|
15837 | 166 |
structure Registrations : |
167 |
sig |
|
168 |
type T |
|
169 |
val empty: T |
|
170 |
val join: T * T -> T |
|
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
171 |
val dest: T -> (term list * ((string * Attrib.src list) * witness list)) list |
16458 | 172 |
val lookup: theory -> T * term list -> |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
173 |
((string * Attrib.src list) * witness list) option |
16458 | 174 |
val insert: theory -> term list * (string * Attrib.src list) -> T -> |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
175 |
T * (term list * ((string * Attrib.src list) * witness list)) list |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
176 |
val add_witness: term list -> witness -> T -> T |
15837 | 177 |
end = |
178 |
struct |
|
179 |
(* a registration consists of theorems instantiating locale assumptions |
|
180 |
and prefix and attributes, indexed by parameter instantiation *) |
|
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
181 |
type T = ((string * Attrib.src list) * witness list) Termtab.table; |
15837 | 182 |
|
183 |
val empty = Termtab.empty; |
|
184 |
||
185 |
(* term list represented as single term, for simultaneous matching *) |
|
186 |
fun termify ts = |
|
18343 | 187 |
Term.list_comb (Const ("", map fastype_of ts ---> propT), ts); |
15837 | 188 |
fun untermify t = |
189 |
let fun ut (Const _) ts = ts |
|
190 |
| ut (s $ t) ts = ut s (t::ts) |
|
191 |
in ut t [] end; |
|
192 |
||
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
193 |
(* joining of registrations: prefix and attributes of left theory, |
15837 | 194 |
thms are equal, no attempt to subsumption testing *) |
19025 | 195 |
fun join (r1, r2) = Termtab.join (fn _ => fn (reg, _) => reg) (r1, r2); |
15837 | 196 |
|
197 |
fun dest regs = map (apfst untermify) (Termtab.dest regs); |
|
198 |
||
199 |
(* registrations that subsume t *) |
|
17203 | 200 |
fun subsumers thy t regs = |
201 |
List.filter (fn (t', _) => Pattern.matches thy (t', t)) (Termtab.dest regs); |
|
15837 | 202 |
|
203 |
(* look up registration, pick one that subsumes the query *) |
|
204 |
fun lookup sign (regs, ts) = |
|
205 |
let |
|
206 |
val t = termify ts; |
|
17203 | 207 |
val subs = subsumers sign t regs; |
15837 | 208 |
in (case subs of |
209 |
[] => NONE |
|
210 |
| ((t', (attn, thms)) :: _) => let |
|
18190 | 211 |
val (tinst, inst) = Pattern.match sign (t', t) (Vartab.empty, Vartab.empty); |
15837 | 212 |
(* thms contain Frees, not Vars *) |
213 |
val tinst' = tinst |> Vartab.dest |
|
214 |
|> map (fn ((x, 0), (_, T)) => (x, Type.unvarifyT T)) |
|
215 |
|> Symtab.make; |
|
216 |
val inst' = inst |> Vartab.dest |
|
217 |
|> map (fn ((x, 0), (_, t)) => (x, Logic.unvarify t)) |
|
218 |
|> Symtab.make; |
|
219 |
in |
|
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
220 |
SOME (attn, map (fn (t, th) => |
18137 | 221 |
(Element.inst_term (tinst', inst') t, |
222 |
Element.inst_thm sign (tinst', inst') th)) thms) |
|
15837 | 223 |
end) |
224 |
end; |
|
225 |
||
226 |
(* add registration if not subsumed by ones already present, |
|
227 |
additionally returns registrations that are strictly subsumed *) |
|
228 |
fun insert sign (ts, attn) regs = |
|
229 |
let |
|
230 |
val t = termify ts; |
|
17203 | 231 |
val subs = subsumers sign t regs ; |
15837 | 232 |
in (case subs of |
233 |
[] => let |
|
234 |
val sups = |
|
17203 | 235 |
List.filter (fn (t', _) => Pattern.matches sign (t, t')) (Termtab.dest regs); |
15837 | 236 |
val sups' = map (apfst untermify) sups |
17412 | 237 |
in (Termtab.update (t, (attn, [])) regs, sups') end |
15837 | 238 |
| _ => (regs, [])) |
239 |
end; |
|
240 |
||
241 |
(* add witness theorem to registration, |
|
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
242 |
only if instantiation is exact, otherwise exception Option raised *) |
15837 | 243 |
fun add_witness ts thm regs = |
244 |
let |
|
245 |
val t = termify ts; |
|
18343 | 246 |
val (x, thms) = the (Termtab.lookup regs t); |
15837 | 247 |
in |
17412 | 248 |
Termtab.update (t, (x, thm::thms)) regs |
15837 | 249 |
end; |
250 |
end; |
|
251 |
||
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
252 |
|
15837 | 253 |
(** theory data **) |
15596 | 254 |
|
16458 | 255 |
structure GlobalLocalesData = TheoryDataFun |
256 |
(struct |
|
12014 | 257 |
val name = "Isar/locales"; |
15837 | 258 |
type T = NameSpace.T * locale Symtab.table * Registrations.T Symtab.table; |
15596 | 259 |
(* 1st entry: locale namespace, |
260 |
2nd entry: locales of the theory, |
|
15837 | 261 |
3rd entry: registrations, indexed by locale name *) |
11896 | 262 |
|
15596 | 263 |
val empty = (NameSpace.empty, Symtab.empty, Symtab.empty); |
12063 | 264 |
val copy = I; |
16458 | 265 |
val extend = I; |
12289 | 266 |
|
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
267 |
fun join_locs _ ({predicate, import, elems, params, abbrevs, regs}: locale, |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
268 |
{elems = elems', abbrevs = abbrevs', regs = regs', ...}: locale) = |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
269 |
{predicate = predicate, |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
270 |
import = import, |
17496 | 271 |
elems = gen_merge_lists (eq_snd (op =)) elems elems', |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
272 |
params = params, |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
273 |
abbrevs = Library.merge (eq_snd (op =)) (abbrevs, abbrevs'), |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
274 |
regs = merge_alists regs regs'}; |
16458 | 275 |
fun merge _ ((space1, locs1, regs1), (space2, locs2, regs2)) = |
15596 | 276 |
(NameSpace.merge (space1, space2), Symtab.join join_locs (locs1, locs2), |
19025 | 277 |
Symtab.join (K Registrations.join) (regs1, regs2)); |
12289 | 278 |
|
15596 | 279 |
fun print _ (space, locs, _) = |
16346 | 280 |
Pretty.strs ("locales:" :: map #1 (NameSpace.extern_table (space, locs))) |
12014 | 281 |
|> Pretty.writeln; |
16458 | 282 |
end); |
11896 | 283 |
|
18708 | 284 |
val _ = Context.add_setup GlobalLocalesData.init; |
15801 | 285 |
|
286 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
287 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
288 |
(** context data **) |
11896 | 289 |
|
16458 | 290 |
structure LocalLocalesData = ProofDataFun |
291 |
(struct |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
292 |
val name = "Isar/locales"; |
15837 | 293 |
type T = Registrations.T Symtab.table; |
294 |
(* registrations, indexed by locale name *) |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
295 |
fun init _ = Symtab.empty; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
296 |
fun print _ _ = (); |
16458 | 297 |
end); |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
298 |
|
18708 | 299 |
val _ = Context.add_setup LocalLocalesData.init; |
12289 | 300 |
|
12277 | 301 |
|
302 |
(* access locales *) |
|
303 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
304 |
val print_locales = GlobalLocalesData.print; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
305 |
|
16458 | 306 |
val intern = NameSpace.intern o #1 o GlobalLocalesData.get; |
307 |
val extern = NameSpace.extern o #1 o GlobalLocalesData.get; |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
308 |
|
16144 | 309 |
fun declare_locale name thy = |
310 |
thy |> GlobalLocalesData.map (fn (space, locs, regs) => |
|
16458 | 311 |
(Sign.declare_name thy name space, locs, regs)); |
11896 | 312 |
|
15596 | 313 |
fun put_locale name loc = |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
314 |
GlobalLocalesData.map (fn (space, locs, regs) => |
17412 | 315 |
(space, Symtab.update (name, loc) locs, regs)); |
316 |
||
317 |
fun get_locale thy name = Symtab.lookup (#2 (GlobalLocalesData.get thy)) name; |
|
11896 | 318 |
|
12014 | 319 |
fun the_locale thy name = |
320 |
(case get_locale thy name of |
|
15531 | 321 |
SOME loc => loc |
322 |
| NONE => error ("Unknown locale " ^ quote name)); |
|
11896 | 323 |
|
18806 | 324 |
fun change_locale name f thy = |
325 |
let |
|
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
326 |
val {predicate, import, elems , params, abbrevs, regs} = the_locale thy name; |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
327 |
val (predicate', import', elems', params', abbrevs', regs') = |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
328 |
f (predicate, import, elems, params, abbrevs, regs); |
18806 | 329 |
in |
330 |
put_locale name {predicate = predicate', import = import', elems = elems', |
|
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
331 |
params = params', abbrevs = abbrevs', regs = regs'} thy |
18806 | 332 |
end; |
333 |
||
12046 | 334 |
|
15596 | 335 |
(* access registrations *) |
336 |
||
15696 | 337 |
(* Ids of global registrations are varified, |
338 |
Ids of local registrations are not. |
|
339 |
Thms of registrations are never varified. *) |
|
340 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
341 |
(* retrieve registration from theory or context *) |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
342 |
|
15696 | 343 |
fun gen_get_registrations get thy_ctxt name = |
17412 | 344 |
case Symtab.lookup (get thy_ctxt) name of |
15696 | 345 |
NONE => [] |
15837 | 346 |
| SOME reg => Registrations.dest reg; |
15696 | 347 |
|
348 |
val get_global_registrations = |
|
349 |
gen_get_registrations (#3 o GlobalLocalesData.get); |
|
350 |
val get_local_registrations = |
|
351 |
gen_get_registrations LocalLocalesData.get; |
|
352 |
||
16458 | 353 |
fun gen_get_registration get thy_of thy_ctxt (name, ps) = |
17412 | 354 |
case Symtab.lookup (get thy_ctxt) name of |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
355 |
NONE => NONE |
16458 | 356 |
| SOME reg => Registrations.lookup (thy_of thy_ctxt) (reg, ps); |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
357 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
358 |
val get_global_registration = |
16458 | 359 |
gen_get_registration (#3 o GlobalLocalesData.get) I; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
360 |
val get_local_registration = |
16458 | 361 |
gen_get_registration LocalLocalesData.get ProofContext.theory_of; |
15596 | 362 |
|
18343 | 363 |
val test_global_registration = is_some oo get_global_registration; |
364 |
val test_local_registration = is_some oo get_local_registration; |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
365 |
fun smart_test_registration ctxt id = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
366 |
let |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
367 |
val thy = ProofContext.theory_of ctxt; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
368 |
in |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
369 |
test_global_registration thy id orelse test_local_registration ctxt id |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
370 |
end; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
371 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
372 |
|
15837 | 373 |
(* add registration to theory or context, ignored if subsumed *) |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
374 |
|
16458 | 375 |
fun gen_put_registration map_data thy_of (name, ps) attn thy_ctxt = |
15837 | 376 |
map_data (fn regs => |
377 |
let |
|
16458 | 378 |
val thy = thy_of thy_ctxt; |
18343 | 379 |
val reg = the_default Registrations.empty (Symtab.lookup regs name); |
16458 | 380 |
val (reg', sups) = Registrations.insert thy (ps, attn) reg; |
15837 | 381 |
val _ = if not (null sups) then warning |
382 |
("Subsumed interpretation(s) of locale " ^ |
|
16458 | 383 |
quote (extern thy name) ^ |
15837 | 384 |
"\nby interpretation(s) with the following prefix(es):\n" ^ |
385 |
commas_quote (map (fn (_, ((s, _), _)) => s) sups)) |
|
386 |
else (); |
|
17412 | 387 |
in Symtab.update (name, reg') regs end) thy_ctxt; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
388 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
389 |
val put_global_registration = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
390 |
gen_put_registration (fn f => |
16458 | 391 |
GlobalLocalesData.map (fn (space, locs, regs) => (space, locs, f regs))) I; |
15837 | 392 |
val put_local_registration = |
16458 | 393 |
gen_put_registration LocalLocalesData.map ProofContext.theory_of; |
15596 | 394 |
|
18806 | 395 |
fun put_registration_in_locale name id = |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
396 |
change_locale name (fn (predicate, import, elems, params, abbrevs, regs) => |
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
397 |
(predicate, import, elems, params, abbrevs, regs @ [(id, [])])); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
398 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
399 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
400 |
(* add witness theorem to registration in theory or context, |
15596 | 401 |
ignored if registration not present *) |
402 |
||
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
403 |
fun add_witness (name, ps) thm = |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
404 |
Symtab.map_entry name (Registrations.add_witness ps thm); |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
405 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
406 |
fun add_global_witness id thm = |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
407 |
GlobalLocalesData.map (fn (space, locs, regs) => (space, locs, add_witness id thm regs)); |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
408 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
409 |
val add_local_witness = LocalLocalesData.map oo add_witness; |
15596 | 410 |
|
18806 | 411 |
fun add_witness_in_locale name id thm = |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
412 |
change_locale name (fn (predicate, import, elems, params, abbrevs, regs) => |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
413 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
414 |
fun add (id', thms) = |
18806 | 415 |
if id = id' then (id', thm :: thms) else (id', thms); |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
416 |
in (predicate, import, elems, params, abbrevs, map add regs) end); |
15596 | 417 |
|
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
418 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
419 |
(* printing of registrations *) |
15596 | 420 |
|
17138 | 421 |
fun gen_print_registrations get_regs mk_ctxt msg show_wits loc thy_ctxt = |
15596 | 422 |
let |
15703 | 423 |
val ctxt = mk_ctxt thy_ctxt; |
424 |
val thy = ProofContext.theory_of ctxt; |
|
425 |
||
426 |
val prt_term = Pretty.quote o ProofContext.pretty_term ctxt; |
|
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
427 |
fun prt_inst ts = |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
428 |
Pretty.enclose "(" ")" (Pretty.breaks (map prt_term ts)); |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
429 |
fun prt_attn (prfx, atts) = |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
430 |
Pretty.breaks (Pretty.str prfx :: Args.pretty_attribs ctxt atts); |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
431 |
fun prt_thm (_, th) = Pretty.quote (ProofContext.pretty_thm ctxt th); |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
432 |
fun prt_thms thms = |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
433 |
Pretty.enclose "[" "]" (Pretty.breaks (map prt_thm thms)); |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
434 |
fun prt_reg (ts, (("", []), thms)) = |
17138 | 435 |
if show_wits |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
436 |
then Pretty.block [prt_inst ts, Pretty.fbrk, prt_thms thms] |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
437 |
else prt_inst ts |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
438 |
| prt_reg (ts, (attn, thms)) = |
17138 | 439 |
if show_wits |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
440 |
then Pretty.block ((prt_attn attn @ |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
441 |
[Pretty.str ":", Pretty.brk 1, prt_inst ts, Pretty.fbrk, |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
442 |
prt_thms thms])) |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
443 |
else Pretty.block ((prt_attn attn @ |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
444 |
[Pretty.str ":", Pretty.brk 1, prt_inst ts])); |
15703 | 445 |
|
16458 | 446 |
val loc_int = intern thy loc; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
447 |
val regs = get_regs thy_ctxt; |
17412 | 448 |
val loc_regs = Symtab.lookup regs loc_int; |
15596 | 449 |
in |
450 |
(case loc_regs of |
|
17355 | 451 |
NONE => Pretty.str ("no interpretations in " ^ msg) |
15763
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
452 |
| SOME r => let |
15837 | 453 |
val r' = Registrations.dest r; |
15763
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
454 |
val r'' = Library.sort_wrt (fn (_, ((prfx, _), _)) => prfx) r'; |
17355 | 455 |
in Pretty.big_list ("interpretations in " ^ msg ^ ":") |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
456 |
(map prt_reg r'') |
15763
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
457 |
end) |
15596 | 458 |
|> Pretty.writeln |
459 |
end; |
|
460 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
461 |
val print_global_registrations = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
462 |
gen_print_registrations (#3 o GlobalLocalesData.get) |
15703 | 463 |
ProofContext.init "theory"; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
464 |
val print_local_registrations' = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
465 |
gen_print_registrations LocalLocalesData.get |
15703 | 466 |
I "context"; |
17138 | 467 |
fun print_local_registrations show_wits loc ctxt = |
468 |
(print_global_registrations show_wits loc (ProofContext.theory_of ctxt); |
|
469 |
print_local_registrations' show_wits loc ctxt); |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
470 |
|
15596 | 471 |
|
12277 | 472 |
(* diagnostics *) |
12273 | 473 |
|
12277 | 474 |
fun err_in_locale ctxt msg ids = |
475 |
let |
|
16458 | 476 |
val thy = ProofContext.theory_of ctxt; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
477 |
fun prt_id (name, parms) = |
16458 | 478 |
[Pretty.block (Pretty.breaks (map Pretty.str (extern thy name :: parms)))]; |
15570 | 479 |
val prt_ids = List.concat (separate [Pretty.str " +", Pretty.brk 1] (map prt_id ids)); |
12502 | 480 |
val err_msg = |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
481 |
if forall (equal "" o #1) ids then msg |
12502 | 482 |
else msg ^ "\n" ^ Pretty.string_of (Pretty.block |
483 |
(Pretty.str "The error(s) above occurred in locale:" :: Pretty.brk 1 :: prt_ids)); |
|
18678 | 484 |
in error err_msg end; |
12063 | 485 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
486 |
fun err_in_locale' ctxt msg ids' = err_in_locale ctxt msg (map fst ids'); |
12277 | 487 |
|
488 |
||
12046 | 489 |
|
18137 | 490 |
(** witnesses -- protected facts **) |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
491 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
492 |
fun assume_protected thy t = |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
493 |
(t, Goal.protect (Thm.assume (Thm.cterm_of thy t))); |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
494 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
495 |
fun prove_protected thy t tac = |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
496 |
(t, Goal.prove thy [] [] (Logic.protect t) (fn _ => |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
497 |
Tactic.rtac Drule.protectI 1 THEN tac)); |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
498 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
499 |
val conclude_protected = Goal.conclude #> Goal.norm_hhf; |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
500 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
501 |
fun satisfy_protected pths thm = |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
502 |
let |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
503 |
fun satisfy chyp = |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
504 |
(case find_first (fn (t, _) => Thm.term_of chyp aconv t) pths of |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
505 |
NONE => I |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
506 |
| SOME (_, th) => Drule.implies_intr_protected [chyp] #> Goal.comp_hhf th); |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
507 |
in fold satisfy (#hyps (Thm.crep_thm thm)) thm end; |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
508 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
509 |
|
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
510 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
511 |
(** structured contexts: rename + merge + implicit type instantiation **) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
512 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
513 |
(* parameter types *) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
514 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
515 |
fun frozen_tvars ctxt Ts = |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
516 |
let |
16861 | 517 |
val tvars = rev (fold Term.add_tvarsT Ts []); |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
518 |
val tfrees = map TFree |
14695 | 519 |
(Term.invent_names (ProofContext.used_types ctxt) "'a" (length tvars) ~~ map #2 tvars); |
18343 | 520 |
in map (fn ((xi, S), T) => (xi, (S, T))) (tvars ~~ tfrees) end; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
521 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
522 |
fun unify_frozen ctxt maxidx Ts Us = |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
523 |
let |
18343 | 524 |
fun paramify NONE i = (NONE, i) |
525 |
| paramify (SOME T) i = apfst SOME (TypeInfer.paramify_dummies T i); |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
526 |
|
18343 | 527 |
val (Ts', maxidx') = fold_map paramify Ts maxidx; |
528 |
val (Us', maxidx'') = fold_map paramify Us maxidx'; |
|
16947 | 529 |
val thy = ProofContext.theory_of ctxt; |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
530 |
|
18190 | 531 |
fun unify (SOME T, SOME U) env = (Sign.typ_unify thy (U, T) env |
532 |
handle Type.TUNIFY => raise TYPE ("unify_frozen: failed to unify types", [U, T], [])) |
|
533 |
| unify _ env = env; |
|
534 |
val (unifier, _) = fold unify (Ts' ~~ Us') (Vartab.empty, maxidx''); |
|
15570 | 535 |
val Vs = map (Option.map (Envir.norm_type unifier)) Us'; |
536 |
val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (List.mapPartial I Vs)); |
|
537 |
in map (Option.map (Envir.norm_type unifier')) Vs end; |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
538 |
|
19061
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
539 |
fun params_of elemss = distinct (eq_fst (op =)) (List.concat (map (snd o fst) elemss)); |
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
540 |
fun params_of' elemss = distinct (eq_fst (op =)) (List.concat (map (snd o fst o fst) elemss)); |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
541 |
fun params_syn_of syn elemss = |
19061
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
542 |
distinct (eq_fst (op =)) (List.concat (map (snd o fst) elemss)) |> |
18343 | 543 |
map (apfst (fn x => (x, the (Symtab.lookup syn x)))); |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
544 |
|
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
545 |
|
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
546 |
(* CB: param_types has the following type: |
15531 | 547 |
('a * 'b option) list -> ('a * 'b) list *) |
15570 | 548 |
fun param_types ps = List.mapPartial (fn (_, NONE) => NONE | (x, SOME T) => SOME (x, T)) ps; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
549 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
550 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
551 |
fun merge_syntax ctxt ids ss = Symtab.merge (op =) ss |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
552 |
handle Symtab.DUPS xs => err_in_locale ctxt |
16105 | 553 |
("Conflicting syntax for parameter(s): " ^ commas_quote xs) (map fst ids); |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
554 |
|
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
555 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
556 |
(* Distinction of assumed vs. derived identifiers. |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
557 |
The former may have axioms relating assumptions of the context to |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
558 |
assumptions of the specification fragment (for locales with |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
559 |
predicates). The latter have witness theorems relating assumptions of the |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
560 |
specification fragment to assumptions of other (assumed) specification |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
561 |
fragments. *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
562 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
563 |
datatype 'a mode = Assumed of 'a | Derived of 'a; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
564 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
565 |
fun map_mode f (Assumed x) = Assumed (f x) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
566 |
| map_mode f (Derived x) = Derived (f x); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
567 |
|
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
568 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
569 |
(* flatten expressions *) |
11896 | 570 |
|
12510 | 571 |
local |
12502 | 572 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
573 |
fun unique_parms ctxt elemss = |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
574 |
let |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
575 |
val param_decls = |
15570 | 576 |
List.concat (map (fn (((name, (ps, qs)), _), _) => map (rpair (name, ps)) qs) elemss) |
18952 | 577 |
|> Symtab.make_list |> Symtab.dest; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
578 |
in |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
579 |
(case find_first (fn (_, ids) => length ids > 1) param_decls of |
15531 | 580 |
SOME (q, ids) => err_in_locale ctxt ("Multiple declaration of parameter " ^ quote q) |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
581 |
(map (apsnd (map fst)) ids) |
15531 | 582 |
| NONE => map (apfst (apfst (apsnd #1))) elemss) |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
583 |
end; |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
584 |
|
18137 | 585 |
fun unify_parms ctxt fixed_parms raw_parmss = |
12502 | 586 |
let |
16458 | 587 |
val thy = ProofContext.theory_of ctxt; |
12502 | 588 |
val maxidx = length raw_parmss; |
589 |
val idx_parmss = (0 upto maxidx - 1) ~~ raw_parmss; |
|
590 |
||
591 |
fun varify i = Term.map_type_tfree (fn (a, S) => TVar ((a, i), S)); |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
592 |
fun varify_parms (i, ps) = map (apsnd (varify i)) (param_types ps); |
15570 | 593 |
val parms = fixed_parms @ List.concat (map varify_parms idx_parmss); |
12502 | 594 |
|
18137 | 595 |
fun unify T U envir = Sign.typ_unify thy (U, T) envir |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
596 |
handle Type.TUNIFY => |
18137 | 597 |
let val prt = Sign.string_of_typ thy in |
598 |
raise TYPE ("unify_parms: failed to unify types " ^ |
|
599 |
prt U ^ " and " ^ prt T, [U, T], []) |
|
600 |
end; |
|
601 |
fun unify_list (T :: Us) = fold (unify T) Us |
|
602 |
| unify_list [] = I; |
|
18952 | 603 |
val (unifier, _) = fold unify_list (map #2 (Symtab.dest (Symtab.make_list parms))) |
18137 | 604 |
(Vartab.empty, maxidx); |
12502 | 605 |
|
19061
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
606 |
val parms' = map (apsnd (Envir.norm_type unifier)) (distinct (eq_fst (op =)) parms); |
12502 | 607 |
val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (map #2 parms')); |
608 |
||
609 |
fun inst_parms (i, ps) = |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
610 |
foldr Term.add_typ_tfrees [] (List.mapPartial snd ps) |
15570 | 611 |
|> List.mapPartial (fn (a, S) => |
12502 | 612 |
let val T = Envir.norm_type unifier' (TVar ((a, i), S)) |
18137 | 613 |
in if T = TFree (a, S) then NONE else SOME (a, T) end) |
614 |
|> Symtab.make; |
|
615 |
in map inst_parms idx_parmss end; |
|
12502 | 616 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
617 |
in |
12502 | 618 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
619 |
fun unify_elemss _ _ [] = [] |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
620 |
| unify_elemss _ [] [elems] = [elems] |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
621 |
| unify_elemss ctxt fixed_parms elemss = |
12502 | 622 |
let |
18137 | 623 |
val thy = ProofContext.theory_of ctxt; |
17756 | 624 |
val envs = unify_parms ctxt fixed_parms (map (snd o fst o fst) elemss); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
625 |
fun inst ((((name, ps), mode), elems), env) = |
18137 | 626 |
(((name, map (apsnd (Option.map (Element.instT_type env))) ps), |
627 |
map_mode (map (fn (t, th) => |
|
628 |
(Element.instT_term env t, Element.instT_thm thy env th))) mode), |
|
629 |
map (Element.instT_ctxt thy env) elems); |
|
12839 | 630 |
in map inst (elemss ~~ envs) end; |
12502 | 631 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
632 |
(* like unify_elemss, but does not touch mode, additional |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
633 |
parameter c_parms for enforcing further constraints (eg. syntax) *) |
18343 | 634 |
(* FIXME avoid code duplication *) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
635 |
|
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
636 |
fun unify_elemss' _ _ [] [] = [] |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
637 |
| unify_elemss' _ [] [elems] [] = [elems] |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
638 |
| unify_elemss' ctxt fixed_parms elemss c_parms = |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
639 |
let |
18137 | 640 |
val thy = ProofContext.theory_of ctxt; |
641 |
val envs = |
|
642 |
unify_parms ctxt fixed_parms (map (snd o fst o fst) elemss @ map single c_parms); |
|
17033 | 643 |
fun inst ((((name, ps), (ps', mode)), elems), env) = |
18137 | 644 |
(((name, map (apsnd (Option.map (Element.instT_type env))) ps), (ps', mode)), |
645 |
map (Element.instT_ctxt thy env) elems); |
|
18343 | 646 |
in map inst (elemss ~~ Library.take (length elemss, envs)) end; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
647 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
648 |
|
15596 | 649 |
(* flatten_expr: |
650 |
Extend list of identifiers by those new in locale expression expr. |
|
651 |
Compute corresponding list of lists of locale elements (one entry per |
|
652 |
identifier). |
|
653 |
||
654 |
Identifiers represent locale fragments and are in an extended form: |
|
655 |
((name, ps), (ax_ps, axs)) |
|
656 |
(name, ps) is the locale name with all its parameters. |
|
657 |
(ax_ps, axs) is the locale axioms with its parameters; |
|
658 |
axs are always taken from the top level of the locale hierarchy, |
|
659 |
hence axioms may contain additional parameters from later fragments: |
|
660 |
ps subset of ax_ps. axs is either singleton or empty. |
|
661 |
||
662 |
Elements are enriched by identifier-like information: |
|
663 |
(((name, ax_ps), axs), elems) |
|
664 |
The parameters in ax_ps are the axiom parameters, but enriched by type |
|
665 |
info: now each entry is a pair of string and typ option. Axioms are |
|
666 |
type-instantiated. |
|
667 |
||
668 |
*) |
|
669 |
||
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
670 |
fun flatten_expr ctxt ((prev_idents, prev_syntax), expr) = |
12014 | 671 |
let |
672 |
val thy = ProofContext.theory_of ctxt; |
|
12263 | 673 |
|
15531 | 674 |
fun renaming (SOME x :: xs) (y :: ys) = (y, x) :: renaming xs ys |
675 |
| renaming (NONE :: xs) (y :: ys) = renaming xs ys |
|
12273 | 676 |
| renaming [] _ = [] |
18678 | 677 |
| renaming xs [] = error ("Too many arguments in renaming: " ^ |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
678 |
commas (map (fn NONE => "_" | SOME x => quote (fst x)) xs)); |
12289 | 679 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
680 |
fun rename_parms top ren ((name, ps), (parms, mode)) = |
18137 | 681 |
let val ps' = map (Element.rename ren) ps in |
18964 | 682 |
(case duplicates (op =) ps' of |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
683 |
[] => ((name, ps'), |
18137 | 684 |
if top then (map (Element.rename ren) parms, |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
685 |
map_mode (map (fn (t, th) => |
18137 | 686 |
(Element.rename_term ren t, Element.rename_thm ren th))) mode) |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
687 |
else (parms, mode)) |
12289 | 688 |
| dups => err_in_locale ctxt ("Duplicate parameters: " ^ commas_quote dups) [(name, ps')]) |
689 |
end; |
|
12263 | 690 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
691 |
(* add registrations of (name, ps), recursively; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
692 |
adjust hyps of witness theorems *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
693 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
694 |
fun add_regs (name, ps) (ths, ids) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
695 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
696 |
val {params, regs, ...} = the_locale thy name; |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
697 |
val ps' = map #1 (#1 params); |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
698 |
val ren = map #1 ps' ~~ map (fn (x, _) => (x, NONE)) ps; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
699 |
(* dummy syntax, since required by rename *) |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
700 |
val ps'' = map (fn ((p, _), (_, T)) => (p, T)) (ps ~~ ps'); |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
701 |
val [env] = unify_parms ctxt ps [map (apsnd SOME) ps'']; |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
702 |
(* propagate parameter types, to keep them consistent *) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
703 |
val regs' = map (fn ((name, ps), ths) => |
18137 | 704 |
((name, map (Element.rename ren) ps), ths)) regs; |
17496 | 705 |
val new_regs = gen_rems (eq_fst (op =)) (regs', ids); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
706 |
val new_ids = map fst new_regs; |
17485 | 707 |
val new_idTs = map (apsnd (map (fn p => (p, (the o AList.lookup (op =) ps) p)))) new_ids; |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
708 |
|
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
709 |
val new_ths = new_regs |> map (fn (_, ths') => ths' |> map (fn (t, th) => |
18137 | 710 |
(t |> Element.instT_term env |> Element.rename_term ren, |
711 |
th |> Element.instT_thm thy env |> Element.rename_thm ren |> satisfy_protected ths))); |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
712 |
val new_ids' = map (fn (id, ths) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
713 |
(id, ([], Derived ths))) (new_ids ~~ new_ths); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
714 |
in |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
715 |
fold add_regs new_idTs (ths @ List.concat new_ths, ids @ new_ids') |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
716 |
end; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
717 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
718 |
(* distribute top-level axioms over assumed ids *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
719 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
720 |
fun axiomify all_ps ((name, parms), (_, Assumed _)) axioms = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
721 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
722 |
val {elems, ...} = the_locale thy name; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
723 |
val ts = List.concat (map |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
724 |
(fn (Assumes asms, _) => List.concat (map (map #1 o #2) asms) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
725 |
| _ => []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
726 |
elems); |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
727 |
val (axs1, axs2) = chop (length ts) axioms; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
728 |
in (((name, parms), (all_ps, Assumed axs1)), axs2) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
729 |
| axiomify all_ps (id, (_, Derived ths)) axioms = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
730 |
((id, (all_ps, Derived ths)), axioms); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
731 |
|
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
732 |
(* identifiers of an expression *) |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
733 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
734 |
fun identify top (Locale name) = |
15596 | 735 |
(* CB: ids_ax is a list of tuples of the form ((name, ps), axs), |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
736 |
where name is a locale name, ps a list of parameter names and axs |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
737 |
a list of axioms relating to the identifier, axs is empty unless |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
738 |
identify at top level (top = true); |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
739 |
parms is accumulated list of parameters *) |
12289 | 740 |
let |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
741 |
val {predicate = (_, axioms), import, params, ...} = |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
742 |
the_locale thy name; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
743 |
val ps = map (#1 o #1) (#1 params); |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
744 |
val (ids', parms', _) = identify false import; |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
745 |
(* acyclic import dependencies *) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
746 |
val ids'' = ids' @ [((name, ps), ([], Assumed []))]; |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
747 |
val (_, ids''') = add_regs (name, map #1 (#1 params)) ([], ids''); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
748 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
749 |
val ids_ax = if top then fst |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
750 |
(fold_map (axiomify ps) ids''' axioms) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
751 |
else ids'''; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
752 |
val syn = Symtab.make (map (apfst fst) (#1 params)); |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
753 |
in (ids_ax, merge_lists parms' ps, syn) end |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
754 |
| identify top (Rename (e, xs)) = |
12273 | 755 |
let |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
756 |
val (ids', parms', syn') = identify top e; |
12839 | 757 |
val ren = renaming xs parms' |
18678 | 758 |
handle ERROR msg => err_in_locale' ctxt msg ids'; |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
759 |
|
19061
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
760 |
val ids'' = distinct (eq_fst (op =)) (map (rename_parms top ren) ids'); |
ffbbac0261c9
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
19025
diff
changeset
|
761 |
val parms'' = distinct (op =) (List.concat (map (#2 o #1) ids'')); |
18137 | 762 |
val syn'' = syn' |> Symtab.dest |> map (Element.rename_var ren) |> Symtab.make; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
763 |
(* check for conflicting syntax? *) |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
764 |
in (ids'', parms'', syn'') end |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
765 |
| identify top (Merge es) = |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
766 |
fold (fn e => fn (ids, parms, syn) => |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
767 |
let |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
768 |
val (ids', parms', syn') = identify top e |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
769 |
in |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
770 |
(merge_alists ids ids', |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
771 |
merge_lists parms parms', |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
772 |
merge_syntax ctxt ids' (syn, syn')) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
773 |
end) |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
774 |
es ([], [], Symtab.empty); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
775 |
|
12014 | 776 |
|
18137 | 777 |
(* CB: enrich identifiers by parameter types and |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
778 |
the corresponding elements (with renamed parameters), |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
779 |
also takes care of parameter syntax *) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
780 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
781 |
fun eval syn ((name, xs), axs) = |
12273 | 782 |
let |
13308 | 783 |
val {params = (ps, qs), elems, ...} = the_locale thy name; |
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
784 |
val ps' = map (apsnd SOME o #1) ps; |
18671 | 785 |
fun lookup_syn x = (case Symtab.lookup syn x of SOME Structure => NONE | opt => opt); |
786 |
val ren = map #1 ps' ~~ map (fn x => (x, lookup_syn x)) xs; |
|
13308 | 787 |
val (params', elems') = |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
788 |
if null ren then ((ps', qs), map #1 elems) |
18137 | 789 |
else ((map (apfst (Element.rename ren)) ps', map (Element.rename ren) qs), |
790 |
map (Element.rename_ctxt ren o #1) elems); |
|
791 |
val elems'' = elems' |> map (Element.map_ctxt |
|
792 |
{var = I, typ = I, term = I, fact = I, attrib = I, |
|
793 |
name = NameSpace.qualified (space_implode "_" xs)}); |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
794 |
in (((name, params'), axs), elems'') end; |
12307 | 795 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
796 |
(* type constraint for renamed parameter with syntax *) |
18343 | 797 |
fun mixfix_type mx = |
18671 | 798 |
SOME (Type.freeze_type (#1 (TypeInfer.paramify_dummies (TypeInfer.mixfixT mx) 0))); |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
799 |
|
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
800 |
(* compute identifiers and syntax, merge with previous ones *) |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
801 |
val (ids, _, syn) = identify true expr; |
17496 | 802 |
val idents = gen_rems (eq_fst (op =)) (ids, prev_idents); |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
803 |
val syntax = merge_syntax ctxt ids (syn, prev_syntax); |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
804 |
(* add types to params, check for unique params and unify them *) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
805 |
val raw_elemss = unique_parms ctxt (map (eval syntax) idents); |
18671 | 806 |
val elemss = unify_elemss' ctxt [] raw_elemss (map (apsnd mixfix_type) (Symtab.dest syntax)); |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
807 |
(* replace params in ids by params from axioms, |
17033 | 808 |
adjust types in mode *) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
809 |
val all_params' = params_of' elemss; |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
810 |
val all_params = param_types all_params'; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
811 |
val elemss' = map (fn (((name, _), (ps, mode)), elems) => |
17485 | 812 |
(((name, map (fn p => (p, AList.lookup (op =) all_params p)) ps), mode), elems)) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
813 |
elemss; |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
814 |
fun inst_th (t, th) = let |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
815 |
val {hyps, prop, ...} = Thm.rep_thm th; |
16861 | 816 |
val ps = map (apsnd SOME) (fold Term.add_frees (prop :: hyps) []); |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
817 |
val [env] = unify_parms ctxt all_params [ps]; |
18137 | 818 |
val t' = Element.instT_term env t; |
819 |
val th' = Element.instT_thm thy env th; |
|
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
820 |
in (t', th') end; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
821 |
val final_elemss = map (fn ((id, mode), elems) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
822 |
((id, map_mode (map inst_th) mode), elems)) elemss'; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
823 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
824 |
in ((prev_idents @ idents, syntax), final_elemss) end; |
12046 | 825 |
|
12510 | 826 |
end; |
827 |
||
12070 | 828 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
829 |
(* activate elements *) |
12273 | 830 |
|
12510 | 831 |
local |
832 |
||
18671 | 833 |
fun axioms_export axs _ hyps = |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
834 |
satisfy_protected axs |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
835 |
#> Drule.implies_intr_list (Library.drop (length axs, hyps)) |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
836 |
#> Seq.single; |
12263 | 837 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
838 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
839 |
(* NB: derived ids contain only facts at this stage *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
840 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
841 |
fun activate_elem _ ((ctxt, mode), Fixes fixes) = |
18671 | 842 |
((ctxt |> ProofContext.add_fixes_i fixes |> snd, mode), []) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
843 |
| activate_elem _ ((ctxt, mode), Constrains _) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
844 |
((ctxt, mode), []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
845 |
| activate_elem _ ((ctxt, Assumed axs), Assumes asms) = |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
846 |
let |
18728 | 847 |
val asms' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) asms; |
15703 | 848 |
val ts = List.concat (map (map #1 o #2) asms'); |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
849 |
val (ps, qs) = chop (length ts) axs; |
17856 | 850 |
val (_, ctxt') = |
18671 | 851 |
ctxt |> fold ProofContext.fix_frees ts |
852 |
|> ProofContext.add_assms_i (axioms_export ps) asms'; |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
853 |
in ((ctxt', Assumed qs), []) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
854 |
| activate_elem _ ((ctxt, Derived ths), Assumes asms) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
855 |
((ctxt, Derived ths), []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
856 |
| activate_elem _ ((ctxt, Assumed axs), Defines defs) = |
15596 | 857 |
let |
18728 | 858 |
val defs' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) defs; |
17856 | 859 |
val (_, ctxt') = |
18831 | 860 |
ctxt |> ProofContext.add_assms_i LocalDefs.def_export |
15703 | 861 |
(defs' |> map (fn ((name, atts), (t, ps)) => |
18952 | 862 |
let val ((c, _), t') = LocalDefs.cert_def ctxt t |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
863 |
in ((if name = "" then Thm.def_name c else name, atts), [(t', (ps, []))]) end)) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
864 |
in ((ctxt', Assumed axs), []) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
865 |
| activate_elem _ ((ctxt, Derived ths), Defines defs) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
866 |
((ctxt, Derived ths), []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
867 |
| activate_elem is_ext ((ctxt, mode), Notes facts) = |
15596 | 868 |
let |
18728 | 869 |
val facts' = Attrib.map_facts (Attrib.attribute_i (ProofContext.theory_of ctxt)) facts; |
17856 | 870 |
val (res, ctxt') = ctxt |> ProofContext.note_thmss_i facts'; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
871 |
in ((ctxt', mode), if is_ext then res else []) end; |
12502 | 872 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
873 |
fun activate_elems (((name, ps), mode), elems) ctxt = |
17033 | 874 |
let |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
875 |
val thy = ProofContext.theory_of ctxt; |
17033 | 876 |
val ((ctxt', _), res) = |
877 |
foldl_map (activate_elem (name = "")) ((ProofContext.qualified_names ctxt, mode), elems) |
|
18678 | 878 |
handle ERROR msg => err_in_locale ctxt msg [(name, map fst ps)] |
15696 | 879 |
val ctxt'' = if name = "" then ctxt' |
880 |
else let |
|
881 |
val ps' = map (fn (n, SOME T) => Free (n, T)) ps; |
|
882 |
val ctxt'' = put_local_registration (name, ps') ("", []) ctxt' |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
883 |
in case mode of |
18123
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
884 |
Assumed axs => |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
885 |
fold (add_local_witness (name, ps') o assume_protected thy o #1) axs ctxt'' |
1bb572e8cee9
avoid prove_plain, export_plain, simplified after_qed;
wenzelm
parents:
18038
diff
changeset
|
886 |
| Derived ths => fold (add_local_witness (name, ps')) ths ctxt'' |
15696 | 887 |
end |
16144 | 888 |
in (ProofContext.restore_naming ctxt ctxt'', res) end; |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
889 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
890 |
fun activate_elemss prep_facts = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
891 |
fold_map (fn (((name, ps), mode), raw_elems) => fn ctxt => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
892 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
893 |
val elems = map (prep_facts ctxt) raw_elems; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
894 |
val (ctxt', res) = apsnd List.concat |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
895 |
(activate_elems (((name, ps), mode), elems) ctxt); |
18137 | 896 |
val elems' = elems |> map (Element.map_ctxt |
897 |
{name = I, var = I, typ = I, term = I, fact = I, attrib = Args.closure}); |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
898 |
in ((((name, ps), elems'), res), ctxt') end); |
12834
e5bec3268932
added locale_facts(_i) interface (useful for simple ML proof tools);
wenzelm
parents:
12806
diff
changeset
|
899 |
|
12546 | 900 |
in |
901 |
||
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
902 |
(* CB: activate_facts prep_facts (ctxt, elemss), |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
903 |
where elemss is a list of pairs consisting of identifiers and |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
904 |
context elements, extends ctxt by the context elements yielding |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
905 |
ctxt' and returns (ctxt', (elemss', facts)). |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
906 |
Identifiers in the argument are of the form ((name, ps), axs) and |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
907 |
assumptions use the axioms in the identifiers to set up exporters |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
908 |
in ctxt'. elemss' does not contain identifiers and is obtained |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
909 |
from elemss and the intermediate context with prep_facts. |
15703 | 910 |
If read_facts or cert_facts is used for prep_facts, these also remove |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
911 |
the internal/external markers from elemss. *) |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
912 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
913 |
fun activate_facts prep_facts (ctxt, args) = |
18806 | 914 |
let val ((elemss, factss), ctxt') = activate_elemss prep_facts args ctxt |>> split_list |
915 |
in (ctxt', (elemss, List.concat factss)) end; |
|
15703 | 916 |
|
12510 | 917 |
end; |
918 |
||
12307 | 919 |
|
15696 | 920 |
|
18137 | 921 |
(** prepare locale elements **) |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
922 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
923 |
(* expressions *) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
924 |
|
16458 | 925 |
fun intern_expr thy (Locale xname) = Locale (intern thy xname) |
926 |
| intern_expr thy (Merge exprs) = Merge (map (intern_expr thy) exprs) |
|
927 |
| intern_expr thy (Rename (expr, xs)) = Rename (intern_expr thy expr, xs); |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
928 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
929 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
930 |
(* propositions and bindings *) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
931 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
932 |
(* flatten (ctxt, prep_expr) ((ids, syn), expr) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
933 |
normalises expr (which is either a locale |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
934 |
expression or a single context element) wrt. |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
935 |
to the list ids of already accumulated identifiers. |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
936 |
It returns (ids', syn', elemss) where ids' is an extension of ids |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
937 |
with identifiers generated for expr, and elemss is the list of |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
938 |
context elements generated from expr. |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
939 |
syn and syn' are symtabs mapping parameter names to their syntax. syn' |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
940 |
is an extension of syn. |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
941 |
For details, see flatten_expr. |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
942 |
|
15596 | 943 |
Additionally, for a locale expression, the elems are grouped into a single |
944 |
Int; individual context elements are marked Ext. In this case, the |
|
945 |
identifier-like information of the element is as follows: |
|
946 |
- for Fixes: (("", ps), []) where the ps have type info NONE |
|
947 |
- for other elements: (("", []), []). |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
948 |
The implementation of activate_facts relies on identifier names being |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
949 |
empty strings for external elements. |
15596 | 950 |
*) |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
951 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
952 |
fun flatten (ctxt, _) ((ids, syn), Elem (Fixes fixes)) = let |
18137 | 953 |
val ids' = ids @ [(("", map #1 fixes), ([], Assumed []))] |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
954 |
in |
18137 | 955 |
((ids', |
956 |
merge_syntax ctxt ids' |
|
957 |
(syn, Symtab.make (map (fn fx => (#1 fx, #3 fx)) fixes)) |
|
958 |
handle Symtab.DUPS xs => err_in_locale ctxt |
|
959 |
("Conflicting syntax for parameters: " ^ commas_quote xs) |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
960 |
(map #1 ids')), |
18137 | 961 |
[((("", map (rpair NONE o #1) fixes), Assumed []), Ext (Fixes fixes))]) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
962 |
end |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
963 |
| flatten _ ((ids, syn), Elem elem) = |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
964 |
((ids @ [(("", []), ([], Assumed []))], syn), [((("", []), Assumed []), Ext elem)]) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
965 |
| flatten (ctxt, prep_expr) ((ids, syn), Expr expr) = |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
966 |
apsnd (map (apsnd Int)) (flatten_expr ctxt ((ids, syn), prep_expr expr)); |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
967 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
968 |
local |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
969 |
|
12839 | 970 |
local |
971 |
||
12727 | 972 |
fun declare_int_elem (ctxt, Fixes fixes) = |
18671 | 973 |
(ctxt |> ProofContext.add_fixes_i (map (fn (x, T, mx) => |
974 |
(x, Option.map (Term.map_type_tfree (TypeInfer.param 0)) T, mx)) fixes) |> snd, []) |
|
12727 | 975 |
| declare_int_elem (ctxt, _) = (ctxt, []); |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
976 |
|
18671 | 977 |
fun declare_ext_elem prep_vars (ctxt, Fixes fixes) = |
978 |
let val (vars, _) = prep_vars fixes ctxt |
|
979 |
in (ctxt |> ProofContext.add_fixes_i vars |> snd, []) end |
|
980 |
| declare_ext_elem prep_vars (ctxt, Constrains csts) = |
|
981 |
let val (_, ctxt') = prep_vars (map (fn (x, T) => (x, SOME T, NoSyn)) csts) ctxt |
|
982 |
in (ctxt', []) end |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
983 |
| declare_ext_elem _ (ctxt, Assumes asms) = (ctxt, map #2 asms) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
984 |
| declare_ext_elem _ (ctxt, Defines defs) = (ctxt, map (fn (_, (t, ps)) => [(t, (ps, []))]) defs) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
985 |
| declare_ext_elem _ (ctxt, Notes facts) = (ctxt, []); |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
986 |
|
18671 | 987 |
fun declare_elems prep_vars (ctxt, (((name, ps), Assumed _), elems)) = |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
988 |
let val (ctxt', propps) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
989 |
(case elems of |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
990 |
Int es => foldl_map declare_int_elem (ctxt, es) |
18671 | 991 |
| Ext e => foldl_map (declare_ext_elem prep_vars) (ctxt, [e])) |
18678 | 992 |
handle ERROR msg => err_in_locale ctxt msg [(name, map fst ps)] |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
993 |
in (ctxt', propps) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
994 |
| declare_elems _ (ctxt, ((_, Derived _), elems)) = (ctxt, []); |
12727 | 995 |
|
12839 | 996 |
in |
997 |
||
18671 | 998 |
fun declare_elemss prep_vars fixed_params raw_elemss ctxt = |
12727 | 999 |
let |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1000 |
(* CB: fix of type bug of goal in target with context elements. |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1001 |
Parameters new in context elements must receive types that are |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1002 |
distinct from types of parameters in target (fixed_params). *) |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1003 |
val ctxt_with_fixed = |
16028 | 1004 |
fold ProofContext.declare_term (map Free fixed_params) ctxt; |
12727 | 1005 |
val int_elemss = |
1006 |
raw_elemss |
|
15570 | 1007 |
|> List.mapPartial (fn (id, Int es) => SOME (id, es) | _ => NONE) |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1008 |
|> unify_elemss ctxt_with_fixed fixed_params; |
12727 | 1009 |
val (_, raw_elemss') = |
1010 |
foldl_map (fn ((_, es) :: elemss, (id, Int _)) => (elemss, (id, Int es)) | x => x) |
|
1011 |
(int_elemss, raw_elemss); |
|
18671 | 1012 |
in foldl_map (declare_elems prep_vars) (ctxt, raw_elemss') end; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1013 |
|
12839 | 1014 |
end; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1015 |
|
12839 | 1016 |
local |
1017 |
||
1018 |
val norm_term = Envir.beta_norm oo Term.subst_atomic; |
|
1019 |
||
16458 | 1020 |
fun abstract_thm thy eq = |
1021 |
Thm.assume (Thm.cterm_of thy eq) |> Drule.gen_all |> Drule.abs_def; |
|
12502 | 1022 |
|
18190 | 1023 |
fun bind_def ctxt (name, ps) eq (xs, env, ths) = |
12839 | 1024 |
let |
18831 | 1025 |
val ((y, T), b) = LocalDefs.abs_def eq; |
13308 | 1026 |
val b' = norm_term env b; |
16458 | 1027 |
val th = abstract_thm (ProofContext.theory_of ctxt) eq; |
13308 | 1028 |
fun err msg = err_in_locale ctxt (msg ^ ": " ^ quote y) [(name, map fst ps)]; |
12839 | 1029 |
in |
13308 | 1030 |
conditional (exists (equal y o #1) xs) (fn () => |
1031 |
err "Attempt to define previously specified variable"); |
|
1032 |
conditional (exists (fn (Free (y', _), _) => y = y' | _ => false) env) (fn () => |
|
1033 |
err "Attempt to redefine variable"); |
|
16861 | 1034 |
(Term.add_frees b' xs, (Free (y, T), b') :: env, th :: ths) |
12839 | 1035 |
end; |
12575 | 1036 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1037 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1038 |
(* CB: for finish_elems (Int and Ext), |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1039 |
extracts specification, only of assumed elements *) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1040 |
|
18190 | 1041 |
fun eval_text _ _ _ (Fixes _) text = text |
1042 |
| eval_text _ _ _ (Constrains _) text = text |
|
1043 |
| eval_text _ (_, Assumed _) is_ext (Assumes asms) |
|
1044 |
(((exts, exts'), (ints, ints')), (xs, env, defs)) = |
|
13394 | 1045 |
let |
15570 | 1046 |
val ts = List.concat (map (map #1 o #2) asms); |
13394 | 1047 |
val ts' = map (norm_term env) ts; |
1048 |
val spec' = |
|
1049 |
if is_ext then ((exts @ ts, exts' @ ts'), (ints, ints')) |
|
1050 |
else ((exts, exts'), (ints @ ts, ints' @ ts')); |
|
16861 | 1051 |
in (spec', (fold Term.add_frees ts' xs, env, defs)) end |
18190 | 1052 |
| eval_text _ (_, Derived _) _ (Assumes _) text = text |
1053 |
| eval_text ctxt (id, Assumed _) _ (Defines defs) (spec, binds) = |
|
1054 |
(spec, fold (bind_def ctxt id o #1 o #2) defs binds) |
|
1055 |
| eval_text _ (_, Derived _) _ (Defines _) text = text |
|
1056 |
| eval_text _ _ _ (Notes _) text = text; |
|
13308 | 1057 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1058 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1059 |
(* for finish_elems (Int), |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1060 |
remove redundant elements of derived identifiers, |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1061 |
turn assumptions and definitions into facts, |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1062 |
adjust hypotheses of facts using witness theorems *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1063 |
|
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1064 |
fun finish_derived _ _ (Assumed _) (Fixes fixes) = SOME (Fixes fixes) |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1065 |
| finish_derived _ _ (Assumed _) (Constrains csts) = SOME (Constrains csts) |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1066 |
| finish_derived _ _ (Assumed _) (Assumes asms) = SOME (Assumes asms) |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1067 |
| finish_derived _ _ (Assumed _) (Defines defs) = SOME (Defines defs) |
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1068 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1069 |
| finish_derived _ _ (Derived _) (Fixes _) = NONE |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1070 |
| finish_derived _ _ (Derived _) (Constrains _) = NONE |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1071 |
| finish_derived sign wits (Derived _) (Assumes asms) = asms |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1072 |
|> map (apsnd (map (fn (a, _) => ([Thm.assume (cterm_of sign a)], [])))) |
18137 | 1073 |
|> Notes |> Element.map_ctxt_values I I (satisfy_protected wits) |> SOME |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1074 |
| finish_derived sign wits (Derived _) (Defines defs) = defs |
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1075 |
|> map (apsnd (fn (d, _) => [([Thm.assume (cterm_of sign d)], [])])) |
18137 | 1076 |
|> Notes |> Element.map_ctxt_values I I (satisfy_protected wits) |> SOME |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1077 |
|
17096
8327b71282ce
Improved generation of witnesses in interpretation.
ballarin
parents:
17033
diff
changeset
|
1078 |
| finish_derived _ wits _ (Notes facts) = (Notes facts) |
18137 | 1079 |
|> Element.map_ctxt_values I I (satisfy_protected wits) |> SOME; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1080 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1081 |
(* CB: for finish_elems (Ext) *) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1082 |
|
13308 | 1083 |
fun closeup _ false elem = elem |
1084 |
| closeup ctxt true elem = |
|
12839 | 1085 |
let |
13308 | 1086 |
fun close_frees t = |
1087 |
let val frees = rev (filter_out (ProofContext.is_fixed ctxt o #1) |
|
16861 | 1088 |
(Term.add_frees t [])) |
13308 | 1089 |
in Term.list_all_free (frees, t) end; |
1090 |
||
1091 |
fun no_binds [] = [] |
|
18678 | 1092 |
| no_binds _ = error "Illegal term bindings in locale element"; |
13308 | 1093 |
in |
1094 |
(case elem of |
|
1095 |
Assumes asms => Assumes (asms |> map (fn (a, propps) => |
|
1096 |
(a, map (fn (t, (ps, qs)) => (close_frees t, (no_binds ps, no_binds qs))) propps))) |
|
1097 |
| Defines defs => Defines (defs |> map (fn (a, (t, ps)) => |
|
18831 | 1098 |
(a, (close_frees (#2 (LocalDefs.cert_def ctxt t)), no_binds ps)))) |
13308 | 1099 |
| e => e) |
1100 |
end; |
|
12839 | 1101 |
|
12502 | 1102 |
|
12839 | 1103 |
fun finish_ext_elem parms _ (Fixes fixes, _) = Fixes (map (fn (x, _, mx) => |
17271 | 1104 |
(x, AList.lookup (op =) parms x, mx)) fixes) |
18899
a8e913c93578
theorem(_in_locale): Element.statement, Obtain.statement;
wenzelm
parents:
18890
diff
changeset
|
1105 |
| finish_ext_elem parms _ (Constrains _, _) = Constrains [] |
12839 | 1106 |
| finish_ext_elem _ close (Assumes asms, propp) = |
1107 |
close (Assumes (map #1 asms ~~ propp)) |
|
1108 |
| finish_ext_elem _ close (Defines defs, propp) = |
|
12727 | 1109 |
close (Defines (map #1 defs ~~ map (fn [(t, (ps, []))] => (t, ps)) propp)) |
12839 | 1110 |
| finish_ext_elem _ _ (Notes facts, _) = Notes facts; |
1111 |
||
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1112 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1113 |
(* CB: finish_parms introduces type info from parms to identifiers *) |
15531 | 1114 |
(* CB: only needed for types that have been NONE so far??? |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1115 |
If so, which are these??? *) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1116 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1117 |
fun finish_parms parms (((name, ps), mode), elems) = |
17485 | 1118 |
(((name, map (fn (x, _) => (x, AList.lookup (op =) parms x)) ps), mode), elems); |
12839 | 1119 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1120 |
fun finish_elems ctxt parms _ ((text, wits), ((id, Int e), _)) = |
12839 | 1121 |
let |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1122 |
val [(id' as (_, mode), es)] = unify_elemss ctxt parms [(id, e)]; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1123 |
val wits' = case mode of Assumed _ => wits | Derived ths => wits @ ths; |
18190 | 1124 |
val text' = fold (eval_text ctxt id' false) es text; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1125 |
val es' = List.mapPartial |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1126 |
(finish_derived (ProofContext.theory_of ctxt) wits' mode) es; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1127 |
in ((text', wits'), (id', map Int es')) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1128 |
| finish_elems ctxt parms do_close ((text, wits), ((id, Ext e), [propp])) = |
13308 | 1129 |
let |
1130 |
val e' = finish_ext_elem parms (closeup ctxt do_close) (e, propp); |
|
18190 | 1131 |
val text' = eval_text ctxt id true e' text; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1132 |
in ((text', wits), (id, [Ext e'])) end |
12839 | 1133 |
|
1134 |
in |
|
12510 | 1135 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1136 |
(* CB: only called by prep_elemss *) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1137 |
|
13375 | 1138 |
fun finish_elemss ctxt parms do_close = |
1139 |
foldl_map (apsnd (finish_parms parms) o finish_elems ctxt parms do_close); |
|
12839 | 1140 |
|
1141 |
end; |
|
1142 |
||
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
1143 |
|
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
1144 |
(* CB: type inference and consistency checks for locales. |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
1145 |
|
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
1146 |
Works by building a context (through declare_elemss), extracting the |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
1147 |
required information and adjusting the context elements (finish_elemss). |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
1148 |
Can also universally close free vars in assms and defs. This is only |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1149 |
needed for Ext elements and controlled by parameter do_close. |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1150 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1151 |
Only elements of assumed identifiers are considered. |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
1152 |
*) |
15127 | 1153 |
|
18671 | 1154 |
fun prep_elemss prep_vars prepp do_close context fixed_params raw_elemss raw_concl = |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1155 |
let |
15127 | 1156 |
(* CB: contexts computed in the course of this function are discarded. |
1157 |
They are used for type inference and consistency checks only. *) |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1158 |
(* CB: fixed_params are the parameters (with types) of the target locale, |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1159 |
empty list if there is no target. *) |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1160 |
(* CB: raw_elemss are list of pairs consisting of identifiers and |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1161 |
context elements, the latter marked as internal or external. *) |
18671 | 1162 |
val (raw_ctxt, raw_proppss) = declare_elemss prep_vars fixed_params raw_elemss context; |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1163 |
(* CB: raw_ctxt is context with additional fixed variables derived from |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1164 |
the fixes elements in raw_elemss, |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1165 |
raw_proppss contains assumptions and definitions from the |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1166 |
external elements in raw_elemss. *) |
18550
59b89f625d68
add_local_context now yields imported and body elements seperatly; additional slight clenup in code
haftmann
parents:
18546
diff
changeset
|
1167 |
fun prep_prop raw_propp (raw_ctxt, raw_concl) = |
18450
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1168 |
let |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1169 |
(* CB: add type information from fixed_params to context (declare_term) *) |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1170 |
(* CB: process patterns (conclusion and external elements only) *) |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1171 |
val (ctxt, all_propp) = |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1172 |
prepp (fold ProofContext.declare_term (map Free fixed_params) raw_ctxt, raw_concl @ raw_propp); |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1173 |
(* CB: add type information from conclusion and external elements to context *) |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1174 |
val ctxt = fold ProofContext.declare_term (List.concat (map (map fst) all_propp)) ctxt; |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1175 |
(* CB: resolve schematic variables (patterns) in conclusion and external elements. *) |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1176 |
val all_propp' = map2 (curry (op ~~)) |
e57731ba01dd
discontinued unflat in favour of burrow and burrow_split
haftmann
parents:
18421
diff
changeset
|
1177 |
(#1 (#2 (ProofContext.bind_propp_schematic_i (ctxt, all_propp)))) (map (map snd) all_propp); |
19018
88b4979193d8
added abbreviations: activated by init, no expressions yet;
wenzelm
parents:
18964
diff
changeset
|
1178 |
val (concl, propp) = chop (length raw_concl) all_propp'; |
18550
59b89f625d68
add_local_context now yields imported and body elements seperatly; additional slight clenup in code
haftmann
parents:
18546
diff
changeset
|
1179 |
in (propp, (ctxt, concl)) end |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1180 |
|
18550
59b89f625d68
add_local_context now yields imported and body elements seperatly; additional slight clenup in code
haftmann
parents:
18546
diff
changeset
|
1181 |
val (proppss, (ctxt, concl)) = |
59b89f625d68
add_local_context now yields imported and body elements seperatly; additional slight clenup in code
haftmann
parents:
18546
diff
changeset
|
1182 |
(fold_burrow o fold_burrow) prep_prop raw_proppss (raw_ctxt, raw_concl); |
12502 | 1183 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1184 |
(* CB: obtain all parameters from identifier part of raw_elemss *) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1185 |
val xs = map #1 (params_of' raw_elemss); |
12727 | 1186 |
val typing = unify_frozen ctxt 0 |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1187 |
(map (ProofContext.default_type raw_ctxt) xs) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1188 |
(map (ProofContext.default_type ctxt) xs); |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1189 |
val parms = param_types (xs ~~ typing); |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1190 |
(* CB: parms are the parameters from raw_elemss, with correct typing. *) |
12273 | 1191 |
|
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1192 |
(* CB: extract information from assumes and defines elements |
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1193 |
(fixes, constrains and notes in raw_elemss don't have an effect on |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1194 |
text and elemss), compute final form of context elements. *) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1195 |
val ((text, _), elemss) = finish_elemss ctxt parms do_close |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1196 |
((((([], []), ([], [])), ([], [], [])), []), raw_elemss ~~ proppss); |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1197 |
(* CB: text has the following structure: |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1198 |
(((exts, exts'), (ints, ints')), (xs, env, defs)) |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1199 |
where |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1200 |
exts: external assumptions (terms in external assumes elements) |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1201 |
exts': dito, normalised wrt. env |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1202 |
ints: internal assumptions (terms in internal assumes elements) |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1203 |
ints': dito, normalised wrt. env |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1204 |
xs: the free variables in exts' and ints' and rhss of definitions, |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1205 |
this includes parameters except defined parameters |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1206 |
env: list of term pairs encoding substitutions, where the first term |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1207 |
is a free variable; substitutions represent defines elements and |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1208 |
the rhs is normalised wrt. the previous env |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1209 |
defs: theorems representing the substitutions from defines elements |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1210 |
(thms are normalised wrt. env). |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1211 |
elemss is an updated version of raw_elemss: |
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1212 |
- type info added to Fixes and modified in Constrains |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1213 |
- axiom and definition statement replaced by corresponding one |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1214 |
from proppss in Assumes and Defines |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1215 |
- Facts unchanged |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1216 |
*) |
13308 | 1217 |
in ((parms, elemss, concl), text) end; |
12502 | 1218 |
|
1219 |
in |
|
1220 |
||
18671 | 1221 |
fun read_elemss x = prep_elemss ProofContext.read_vars ProofContext.read_propp_schematic x; |
1222 |
fun cert_elemss x = prep_elemss ProofContext.cert_vars ProofContext.cert_propp_schematic x; |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1223 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1224 |
end; |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1225 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1226 |
|
15703 | 1227 |
(* facts and attributes *) |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1228 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1229 |
local |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1230 |
|
18678 | 1231 |
fun prep_name name = |
1232 |
if NameSpace.is_qualified name then error ("Illegal qualified name: " ^ quote name) |
|
15703 | 1233 |
else name; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1234 |
|
15703 | 1235 |
fun prep_facts _ _ ctxt (Int elem) = |
18137 | 1236 |
Element.map_ctxt_values I I (Thm.transfer (ProofContext.theory_of ctxt)) elem |
1237 |
| prep_facts get intern ctxt (Ext elem) = elem |> Element.map_ctxt |
|
15703 | 1238 |
{var = I, typ = I, term = I, |
18678 | 1239 |
name = prep_name, |
15703 | 1240 |
fact = get ctxt, |
16458 | 1241 |
attrib = Args.assignable o intern (ProofContext.theory_of ctxt)}; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1242 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1243 |
in |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1244 |
|
15703 | 1245 |
fun read_facts x = prep_facts ProofContext.get_thms Attrib.intern_src x; |
1246 |
fun cert_facts x = prep_facts (K I) (K I) x; |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1247 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1248 |
end; |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
we& |