author | ballarin |
Mon, 08 Aug 2005 22:11:31 +0200 | |
changeset 17033 | f4c1ce91aa3c |
parent 17000 | 552df70f52c2 |
child 17096 | 8327b71282ce |
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 |
|
14 |
See also: |
|
15 |
||
16 |
[1] Clemens Ballarin. Locales and Locale Expressions in Isabelle/Isar. |
|
17 |
In Stefano Berardi et al., Types for Proofs and Programs: International |
|
15099 | 18 |
Workshop, TYPES 2003, Torino, Italy, LNCS 3085, pages 34-50, 2004. |
11896 | 19 |
*) |
20 |
||
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
21 |
(* TODO: |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
22 |
- beta-eta normalisation of interpretation parameters |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
23 |
- dangling type frees in locales |
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
24 |
- test subsumption of interpretations when merging theories |
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
25 |
*) |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
26 |
|
11896 | 27 |
signature LOCALE = |
28 |
sig |
|
12046 | 29 |
type context |
15703 | 30 |
datatype ('typ, 'term, 'fact) elem = |
12058 | 31 |
Fixes of (string * 'typ option * mixfix option) list | |
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
32 |
Constrains of (string * 'typ) list | |
15703 | 33 |
Assumes of ((string * Attrib.src list) * ('term * ('term list * 'term list)) list) list | |
34 |
Defines of ((string * Attrib.src list) * ('term * 'term list)) list | |
|
35 |
Notes of ((string * Attrib.src list) * ('fact * Attrib.src list) list) list |
|
12273 | 36 |
datatype expr = |
37 |
Locale of string | |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
38 |
Rename of expr * (string * mixfix option) option list | |
12273 | 39 |
Merge of expr list |
40 |
val empty: expr |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
41 |
datatype 'a elem_expr = Elem of 'a | Expr of expr |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
42 |
|
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
43 |
(* Abstract interface to locales *) |
15703 | 44 |
type element |
45 |
type element_i |
|
12046 | 46 |
type locale |
16458 | 47 |
val intern: theory -> xstring -> string |
48 |
val extern: theory -> string -> xstring |
|
12502 | 49 |
val the_locale: theory -> string -> locale |
15703 | 50 |
val intern_attrib_elem: theory -> |
51 |
('typ, 'term, 'fact) elem -> ('typ, 'term, 'fact) elem |
|
52 |
val intern_attrib_elem_expr: theory -> |
|
53 |
('typ, 'term, 'fact) elem elem_expr -> ('typ, 'term, 'fact) elem elem_expr |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
54 |
|
15596 | 55 |
(* Processing of locale statements *) |
15703 | 56 |
val read_context_statement: xstring option -> element elem_expr list -> |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
57 |
(string * (string list * string list)) list list -> context -> |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
58 |
string option * (cterm list * cterm list) * context * context * |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
59 |
(term * (term list * term list)) list list |
15703 | 60 |
val cert_context_statement: string option -> element_i elem_expr list -> |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
61 |
(term * (term list * term list)) list list -> context -> |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
62 |
string option * (cterm list * cterm list) * context * context * |
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 |
15703 | 67 |
val print_locale: theory -> expr -> element list -> unit |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
68 |
val print_global_registrations: string -> theory -> unit |
15703 | 69 |
val print_local_registrations': string -> context -> unit |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
70 |
val print_local_registrations: string -> context -> unit |
15596 | 71 |
|
15696 | 72 |
(* Storing results *) |
15703 | 73 |
val add_locale: bool -> bstring -> expr -> element list -> theory -> theory |
74 |
val add_locale_i: bool -> bstring -> expr -> element_i list -> theory -> theory |
|
75 |
val smart_note_thmss: string -> string option -> |
|
12958 | 76 |
((bstring * theory attribute list) * (thm list * theory attribute list) list) list -> |
77 |
theory -> theory * (bstring * thm list) list |
|
15703 | 78 |
val note_thmss: string -> xstring -> |
79 |
((bstring * Attrib.src list) * (thmref * Attrib.src list) list) list -> |
|
12711 | 80 |
theory -> theory * (bstring * thm list) list |
15703 | 81 |
val note_thmss_i: string -> string -> |
82 |
((bstring * Attrib.src list) * (thm list * Attrib.src list) list) list -> |
|
12711 | 83 |
theory -> theory * (bstring * thm list) list |
15703 | 84 |
val add_thmss: string -> string -> ((string * thm list) * Attrib.src list) list -> |
13375 | 85 |
theory * context -> (theory * context) * (string * thm list) list |
15596 | 86 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
87 |
(* Locale interpretation *) |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
88 |
val prep_global_registration: |
15703 | 89 |
string * Attrib.src list -> expr -> string option list -> theory -> |
17033 | 90 |
((string * term list) * term list) list * (thm list -> theory -> theory) |
91 |
val prep_local_registration: |
|
92 |
string * Attrib.src list -> expr -> string option list -> context -> |
|
93 |
((string * term list) * term list) list * (thm list -> context -> context) |
|
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
94 |
val prep_registration_in_locale: |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
95 |
string -> expr -> theory -> |
17033 | 96 |
((string * string list) * term list) list * (thm list -> theory -> theory) |
97 |
(* |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
98 |
val add_global_witness: |
15596 | 99 |
string * term list -> thm -> theory -> theory |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
100 |
val add_witness_in_locale: |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
101 |
string -> string * string list -> thm -> theory -> theory |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
102 |
val add_local_witness: |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
103 |
string * term list -> thm -> context -> context |
17033 | 104 |
*) |
11896 | 105 |
end; |
12839 | 106 |
|
12289 | 107 |
structure Locale: LOCALE = |
11896 | 108 |
struct |
109 |
||
12273 | 110 |
(** locale elements and expressions **) |
11896 | 111 |
|
12014 | 112 |
type context = ProofContext.context; |
11896 | 113 |
|
15703 | 114 |
datatype ('typ, 'term, 'fact) elem = |
12058 | 115 |
Fixes of (string * 'typ option * mixfix option) list | |
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
116 |
Constrains of (string * 'typ) list | |
15703 | 117 |
Assumes of ((string * Attrib.src list) * ('term * ('term list * 'term list)) list) list | |
118 |
Defines of ((string * Attrib.src list) * ('term * 'term list)) list | |
|
119 |
Notes of ((string * Attrib.src list) * ('fact * Attrib.src list) list) list; |
|
12273 | 120 |
|
121 |
datatype expr = |
|
122 |
Locale of string | |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
123 |
Rename of expr * (string * mixfix option) option list | |
12273 | 124 |
Merge of expr list; |
11896 | 125 |
|
12273 | 126 |
val empty = Merge []; |
127 |
||
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
128 |
datatype 'a elem_expr = |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
129 |
Elem of 'a | Expr of expr; |
12273 | 130 |
|
15703 | 131 |
type element = (string, string, thmref) elem; |
132 |
type element_i = (typ, term, thm list) elem; |
|
12070 | 133 |
|
134 |
type locale = |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
135 |
{predicate: cterm list * thm list, |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
136 |
(* CB: For locales with "(open)" this entry is ([], []). |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
137 |
For new-style locales, which declare predicates, if the locale declares |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
138 |
no predicates, this is also ([], []). |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
139 |
If the locale declares predicates, the record field is |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
140 |
([statement], axioms), where statement is the locale predicate applied |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
141 |
to the (assumed) locale parameters. Axioms contains the projections |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
142 |
from the locale predicate to the normalised assumptions of the locale |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
143 |
(cf. [1], normalisation of locale expressions.) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
144 |
*) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
145 |
import: expr, (*dynamic import*) |
15703 | 146 |
elems: (element_i * stamp) list, (*static content*) |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
147 |
params: ((string * typ) * mixfix option) list * string list, |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
148 |
(*all/local params*) |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
149 |
regs: ((string * string list) * thm list) list} |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
150 |
(* Registrations: indentifiers and witness theorems of locales interpreted |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
151 |
in the locale. |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
152 |
*) |
12063 | 153 |
|
11896 | 154 |
|
15703 | 155 |
(* CB: an internal (Int) locale element was either imported or included, |
156 |
an external (Ext) element appears directly in the locale text. *) |
|
157 |
||
158 |
datatype ('a, 'b) int_ext = Int of 'a | Ext of 'b; |
|
159 |
||
160 |
||
161 |
||
15837 | 162 |
(** term and type instantiation, using symbol tables **) |
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
163 |
(** functions for term instantiation beta-reduce the result |
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
164 |
unless the instantiation table is empty (inst_tab_term) |
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
165 |
or the instantiation has no effect (inst_tab_thm) **) |
15837 | 166 |
|
167 |
(* instantiate TFrees *) |
|
168 |
||
169 |
fun tinst_tab_type tinst T = if Symtab.is_empty tinst |
|
170 |
then T |
|
171 |
else Term.map_type_tfree |
|
172 |
(fn (v as (x, _)) => getOpt (Symtab.lookup (tinst, x), (TFree v))) T; |
|
173 |
||
174 |
fun tinst_tab_term tinst t = if Symtab.is_empty tinst |
|
175 |
then t |
|
176 |
else Term.map_term_types (tinst_tab_type tinst) t; |
|
177 |
||
16458 | 178 |
fun tinst_tab_thm thy tinst thm = if Symtab.is_empty tinst |
15837 | 179 |
then thm |
180 |
else let |
|
16458 | 181 |
val cert = Thm.cterm_of thy; |
182 |
val certT = Thm.ctyp_of thy; |
|
15837 | 183 |
val {hyps, prop, ...} = Thm.rep_thm thm; |
184 |
val tfrees = foldr Term.add_term_tfree_names [] (prop :: hyps); |
|
185 |
val tinst' = Symtab.dest tinst |> |
|
186 |
List.filter (fn (a, _) => a mem_string tfrees); |
|
187 |
in |
|
188 |
if null tinst' then thm |
|
189 |
else thm |> Drule.implies_intr_list (map cert hyps) |
|
190 |
|> Drule.tvars_intr_list (map #1 tinst') |
|
191 |
|> (fn (th, al) => th |> Thm.instantiate |
|
192 |
((map (fn (a, T) => (certT (TVar (valOf (assoc (al, a)))), certT T)) tinst'), |
|
193 |
[])) |
|
194 |
|> (fn th => Drule.implies_elim_list th |
|
195 |
(map (Thm.assume o cert o tinst_tab_term tinst) hyps)) |
|
196 |
end; |
|
197 |
||
198 |
||
199 |
(* instantiate TFrees and Frees *) |
|
200 |
||
201 |
fun inst_tab_term (inst, tinst) = if Symtab.is_empty inst |
|
202 |
then tinst_tab_term tinst |
|
203 |
else (* instantiate terms and types simultaneously *) |
|
204 |
let |
|
205 |
fun instf (Const (x, T)) = Const (x, tinst_tab_type tinst T) |
|
206 |
| instf (Free (x, T)) = (case Symtab.lookup (inst, x) of |
|
207 |
NONE => Free (x, tinst_tab_type tinst T) |
|
208 |
| SOME t => t) |
|
209 |
| instf (Var (xi, T)) = Var (xi, tinst_tab_type tinst T) |
|
210 |
| instf (b as Bound _) = b |
|
211 |
| instf (Abs (x, T, t)) = Abs (x, tinst_tab_type tinst T, instf t) |
|
212 |
| instf (s $ t) = instf s $ instf t |
|
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
213 |
in Envir.beta_norm o instf end; |
15837 | 214 |
|
16458 | 215 |
fun inst_tab_thm thy (inst, tinst) thm = if Symtab.is_empty inst |
216 |
then tinst_tab_thm thy tinst thm |
|
15837 | 217 |
else let |
16458 | 218 |
val cert = Thm.cterm_of thy; |
219 |
val certT = Thm.ctyp_of thy; |
|
15837 | 220 |
val {hyps, prop, ...} = Thm.rep_thm thm; |
221 |
(* type instantiations *) |
|
222 |
val tfrees = foldr Term.add_term_tfree_names [] (prop :: hyps); |
|
223 |
val tinst' = Symtab.dest tinst |> |
|
224 |
List.filter (fn (a, _) => a mem_string tfrees); |
|
225 |
(* term instantiations; |
|
226 |
note: lhss are type instantiated, because |
|
227 |
type insts will be done first*) |
|
228 |
val frees = foldr Term.add_term_frees [] (prop :: hyps); |
|
229 |
val inst' = Symtab.dest inst |> |
|
230 |
List.mapPartial (fn (a, t) => |
|
231 |
get_first (fn (Free (x, T)) => |
|
232 |
if a = x then SOME (Free (x, tinst_tab_type tinst T), t) |
|
233 |
else NONE) frees); |
|
234 |
in |
|
16458 | 235 |
if null tinst' andalso null inst' then tinst_tab_thm thy tinst thm |
15837 | 236 |
else thm |> Drule.implies_intr_list (map cert hyps) |
237 |
|> Drule.tvars_intr_list (map #1 tinst') |
|
238 |
|> (fn (th, al) => th |> Thm.instantiate |
|
239 |
((map (fn (a, T) => (certT (TVar (valOf (assoc (al, a)))), certT T)) tinst'), |
|
240 |
[])) |
|
241 |
|> Drule.forall_intr_list (map (cert o #1) inst') |
|
242 |
|> Drule.forall_elim_list (map (cert o #2) inst') |
|
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
243 |
|> Drule.fconv_rule (Thm.beta_conversion true) |
15837 | 244 |
|> (fn th => Drule.implies_elim_list th |
245 |
(map (Thm.assume o cert o inst_tab_term (inst, tinst)) hyps)) |
|
246 |
end; |
|
247 |
||
248 |
||
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
249 |
(** management of registrations in theories and proof contexts **) |
11896 | 250 |
|
15837 | 251 |
structure Registrations : |
252 |
sig |
|
253 |
type T |
|
254 |
val empty: T |
|
255 |
val join: T * T -> T |
|
256 |
val dest: T -> (term list * ((string * Attrib.src list) * thm list)) list |
|
16458 | 257 |
val lookup: theory -> T * term list -> |
15837 | 258 |
((string * Attrib.src list) * thm list) option |
16458 | 259 |
val insert: theory -> term list * (string * Attrib.src list) -> T -> |
15837 | 260 |
T * (term list * ((string * Attrib.src list) * thm list)) list |
261 |
val add_witness: term list -> thm -> T -> T |
|
262 |
end = |
|
263 |
struct |
|
264 |
(* a registration consists of theorems instantiating locale assumptions |
|
265 |
and prefix and attributes, indexed by parameter instantiation *) |
|
266 |
type T = ((string * Attrib.src list) * thm list) Termtab.table; |
|
267 |
||
268 |
val empty = Termtab.empty; |
|
269 |
||
270 |
(* term list represented as single term, for simultaneous matching *) |
|
271 |
fun termify ts = |
|
272 |
Library.foldl (op $) (Const ("", map fastype_of ts ---> propT), ts); |
|
273 |
fun untermify t = |
|
274 |
let fun ut (Const _) ts = ts |
|
275 |
| ut (s $ t) ts = ut s (t::ts) |
|
276 |
in ut t [] end; |
|
277 |
||
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
278 |
(* joining of registrations: prefix and attributes of left theory, |
15837 | 279 |
thms are equal, no attempt to subsumption testing *) |
16458 | 280 |
fun join (r1, r2) = Termtab.join (fn _ => fn (reg, _) => SOME reg) (r1, r2); |
15837 | 281 |
|
282 |
fun dest regs = map (apfst untermify) (Termtab.dest regs); |
|
283 |
||
284 |
(* registrations that subsume t *) |
|
285 |
fun subsumers tsig t regs = |
|
286 |
List.filter (fn (t', _) => Pattern.matches tsig (t', t)) (Termtab.dest regs); |
|
287 |
||
288 |
(* look up registration, pick one that subsumes the query *) |
|
289 |
fun lookup sign (regs, ts) = |
|
290 |
let |
|
291 |
val tsig = Sign.tsig_of sign; |
|
292 |
val t = termify ts; |
|
293 |
val subs = subsumers tsig t regs; |
|
294 |
in (case subs of |
|
295 |
[] => NONE |
|
296 |
| ((t', (attn, thms)) :: _) => let |
|
297 |
val (tinst, inst) = Pattern.match tsig (t', t); |
|
298 |
(* thms contain Frees, not Vars *) |
|
299 |
val tinst' = tinst |> Vartab.dest |
|
300 |
|> map (fn ((x, 0), (_, T)) => (x, Type.unvarifyT T)) |
|
301 |
|> Symtab.make; |
|
302 |
val inst' = inst |> Vartab.dest |
|
303 |
|> map (fn ((x, 0), (_, t)) => (x, Logic.unvarify t)) |
|
304 |
|> Symtab.make; |
|
305 |
in |
|
306 |
SOME (attn, map (inst_tab_thm sign (inst', tinst')) thms) |
|
307 |
end) |
|
308 |
end; |
|
309 |
||
310 |
(* add registration if not subsumed by ones already present, |
|
311 |
additionally returns registrations that are strictly subsumed *) |
|
312 |
fun insert sign (ts, attn) regs = |
|
313 |
let |
|
314 |
val tsig = Sign.tsig_of sign; |
|
315 |
val t = termify ts; |
|
316 |
val subs = subsumers tsig t regs ; |
|
317 |
in (case subs of |
|
318 |
[] => let |
|
319 |
val sups = |
|
320 |
List.filter (fn (t', _) => Pattern.matches tsig (t, t')) (Termtab.dest regs); |
|
321 |
val sups' = map (apfst untermify) sups |
|
322 |
in (Termtab.update ((t, (attn, [])), regs), sups') end |
|
323 |
| _ => (regs, [])) |
|
324 |
end; |
|
325 |
||
326 |
(* add witness theorem to registration, |
|
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
327 |
only if instantiation is exact, otherwise exception Option raised *) |
15837 | 328 |
fun add_witness ts thm regs = |
329 |
let |
|
330 |
val t = termify ts; |
|
331 |
val (x, thms) = valOf (Termtab.lookup (regs, t)); |
|
332 |
in |
|
333 |
Termtab.update ((t, (x, thm::thms)), regs) |
|
334 |
end; |
|
335 |
end; |
|
336 |
||
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
337 |
|
15837 | 338 |
(** theory data **) |
15596 | 339 |
|
16458 | 340 |
structure GlobalLocalesData = TheoryDataFun |
341 |
(struct |
|
12014 | 342 |
val name = "Isar/locales"; |
15837 | 343 |
type T = NameSpace.T * locale Symtab.table * Registrations.T Symtab.table; |
15596 | 344 |
(* 1st entry: locale namespace, |
345 |
2nd entry: locales of the theory, |
|
15837 | 346 |
3rd entry: registrations, indexed by locale name *) |
11896 | 347 |
|
15596 | 348 |
val empty = (NameSpace.empty, Symtab.empty, Symtab.empty); |
12063 | 349 |
val copy = I; |
16458 | 350 |
val extend = I; |
12289 | 351 |
|
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
352 |
fun join_locs _ ({predicate, import, elems, params, regs}: locale, |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
353 |
{elems = elems', regs = regs', ...}: locale) = |
15596 | 354 |
SOME {predicate = predicate, import = import, |
355 |
elems = gen_merge_lists eq_snd elems elems', |
|
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
356 |
params = params, |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
357 |
regs = merge_alists regs regs'}; |
16458 | 358 |
fun merge _ ((space1, locs1, regs1), (space2, locs2, regs2)) = |
15596 | 359 |
(NameSpace.merge (space1, space2), Symtab.join join_locs (locs1, locs2), |
16458 | 360 |
Symtab.join (K (SOME o Registrations.join)) (regs1, regs2)); |
12289 | 361 |
|
15596 | 362 |
fun print _ (space, locs, _) = |
16346 | 363 |
Pretty.strs ("locales:" :: map #1 (NameSpace.extern_table (space, locs))) |
12014 | 364 |
|> Pretty.writeln; |
16458 | 365 |
end); |
11896 | 366 |
|
15801 | 367 |
val _ = Context.add_setup [GlobalLocalesData.init]; |
368 |
||
369 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
370 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
371 |
(** context data **) |
11896 | 372 |
|
16458 | 373 |
structure LocalLocalesData = ProofDataFun |
374 |
(struct |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
375 |
val name = "Isar/locales"; |
15837 | 376 |
type T = Registrations.T Symtab.table; |
377 |
(* registrations, indexed by locale name *) |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
378 |
fun init _ = Symtab.empty; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
379 |
fun print _ _ = (); |
16458 | 380 |
end); |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
381 |
|
15801 | 382 |
val _ = Context.add_setup [LocalLocalesData.init]; |
12289 | 383 |
|
12277 | 384 |
|
385 |
(* access locales *) |
|
386 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
387 |
val print_locales = GlobalLocalesData.print; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
388 |
|
16458 | 389 |
val intern = NameSpace.intern o #1 o GlobalLocalesData.get; |
390 |
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
|
391 |
|
16144 | 392 |
fun declare_locale name thy = |
393 |
thy |> GlobalLocalesData.map (fn (space, locs, regs) => |
|
16458 | 394 |
(Sign.declare_name thy name space, locs, regs)); |
11896 | 395 |
|
15596 | 396 |
fun put_locale name loc = |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
397 |
GlobalLocalesData.map (fn (space, locs, regs) => |
15596 | 398 |
(space, Symtab.update ((name, loc), locs), regs)); |
399 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
400 |
fun get_locale thy name = Symtab.lookup (#2 (GlobalLocalesData.get thy), name); |
11896 | 401 |
|
12014 | 402 |
fun the_locale thy name = |
403 |
(case get_locale thy name of |
|
15531 | 404 |
SOME loc => loc |
405 |
| NONE => error ("Unknown locale " ^ quote name)); |
|
11896 | 406 |
|
12046 | 407 |
|
15596 | 408 |
(* access registrations *) |
409 |
||
15696 | 410 |
(* Ids of global registrations are varified, |
411 |
Ids of local registrations are not. |
|
412 |
Thms of registrations are never varified. *) |
|
413 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
414 |
(* retrieve registration from theory or context *) |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
415 |
|
15696 | 416 |
fun gen_get_registrations get thy_ctxt name = |
417 |
case Symtab.lookup (get thy_ctxt, name) of |
|
418 |
NONE => [] |
|
15837 | 419 |
| SOME reg => Registrations.dest reg; |
15696 | 420 |
|
421 |
val get_global_registrations = |
|
422 |
gen_get_registrations (#3 o GlobalLocalesData.get); |
|
423 |
val get_local_registrations = |
|
424 |
gen_get_registrations LocalLocalesData.get; |
|
425 |
||
16458 | 426 |
fun gen_get_registration get thy_of thy_ctxt (name, ps) = |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
427 |
case Symtab.lookup (get thy_ctxt, name) of |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
428 |
NONE => NONE |
16458 | 429 |
| 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
|
430 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
431 |
val get_global_registration = |
16458 | 432 |
gen_get_registration (#3 o GlobalLocalesData.get) I; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
433 |
val get_local_registration = |
16458 | 434 |
gen_get_registration LocalLocalesData.get ProofContext.theory_of; |
15596 | 435 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
436 |
val test_global_registration = isSome oo get_global_registration; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
437 |
val test_local_registration = isSome oo get_local_registration; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
438 |
fun smart_test_registration ctxt id = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
439 |
let |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
440 |
val thy = ProofContext.theory_of ctxt; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
441 |
in |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
442 |
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
|
443 |
end; |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
444 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
445 |
|
15837 | 446 |
(* 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
|
447 |
|
16458 | 448 |
fun gen_put_registration map_data thy_of (name, ps) attn thy_ctxt = |
15837 | 449 |
map_data (fn regs => |
450 |
let |
|
16458 | 451 |
val thy = thy_of thy_ctxt; |
15837 | 452 |
val reg = getOpt (Symtab.lookup (regs, name), Registrations.empty); |
16458 | 453 |
val (reg', sups) = Registrations.insert thy (ps, attn) reg; |
15837 | 454 |
val _ = if not (null sups) then warning |
455 |
("Subsumed interpretation(s) of locale " ^ |
|
16458 | 456 |
quote (extern thy name) ^ |
15837 | 457 |
"\nby interpretation(s) with the following prefix(es):\n" ^ |
458 |
commas_quote (map (fn (_, ((s, _), _)) => s) sups)) |
|
459 |
else (); |
|
460 |
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
|
461 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
462 |
val put_global_registration = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
463 |
gen_put_registration (fn f => |
16458 | 464 |
GlobalLocalesData.map (fn (space, locs, regs) => (space, locs, f regs))) I; |
15837 | 465 |
val put_local_registration = |
16458 | 466 |
gen_put_registration LocalLocalesData.map ProofContext.theory_of; |
15596 | 467 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
468 |
fun put_registration_in_locale name id thy = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
469 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
470 |
val {predicate, import, elems, params, regs} = the_locale thy name; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
471 |
in |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
472 |
put_locale name {predicate = predicate, import = import, |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
473 |
elems = elems, params = params, regs = regs @ [(id, [])]} thy |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
474 |
end; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
475 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
476 |
|
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
477 |
(* add witness theorem to registration in theory or context, |
15596 | 478 |
ignored if registration not present *) |
479 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
480 |
fun gen_add_witness map (name, ps) thm = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
481 |
map (fn regs => |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
482 |
let |
15837 | 483 |
val reg = valOf (Symtab.lookup (regs, name)); |
15596 | 484 |
in |
15837 | 485 |
Symtab.update ((name, Registrations.add_witness ps thm reg), regs) |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
486 |
end handle Option => regs); |
15596 | 487 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
488 |
val add_global_witness = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
489 |
gen_add_witness (fn f => |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
490 |
GlobalLocalesData.map (fn (space, locs, regs) => |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
491 |
(space, locs, f regs))); |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
492 |
val add_local_witness = gen_add_witness LocalLocalesData.map; |
15596 | 493 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
494 |
fun add_witness_in_locale name id thm thy = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
495 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
496 |
val {predicate, import, elems, params, regs} = the_locale thy name; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
497 |
fun add (id', thms) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
498 |
if id = id' then (id', thm :: thms) else (id', thms); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
499 |
in |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
500 |
put_locale name {predicate = predicate, import = import, |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
501 |
elems = elems, params = params, regs = map add regs} thy |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
502 |
end; |
15596 | 503 |
|
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
504 |
(* import hierarchy |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
505 |
implementation could be more efficient, eg. by maintaining a database |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
506 |
of dependencies *) |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
507 |
|
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
508 |
fun imports thy (upper, lower) = |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
509 |
let |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
510 |
fun imps (Locale name) low = (name = low) orelse |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
511 |
(case get_locale thy name of |
15531 | 512 |
NONE => false |
513 |
| SOME {import, ...} => imps import low) |
|
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
514 |
| imps (Rename (expr, _)) low = imps expr low |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
515 |
| imps (Merge es) low = exists (fn e => imps e low) es; |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
516 |
in |
16458 | 517 |
imps (Locale (intern thy upper)) (intern thy lower) |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
518 |
end; |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
519 |
|
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
520 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
521 |
(* printing of registrations *) |
15596 | 522 |
|
15703 | 523 |
fun gen_print_registrations get_regs mk_ctxt msg loc thy_ctxt = |
15596 | 524 |
let |
15703 | 525 |
val ctxt = mk_ctxt thy_ctxt; |
526 |
val thy = ProofContext.theory_of ctxt; |
|
527 |
||
528 |
val prt_term = Pretty.quote o ProofContext.pretty_term ctxt; |
|
529 |
val prt_atts = Args.pretty_attribs ctxt; |
|
530 |
fun prt_inst (ts, (("", []), thms)) = |
|
531 |
Pretty.enclose "(" ")" (Pretty.breaks (map prt_term ts)) |
|
532 |
| prt_inst (ts, ((prfx, atts), thms)) = |
|
15837 | 533 |
Pretty.block ( |
534 |
(Pretty.breaks (Pretty.str prfx :: prt_atts atts) @ |
|
535 |
[Pretty.str ":", Pretty.brk 1, |
|
536 |
Pretty.enclose "(" ")" (Pretty.breaks (map prt_term ts))])); |
|
15703 | 537 |
|
16458 | 538 |
val loc_int = intern thy loc; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
539 |
val regs = get_regs thy_ctxt; |
15596 | 540 |
val loc_regs = Symtab.lookup (regs, loc_int); |
541 |
in |
|
542 |
(case loc_regs of |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
543 |
NONE => Pretty.str ("No interpretations in " ^ msg ^ ".") |
15763
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
544 |
| SOME r => let |
15837 | 545 |
val r' = Registrations.dest r; |
15763
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
546 |
val r'' = Library.sort_wrt (fn (_, ((prfx, _), _)) => prfx) r'; |
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
547 |
in Pretty.big_list ("Interpretations in " ^ msg ^ ":") |
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
548 |
(map prt_inst r'') |
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
ballarin
parents:
15749
diff
changeset
|
549 |
end) |
15596 | 550 |
|> Pretty.writeln |
551 |
end; |
|
552 |
||
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
553 |
val print_global_registrations = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
554 |
gen_print_registrations (#3 o GlobalLocalesData.get) |
15703 | 555 |
ProofContext.init "theory"; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
556 |
val print_local_registrations' = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
557 |
gen_print_registrations LocalLocalesData.get |
15703 | 558 |
I "context"; |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
559 |
fun print_local_registrations loc ctxt = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
560 |
(print_global_registrations loc (ProofContext.theory_of ctxt); |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
561 |
print_local_registrations' loc ctxt); |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15623
diff
changeset
|
562 |
|
15596 | 563 |
|
12277 | 564 |
(* diagnostics *) |
12273 | 565 |
|
12277 | 566 |
fun err_in_locale ctxt msg ids = |
567 |
let |
|
16458 | 568 |
val thy = ProofContext.theory_of ctxt; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
569 |
fun prt_id (name, parms) = |
16458 | 570 |
[Pretty.block (Pretty.breaks (map Pretty.str (extern thy name :: parms)))]; |
15570 | 571 |
val prt_ids = List.concat (separate [Pretty.str " +", Pretty.brk 1] (map prt_id ids)); |
12502 | 572 |
val err_msg = |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
573 |
if forall (equal "" o #1) ids then msg |
12502 | 574 |
else msg ^ "\n" ^ Pretty.string_of (Pretty.block |
575 |
(Pretty.str "The error(s) above occurred in locale:" :: Pretty.brk 1 :: prt_ids)); |
|
576 |
in raise ProofContext.CONTEXT (err_msg, ctxt) end; |
|
12063 | 577 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
578 |
(* Version for identifiers with axioms *) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
579 |
|
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
580 |
fun err_in_locale' ctxt msg ids' = err_in_locale ctxt msg (map fst ids'); |
12277 | 581 |
|
582 |
||
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
583 |
(** primitives **) |
12046 | 584 |
|
15703 | 585 |
(* map elements *) |
586 |
||
587 |
fun map_elem {name, var, typ, term, fact, attrib} = |
|
588 |
fn Fixes fixes => Fixes (fixes |> map (fn (x, T, mx) => |
|
589 |
let val (x', mx') = var (x, mx) in (x', Option.map typ T, mx') end)) |
|
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
590 |
| Constrains csts => Constrains (csts |> map (fn (x, T) => |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
591 |
let val (x', _) = var (x, SOME Syntax.NoSyn) in (x', typ T) end)) |
15703 | 592 |
| Assumes asms => Assumes (asms |> map (fn ((a, atts), propps) => |
593 |
((name a, map attrib atts), propps |> map (fn (t, (ps, qs)) => |
|
594 |
(term t, (map term ps, map term qs)))))) |
|
595 |
| Defines defs => Defines (defs |> map (fn ((a, atts), (t, ps)) => |
|
596 |
((name a, map attrib atts), (term t, map term ps)))) |
|
597 |
| Notes facts => Notes (facts |> map (fn ((a, atts), bs) => |
|
598 |
((name a, map attrib atts), bs |> map (fn (ths, btts) => (fact ths, map attrib btts))))); |
|
599 |
||
600 |
fun map_values typ term thm = map_elem |
|
601 |
{name = I, var = I, typ = typ, term = term, fact = map thm, |
|
602 |
attrib = Args.map_values I typ term thm}; |
|
603 |
||
604 |
||
605 |
(* map attributes *) |
|
606 |
||
607 |
fun map_attrib_specs f = map (apfst (apsnd (map f))); |
|
608 |
fun map_attrib_facts f = map (apfst (apsnd (map f)) o apsnd (map (apsnd (map f)))); |
|
609 |
||
610 |
fun map_attrib_elem f = map_elem {name = I, var = I, typ = I, term = I, fact = I, attrib = f}; |
|
611 |
||
16458 | 612 |
fun intern_attrib_elem thy = map_attrib_elem (Attrib.intern_src thy); |
15703 | 613 |
|
614 |
fun intern_attrib_elem_expr thy (Elem elem) = Elem (intern_attrib_elem thy elem) |
|
615 |
| intern_attrib_elem_expr _ (Expr expr) = Expr expr; |
|
616 |
||
617 |
||
12277 | 618 |
(* renaming *) |
12263 | 619 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
620 |
(* ren maps names to (new) names and syntax; represented as association list *) |
12263 | 621 |
|
15703 | 622 |
fun rename_var ren (x, mx) = |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
623 |
case assoc_string (ren, x) of |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
624 |
NONE => (x, mx) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
625 |
| SOME (x', NONE) => |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
626 |
(x', if mx = NONE then mx else SOME Syntax.NoSyn) (*drop syntax*) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
627 |
| SOME (x', SOME mx') => |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
628 |
if mx = NONE then raise ERROR_MESSAGE |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
629 |
("Attempt to change syntax of structure parameter " ^ quote x) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
630 |
else (x', SOME mx'); (*change syntax*) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
631 |
|
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
632 |
fun rename ren x = |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
633 |
case assoc_string (ren, x) of |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
634 |
NONE => x |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
635 |
| SOME (x', _) => x'; (*ignore syntax*) |
15703 | 636 |
|
12263 | 637 |
fun rename_term ren (Free (x, T)) = Free (rename ren x, T) |
638 |
| rename_term ren (t $ u) = rename_term ren t $ rename_term ren u |
|
639 |
| rename_term ren (Abs (x, T, t)) = Abs (x, T, rename_term ren t) |
|
640 |
| rename_term _ a = a; |
|
641 |
||
642 |
fun rename_thm ren th = |
|
643 |
let |
|
16458 | 644 |
val {thy, hyps, prop, maxidx, ...} = Thm.rep_thm th; |
645 |
val cert = Thm.cterm_of thy; |
|
16861 | 646 |
val (xs, Ts) = Library.split_list (fold Term.add_frees (prop :: hyps) []); |
12263 | 647 |
val xs' = map (rename ren) xs; |
648 |
fun cert_frees names = map (cert o Free) (names ~~ Ts); |
|
649 |
fun cert_vars names = map (cert o Var o apfst (rpair (maxidx + 1))) (names ~~ Ts); |
|
650 |
in |
|
651 |
if xs = xs' then th |
|
652 |
else |
|
653 |
th |
|
654 |
|> Drule.implies_intr_list (map cert hyps) |
|
655 |
|> Drule.forall_intr_list (cert_frees xs) |
|
656 |
|> Drule.forall_elim_list (cert_vars xs) |
|
657 |
|> Thm.instantiate ([], cert_vars xs ~~ cert_frees xs') |
|
658 |
|> (fn th' => Drule.implies_elim_list th' (map (Thm.assume o cert o rename_term ren) hyps)) |
|
659 |
end; |
|
660 |
||
15703 | 661 |
fun rename_elem ren = |
662 |
map_values I (rename_term ren) (rename_thm ren) o |
|
663 |
map_elem {name = I, typ = I, term = I, fact = I, attrib = I, var = rename_var ren}; |
|
12263 | 664 |
|
16144 | 665 |
fun rename_facts prfx = |
666 |
map_elem {var = I, typ = I, term = I, fact = I, attrib = I, name = NameSpace.qualified prfx}; |
|
12307 | 667 |
|
12263 | 668 |
|
12502 | 669 |
(* type instantiation *) |
670 |
||
671 |
fun inst_type [] T = T |
|
15570 | 672 |
| inst_type env T = Term.map_type_tfree (fn v => getOpt (assoc (env, v), TFree v)) T; |
12502 | 673 |
|
674 |
fun inst_term [] t = t |
|
675 |
| inst_term env t = Term.map_term_types (inst_type env) t; |
|
676 |
||
13211
aabdb4b33625
BUG FIX in inst_thm: use current context instead of that of thm!!!
wenzelm
parents:
12958
diff
changeset
|
677 |
fun inst_thm _ [] th = th |
aabdb4b33625
BUG FIX in inst_thm: use current context instead of that of thm!!!
wenzelm
parents:
12958
diff
changeset
|
678 |
| inst_thm ctxt env th = |
12502 | 679 |
let |
16458 | 680 |
val thy = ProofContext.theory_of ctxt; |
681 |
val cert = Thm.cterm_of thy; |
|
682 |
val certT = Thm.ctyp_of thy; |
|
13211
aabdb4b33625
BUG FIX in inst_thm: use current context instead of that of thm!!!
wenzelm
parents:
12958
diff
changeset
|
683 |
val {hyps, prop, maxidx, ...} = Thm.rep_thm th; |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
684 |
val tfrees = foldr Term.add_term_tfree_names [] (prop :: hyps); |
15570 | 685 |
val env' = List.filter (fn ((a, _), _) => a mem_string tfrees) env; |
12502 | 686 |
in |
687 |
if null env' then th |
|
688 |
else |
|
689 |
th |
|
690 |
|> Drule.implies_intr_list (map cert hyps) |
|
12575 | 691 |
|> Drule.tvars_intr_list (map (#1 o #1) env') |
12502 | 692 |
|> (fn (th', al) => th' |> |
15798
016f3be5a5ec
Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents:
15763
diff
changeset
|
693 |
Thm.instantiate ((map (fn ((a, _), T) => |
016f3be5a5ec
Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents:
15763
diff
changeset
|
694 |
(certT (TVar (valOf (assoc (al, a)))), certT T)) env'), [])) |
12502 | 695 |
|> (fn th'' => Drule.implies_elim_list th'' |
696 |
(map (Thm.assume o cert o inst_term env') hyps)) |
|
697 |
end; |
|
698 |
||
15703 | 699 |
fun inst_elem ctxt env = |
700 |
map_values (inst_type env) (inst_term env) (inst_thm ctxt env); |
|
12502 | 701 |
|
702 |
||
15696 | 703 |
(* term and type instantiation, variant using symbol tables *) |
704 |
||
705 |
(* instantiate TFrees *) |
|
706 |
||
16458 | 707 |
fun tinst_tab_elem thy tinst = |
708 |
map_values (tinst_tab_type tinst) (tinst_tab_term tinst) (tinst_tab_thm thy tinst); |
|
15749 | 709 |
|
15696 | 710 |
(* instantiate TFrees and Frees *) |
711 |
||
16458 | 712 |
fun inst_tab_elem thy (inst as (_, tinst)) = |
713 |
map_values (tinst_tab_type tinst) (inst_tab_term inst) (inst_tab_thm thy inst); |
|
15696 | 714 |
|
16458 | 715 |
fun inst_tab_elems thy inst ((n, ps), elems) = |
716 |
((n, map (inst_tab_term inst) ps), map (inst_tab_elem thy inst) elems); |
|
15696 | 717 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
718 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
719 |
(** structured contexts: rename + merge + implicit type instantiation **) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
720 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
721 |
(* parameter types *) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
722 |
|
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
723 |
(* CB: frozen_tvars has the following type: |
15798
016f3be5a5ec
Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents:
15763
diff
changeset
|
724 |
ProofContext.context -> Term.typ list -> (Term.indexname * (sort * Term.typ)) list *) |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
725 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
726 |
fun frozen_tvars ctxt Ts = |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
727 |
let |
16861 | 728 |
val tvars = rev (fold Term.add_tvarsT Ts []); |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
729 |
val tfrees = map TFree |
14695 | 730 |
(Term.invent_names (ProofContext.used_types ctxt) "'a" (length tvars) ~~ map #2 tvars); |
15798
016f3be5a5ec
Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents:
15763
diff
changeset
|
731 |
in map (fn ((x, S), y) => (x, (S, y))) (tvars ~~ tfrees) end; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
732 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
733 |
fun unify_frozen ctxt maxidx Ts Us = |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
734 |
let |
15531 | 735 |
fun paramify (i, NONE) = (i, NONE) |
736 |
| paramify (i, SOME T) = apsnd SOME (TypeInfer.paramify_dummies (i, T)); |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
737 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
738 |
val (maxidx', Ts') = foldl_map paramify (maxidx, Ts); |
12727 | 739 |
val (maxidx'', Us') = foldl_map paramify (maxidx', Us); |
16947 | 740 |
val thy = ProofContext.theory_of ctxt; |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
741 |
|
16947 | 742 |
fun unify (env, (SOME T, SOME U)) = (Sign.typ_unify thy (U, T) env |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
743 |
handle Type.TUNIFY => |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
744 |
raise TYPE ("unify_frozen: failed to unify types", [U, T], [])) |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
745 |
| unify (env, _) = env; |
15570 | 746 |
val (unifier, _) = Library.foldl unify ((Vartab.empty, maxidx''), Ts' ~~ Us'); |
747 |
val Vs = map (Option.map (Envir.norm_type unifier)) Us'; |
|
748 |
val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (List.mapPartial I Vs)); |
|
749 |
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
|
750 |
|
15570 | 751 |
fun params_of elemss = gen_distinct eq_fst (List.concat (map (snd o fst) elemss)); |
752 |
fun params_of' elemss = gen_distinct eq_fst (List.concat (map (snd o fst o fst) elemss)); |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
753 |
fun params_syn_of syn elemss = |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
754 |
gen_distinct eq_fst (List.concat (map (snd o fst) elemss)) |> |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
755 |
map (apfst (fn x => (x, valOf (Symtab.lookup (syn, x))))); |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
756 |
|
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
757 |
|
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
758 |
(* CB: param_types has the following type: |
15531 | 759 |
('a * 'b option) list -> ('a * 'b) list *) |
15570 | 760 |
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
|
761 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
762 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
763 |
fun merge_syntax ctxt ids ss = Symtab.merge (op =) ss |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
764 |
handle Symtab.DUPS xs => err_in_locale ctxt |
16105 | 765 |
("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
|
766 |
|
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
767 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
768 |
(* Distinction of assumed vs. derived identifiers. |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
769 |
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
|
770 |
assumptions of the specification fragment (for locales with |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
771 |
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
|
772 |
specification fragment to assumptions of other (assumed) specification |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
773 |
fragments. *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
774 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
775 |
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
|
776 |
|
17033 | 777 |
fun map_mode2 f _ (Assumed x) = Assumed (f x) |
778 |
| map_mode2 _ g (Derived x) = Derived (g x); |
|
779 |
||
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
780 |
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
|
781 |
| map_mode f (Derived x) = Derived (f x); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
782 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
783 |
(* flatten expressions *) |
11896 | 784 |
|
12510 | 785 |
local |
12502 | 786 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
787 |
(* CB: OUTDATED unique_parms has the following type: |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
788 |
'a -> |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
789 |
(('b * (('c * 'd) list * Symtab.key list)) * 'e) list -> |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
790 |
(('b * ('c * 'd) list) * 'e) list *) |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
791 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
792 |
fun unique_parms ctxt elemss = |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
793 |
let |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
794 |
val param_decls = |
15570 | 795 |
List.concat (map (fn (((name, (ps, qs)), _), _) => map (rpair (name, ps)) qs) elemss) |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
796 |
|> Symtab.make_multi |> Symtab.dest; |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
797 |
in |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
798 |
(case find_first (fn (_, ids) => length ids > 1) param_decls of |
15531 | 799 |
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
|
800 |
(map (apsnd (map fst)) ids) |
15531 | 801 |
| NONE => map (apfst (apfst (apsnd #1))) elemss) |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
802 |
end; |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
803 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
804 |
fun unify_parms ctxt (fixed_parms : (string * typ) list) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
805 |
(raw_parmss : (string * typ option) list list) = |
12502 | 806 |
let |
16458 | 807 |
val thy = ProofContext.theory_of ctxt; |
12502 | 808 |
val maxidx = length raw_parmss; |
809 |
val idx_parmss = (0 upto maxidx - 1) ~~ raw_parmss; |
|
810 |
||
811 |
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
|
812 |
fun varify_parms (i, ps) = map (apsnd (varify i)) (param_types ps); |
15570 | 813 |
val parms = fixed_parms @ List.concat (map varify_parms idx_parmss); |
12502 | 814 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
815 |
fun unify T ((env, maxidx), U) = |
16947 | 816 |
Sign.typ_unify thy (U, T) (env, maxidx) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
817 |
handle Type.TUNIFY => |
16458 | 818 |
let val prt = Sign.string_of_typ thy |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
819 |
in raise TYPE ("unify_parms: failed to unify types " ^ |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
820 |
prt U ^ " and " ^ prt T, [U, T], []) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
821 |
end |
15570 | 822 |
fun unify_list (envir, T :: Us) = Library.foldl (unify T) (envir, Us) |
12502 | 823 |
| unify_list (envir, []) = envir; |
15570 | 824 |
val (unifier, _) = Library.foldl unify_list |
12502 | 825 |
((Vartab.empty, maxidx), map #2 (Symtab.dest (Symtab.make_multi parms))); |
826 |
||
827 |
val parms' = map (apsnd (Envir.norm_type unifier)) (gen_distinct eq_fst parms); |
|
828 |
val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (map #2 parms')); |
|
829 |
||
830 |
fun inst_parms (i, ps) = |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
831 |
foldr Term.add_typ_tfrees [] (List.mapPartial snd ps) |
15570 | 832 |
|> List.mapPartial (fn (a, S) => |
12502 | 833 |
let val T = Envir.norm_type unifier' (TVar ((a, i), S)) |
15531 | 834 |
in if T = TFree (a, S) then NONE else SOME ((a, S), T) end) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
835 |
in map inst_parms idx_parmss end : ((string * Term.sort) * Term.typ) list list; |
12502 | 836 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
837 |
in |
12502 | 838 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
839 |
fun unify_elemss _ _ [] = [] |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
840 |
| unify_elemss _ [] [elems] = [elems] |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
841 |
| unify_elemss ctxt fixed_parms elemss = |
12502 | 842 |
let |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
843 |
val envs = unify_parms ctxt fixed_parms (map (#2 o #1 o #1) elemss); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
844 |
fun inst ((((name, ps), mode), elems), env) = |
15570 | 845 |
(((name, map (apsnd (Option.map (inst_type env))) ps), |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
846 |
map_mode (map (inst_thm ctxt env)) mode), |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
847 |
map (inst_elem ctxt env) elems); |
12839 | 848 |
in map inst (elemss ~~ envs) end; |
12502 | 849 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
850 |
(* like unify_elemss, but does not touch mode, additional |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16620
diff
changeset
|
851 |
parameter c_parms for enforcing further constraints (eg. syntax) *) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
852 |
|
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
853 |
fun unify_elemss' _ _ [] [] = [] |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
854 |
| unify_elemss' _ [] [elems] [] = [elems] |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
855 |
| unify_elemss' ctxt fixed_parms elemss c_parms = |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
856 |
let |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
857 |
val envs = unify_parms ctxt fixed_parms (map (#2 o #1 o #1) elemss @ map single c_parms); |
17033 | 858 |
fun inst ((((name, ps), (ps', mode)), elems), env) = |
859 |
(((name, map (apsnd (Option.map (inst_type env))) ps), |
|
860 |
(ps', mode)), |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
861 |
map (inst_elem ctxt env) elems); |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
862 |
in map inst (elemss ~~ (Library.take (length elemss, envs))) end; |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
863 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
864 |
|
15596 | 865 |
(* flatten_expr: |
866 |
Extend list of identifiers by those new in locale expression expr. |
|
867 |
Compute corresponding list of lists of locale elements (one entry per |
|
868 |
identifier). |
|
869 |
||
870 |
Identifiers represent locale fragments and are in an extended form: |
|
871 |
((name, ps), (ax_ps, axs)) |
|
872 |
(name, ps) is the locale name with all its parameters. |
|
873 |
(ax_ps, axs) is the locale axioms with its parameters; |
|
874 |
axs are always taken from the top level of the locale hierarchy, |
|
875 |
hence axioms may contain additional parameters from later fragments: |
|
876 |
ps subset of ax_ps. axs is either singleton or empty. |
|
877 |
||
878 |
Elements are enriched by identifier-like information: |
|
879 |
(((name, ax_ps), axs), elems) |
|
880 |
The parameters in ax_ps are the axiom parameters, but enriched by type |
|
881 |
info: now each entry is a pair of string and typ option. Axioms are |
|
882 |
type-instantiated. |
|
883 |
||
884 |
*) |
|
885 |
||
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
886 |
fun flatten_expr ctxt ((prev_idents, prev_syntax), expr) = |
12014 | 887 |
let |
888 |
val thy = ProofContext.theory_of ctxt; |
|
15596 | 889 |
(* thy used for retrieval of locale info, |
890 |
ctxt for error messages, parameter unification and instantiation |
|
891 |
of axioms *) |
|
12263 | 892 |
|
15531 | 893 |
fun renaming (SOME x :: xs) (y :: ys) = (y, x) :: renaming xs ys |
894 |
| renaming (NONE :: xs) (y :: ys) = renaming xs ys |
|
12273 | 895 |
| renaming [] _ = [] |
12289 | 896 |
| renaming xs [] = raise ERROR_MESSAGE ("Too many arguments in renaming: " ^ |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
897 |
commas (map (fn NONE => "_" | SOME x => quote (fst x)) xs)); |
12289 | 898 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
899 |
fun rename_parms top ren ((name, ps), (parms, mode)) = |
12289 | 900 |
let val ps' = map (rename ren) ps in |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
901 |
(case duplicates ps' of |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
902 |
[] => (case mode of |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
903 |
Assumed axs => ((name, ps'), |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
904 |
if top then (map (rename ren) parms, |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
905 |
Assumed (map (rename_thm ren) axs)) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
906 |
else (parms, Assumed axs)) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
907 |
| Derived ths => ((name, ps'), |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
908 |
(map (rename ren) parms, Derived (map (rename_thm ren) ths)))) |
12289 | 909 |
| dups => err_in_locale ctxt ("Duplicate parameters: " ^ commas_quote dups) [(name, ps')]) |
910 |
end; |
|
12263 | 911 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
912 |
(* add registrations of (name, ps), recursively; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
913 |
adjust hyps of witness theorems *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
914 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
915 |
fun add_regs (name, ps) (ths, ids) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
916 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
917 |
val {params, regs, ...} = the_locale thy name; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
918 |
val ren = map (#1 o #1) (#1 params) ~~ map (fn x => (x, NONE)) ps; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
919 |
(* dummy syntax, since required by rename *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
920 |
val regs' = map (fn ((name, ps), ths) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
921 |
((name, map (rename ren) ps), ths)) regs; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
922 |
val new_regs = gen_rems eq_fst (regs', ids); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
923 |
val new_ids = map fst new_regs; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
924 |
val new_ths = map (fn (_, ths') => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
925 |
map (Drule.satisfy_hyps ths o rename_thm ren) ths') new_regs; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
926 |
val new_ids' = map (fn (id, ths) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
927 |
(id, ([], Derived ths))) (new_ids ~~ new_ths); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
928 |
in |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
929 |
fold add_regs new_ids (ths @ List.concat new_ths, ids @ new_ids') |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
930 |
end; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
931 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
932 |
(* distribute top-level axioms over assumed ids *) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
933 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
934 |
fun axiomify all_ps ((name, parms), (_, Assumed _)) axioms = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
935 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
936 |
val {elems, ...} = the_locale thy name; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
937 |
val ts = List.concat (map |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
938 |
(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
|
939 |
| _ => []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
940 |
elems); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
941 |
val (axs1, axs2) = splitAt (length ts, axioms); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
942 |
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
|
943 |
| axiomify all_ps (id, (_, Derived ths)) axioms = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
944 |
((id, (all_ps, Derived ths)), axioms); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
945 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
946 |
fun identify top (Locale name) = |
15596 | 947 |
(* 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
|
948 |
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
|
949 |
a list of axioms relating to the identifier, axs is empty unless |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
950 |
identify at top level (top = true); |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
951 |
parms is accumulated list of parameters *) |
12289 | 952 |
let |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
953 |
val {predicate = (_, axioms), import, params, ...} = |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
954 |
the_locale thy name; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
955 |
val ps = map (#1 o #1) (#1 params); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
956 |
val (ids', parms', _, ths) = identify false import; |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
957 |
(* acyclic import dependencies *) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
958 |
val ids'' = ids' @ [((name, ps), ([], Assumed []))]; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
959 |
val (ths', ids''') = add_regs (name, ps) (ths, ids''); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
960 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
961 |
val ids_ax = if top then fst |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
962 |
(fold_map (axiomify ps) ids''' axioms) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
963 |
else ids'''; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
964 |
val syn = Symtab.make (map (apfst fst) (#1 params)); |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
965 |
in (ids_ax, merge_lists parms' ps, syn, ths') end |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
966 |
| identify top (Rename (e, xs)) = |
12273 | 967 |
let |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
968 |
val (ids', parms', syn', ths) = identify top e; |
12839 | 969 |
val ren = renaming xs parms' |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
970 |
handle ERROR_MESSAGE msg => err_in_locale' ctxt msg ids'; |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
971 |
val ids'' = gen_distinct eq_fst (map (rename_parms top ren) ids'); |
15570 | 972 |
val parms'' = distinct (List.concat (map (#2 o #1) ids'')); |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
973 |
val syn'' = syn' |> Symtab.dest |> map (rename_var ren) |> |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
974 |
Symtab.make; |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
975 |
(* check for conflicting syntax? *) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
976 |
val ths' = map (rename_thm ren) ths; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
977 |
in (ids'', parms'', syn'', ths') end |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
978 |
| identify top (Merge es) = |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
979 |
fold (fn e => fn (ids, parms, syn, ths) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
980 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
981 |
val (ids', parms', syn', ths') = identify top e |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
982 |
in |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
983 |
(merge_alists ids ids', |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
984 |
merge_lists parms parms', |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
985 |
merge_syntax ctxt ids' (syn, syn'), |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
986 |
merge_lists ths ths') |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
987 |
end) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
988 |
es ([], [], Symtab.empty, []); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
989 |
|
12014 | 990 |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
991 |
(* CB: enrich identifiers by parameter types and |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
992 |
the corresponding elements (with renamed parameters), |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
993 |
also takes care of parameter syntax *) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
994 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
995 |
fun eval syn ((name, xs), axs) = |
12273 | 996 |
let |
13308 | 997 |
val {params = (ps, qs), elems, ...} = the_locale thy name; |
16620
2a7f46324218
Proper treatment of beta-redexes in witness theorems.
ballarin
parents:
16458
diff
changeset
|
998 |
val ps' = map (apsnd SOME o #1) ps; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
999 |
val ren = map #1 ps' ~~ |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1000 |
map (fn x => (x, valOf (Symtab.lookup (syn, x)))) xs; |
13308 | 1001 |
val (params', elems') = |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1002 |
if null ren then ((ps', qs), map #1 elems) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1003 |
else ((map (apfst (rename ren)) ps', map (rename ren) qs), |
13308 | 1004 |
map (rename_elem ren o #1) elems); |
13375 | 1005 |
val elems'' = map (rename_facts (space_implode "_" xs)) elems'; |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1006 |
in (((name, params'), axs), elems'') end; |
12307 | 1007 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1008 |
(* type constraint for renamed parameter with syntax *) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1009 |
fun type_syntax NONE = NONE |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1010 |
| type_syntax (SOME mx) = let |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1011 |
val Ts = map (fn x => TFree (x, [])) (Term.invent_names [] "'mxa" |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1012 |
(Syntax.mixfix_args mx + 1)) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1013 |
in Ts |> Library.split_last |> op ---> |> SOME end; |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1014 |
|
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1015 |
(* compute identifiers and syntax, merge with previous ones *) |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1016 |
val (ids, _, syn, _) = identify true expr; |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1017 |
val idents = gen_rems eq_fst (ids, prev_idents); |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1018 |
val syntax = merge_syntax ctxt ids (syn, prev_syntax); |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1019 |
(* 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
|
1020 |
val raw_elemss = unique_parms ctxt (map (eval syntax) idents); |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1021 |
val elemss = unify_elemss' ctxt [] raw_elemss |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1022 |
(map (apsnd type_syntax) (Symtab.dest syntax)); |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1023 |
(* replace params in ids by params from axioms, |
17033 | 1024 |
adjust types in mode *) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1025 |
val all_params' = params_of' elemss; |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1026 |
val all_params = param_types all_params'; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1027 |
val elemss' = map (fn (((name, _), (ps, mode)), elems) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1028 |
(((name, map (fn p => (p, assoc (all_params, p))) ps), mode), elems)) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1029 |
elemss; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1030 |
fun inst_th th = let |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1031 |
val {hyps, prop, ...} = Thm.rep_thm th; |
16861 | 1032 |
val ps = map (apsnd SOME) (fold Term.add_frees (prop :: hyps) []); |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1033 |
val [env] = unify_parms ctxt all_params [ps]; |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1034 |
val th' = inst_thm ctxt env th; |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1035 |
in th' end; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1036 |
val final_elemss = map (fn ((id, mode), elems) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1037 |
((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
|
1038 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1039 |
in ((prev_idents @ idents, syntax), final_elemss) end; |
12046 | 1040 |
|
12510 | 1041 |
end; |
1042 |
||
12070 | 1043 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1044 |
(* activate elements *) |
12273 | 1045 |
|
12510 | 1046 |
local |
1047 |
||
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1048 |
fun export_axioms axs _ hyps th = |
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1049 |
th |> Drule.satisfy_hyps axs |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1050 |
(* CB: replace meta-hyps, using axs, by a single meta-hyp. *) |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1051 |
|> Drule.implies_intr_list (Library.drop (length axs, hyps)) |
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1052 |
(* CB: turn remaining hyps into assumptions. *) |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1053 |
|> Seq.single |
12263 | 1054 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1055 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1056 |
(* 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
|
1057 |
|
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1058 |
fun activate_elem _ ((ctxt, mode), Fixes fixes) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1059 |
((ctxt |> ProofContext.add_fixes fixes, mode), []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1060 |
| activate_elem _ ((ctxt, mode), Constrains _) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1061 |
((ctxt, mode), []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1062 |
| activate_elem _ ((ctxt, Assumed axs), Assumes asms) = |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1063 |
let |
15703 | 1064 |
val asms' = map_attrib_specs (Attrib.context_attribute_i ctxt) asms; |
1065 |
val ts = List.concat (map (map #1 o #2) asms'); |
|
1066 |
val (ps, qs) = splitAt (length ts, axs); |
|
13420 | 1067 |
val (ctxt', _) = |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1068 |
ctxt |> ProofContext.fix_frees ts |
15703 | 1069 |
|> ProofContext.assume_i (export_axioms ps) asms'; |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1070 |
in ((ctxt', Assumed qs), []) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1071 |
| activate_elem _ ((ctxt, Derived ths), Assumes asms) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1072 |
((ctxt, Derived ths), []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1073 |
| activate_elem _ ((ctxt, Assumed axs), Defines defs) = |
15596 | 1074 |
let |
15703 | 1075 |
val defs' = map_attrib_specs (Attrib.context_attribute_i ctxt) defs; |
15596 | 1076 |
val (ctxt', _) = |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1077 |
ctxt |> ProofContext.assume_i ProofContext.export_def |
15703 | 1078 |
(defs' |> map (fn ((name, atts), (t, ps)) => |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1079 |
let val (c, t') = ProofContext.cert_def ctxt t |
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1080 |
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
|
1081 |
in ((ctxt', Assumed axs), []) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1082 |
| activate_elem _ ((ctxt, Derived ths), Defines defs) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1083 |
((ctxt, Derived ths), []) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1084 |
| activate_elem is_ext ((ctxt, mode), Notes facts) = |
15596 | 1085 |
let |
15703 | 1086 |
val facts' = map_attrib_facts (Attrib.context_attribute_i ctxt) facts; |
1087 |
val (ctxt', res) = ctxt |> ProofContext.note_thmss_i facts'; |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1088 |
in ((ctxt', mode), if is_ext then res else []) end; |
12502 | 1089 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1090 |
fun activate_elems (((name, ps), mode), elems) ctxt = |
17033 | 1091 |
let |
1092 |
val ((ctxt', _), res) = |
|
1093 |
foldl_map (activate_elem (name = "")) ((ProofContext.qualified_names ctxt, mode), elems) |
|
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1094 |
handle ProofContext.CONTEXT (msg, ctxt) => err_in_locale ctxt msg [(name, map fst ps)] |
15696 | 1095 |
val ctxt'' = if name = "" then ctxt' |
1096 |
else let |
|
1097 |
val ps' = map (fn (n, SOME T) => Free (n, T)) ps; |
|
1098 |
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
|
1099 |
in case mode of |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1100 |
Assumed axs => fold (fn ax => fn ctxt => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1101 |
add_local_witness (name, ps') |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1102 |
(Thm.assume (Thm.cprop_of ax)) ctxt) axs ctxt'' |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1103 |
| Derived ths => fold (fn th => fn ctxt => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1104 |
add_local_witness (name, ps') th ctxt) ths ctxt'' |
15696 | 1105 |
end |
16144 | 1106 |
in (ProofContext.restore_naming ctxt ctxt'', res) end; |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13394
diff
changeset
|
1107 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1108 |
fun activate_elemss prep_facts = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1109 |
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
|
1110 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1111 |
val elems = map (prep_facts ctxt) raw_elems; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1112 |
val (ctxt', res) = apsnd List.concat |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1113 |
(activate_elems (((name, ps), mode), elems) ctxt); |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1114 |
val elems' = map (map_attrib_elem Args.closure) elems; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1115 |
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
|
1116 |
|
12546 | 1117 |
in |
1118 |
||
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1119 |
(* CB: activate_facts prep_facts (ctxt, elemss), |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1120 |
where elemss is a list of pairs consisting of identifiers and |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1121 |
context elements, extends ctxt by the context elements yielding |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1122 |
ctxt' and returns (ctxt', (elemss', facts)). |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1123 |
Identifiers in the argument are of the form ((name, ps), axs) and |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1124 |
assumptions use the axioms in the identifiers to set up exporters |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1125 |
in ctxt'. elemss' does not contain identifiers and is obtained |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1126 |
from elemss and the intermediate context with prep_facts. |
15703 | 1127 |
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
|
1128 |
the internal/external markers from elemss. *) |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1129 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1130 |
fun activate_facts prep_facts (ctxt, args) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1131 |
let |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1132 |
val (res, ctxt') = activate_elemss prep_facts args ctxt; |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1133 |
in |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1134 |
(ctxt', apsnd List.concat (split_list res)) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1135 |
end; |
12546 | 1136 |
|
15703 | 1137 |
fun activate_note prep_facts (ctxt, args) = |
1138 |
let |
|
1139 |
val (ctxt', ([(_, [Notes args'])], facts)) = |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1140 |
activate_facts prep_facts (ctxt, [((("", []), Assumed []), [Ext (Notes args)])]); |
15703 | 1141 |
in (ctxt', (args', facts)) end; |
1142 |
||
12510 | 1143 |
end; |
1144 |
||
12307 | 1145 |
|
15696 | 1146 |
(* register elements *) |
1147 |
||
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1148 |
(* not used |
15696 | 1149 |
fun register_elems (((_, ps), (((name, ax_ps), axs), _)), ctxt) = |
1150 |
if name = "" then ctxt |
|
1151 |
else let val ps' = map (fn (n, SOME T) => Free (n, T)) ax_ps |
|
1152 |
val ctxt' = put_local_registration (name, ps') ("", []) ctxt |
|
1153 |
in foldl (fn (ax, ctxt) => |
|
1154 |
add_local_witness (name, ps') ax ctxt) ctxt' axs |
|
1155 |
end; |
|
1156 |
||
1157 |
fun register_elemss id_elemss ctxt = |
|
1158 |
foldl register_elems ctxt id_elemss; |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1159 |
*) |
15696 | 1160 |
|
1161 |
||
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1162 |
(** prepare context elements **) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1163 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1164 |
(* expressions *) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1165 |
|
16458 | 1166 |
fun intern_expr thy (Locale xname) = Locale (intern thy xname) |
1167 |
| intern_expr thy (Merge exprs) = Merge (map (intern_expr thy) exprs) |
|
1168 |
| 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
|
1169 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1170 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1171 |
(* parameters *) |
12502 | 1172 |
|
1173 |
local |
|
1174 |
||
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1175 |
fun prep_parms prep_vars ctxt parms = |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1176 |
let val vars = snd (foldl_map prep_vars (ctxt, map (fn (x, T) => ([x], T)) parms)) |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1177 |
in map (fn ([x'], T') => (x', T')) vars end; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1178 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1179 |
in |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1180 |
|
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1181 |
fun read_parms x = prep_parms ProofContext.read_vars x; |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1182 |
fun cert_parms x = prep_parms ProofContext.cert_vars x; |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1183 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1184 |
end; |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1185 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1186 |
|
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1187 |
(* propositions and bindings *) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1188 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1189 |
(* flatten (ctxt, prep_expr) ((ids, syn), expr) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1190 |
normalises expr (which is either a locale |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1191 |
expression or a single context element) wrt. |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1192 |
to the list ids of already accumulated identifiers. |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1193 |
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
|
1194 |
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
|
1195 |
context elements generated from expr. |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1196 |
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
|
1197 |
is an extension of syn. |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1198 |
For details, see flatten_expr. |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1199 |
|
15596 | 1200 |
Additionally, for a locale expression, the elems are grouped into a single |
1201 |
Int; individual context elements are marked Ext. In this case, the |
|
1202 |
identifier-like information of the element is as follows: |
|
1203 |
- for Fixes: (("", ps), []) where the ps have type info NONE |
|
1204 |
- for other elements: (("", []), []). |
|
15206
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1205 |
The implementation of activate_facts relies on identifier names being |
09d78ec709c7
Modified locales: improved implementation of "includes".
ballarin
parents:
15127
diff
changeset
|
1206 |
empty strings for external elements. |
15596 | 1207 |
*) |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14446
diff
changeset
|
1208 |
|
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1209 |
fun flatten (ctxt, _) ((ids, syn), Elem (Fixes fixes)) = let |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1210 |
val ids' = ids @ [(("", map #1 fixes), ([], Assumed []))] |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1211 |
in |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1212 |
((ids', |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1213 |
merge_syntax ctxt ids' |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1214 |
(syn, Symtab.make (map (fn fx => (#1 fx, #3 fx)) fixes)) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1215 |
handle Symtab.DUPS xs => err_in_locale ctxt |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1216 |
("Conflicting syntax for parameters: " ^ commas_quote xs) |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1217 |
(map #1 ids')), |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1218 |
[((("", map (rpair NONE o #1) fixes), Assumed []), Ext (Fixes fixes))]) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1219 |
end |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1220 |
| flatten _ ((ids, syn), Elem elem) = |
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1221 |
((ids @ [(("", []), ([], Assumed []))], syn), [((("", []), Assumed []), Ext elem)]) |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1222 |
| flatten (ctxt, prep_expr) ((ids, syn), Expr expr) = |
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16028
diff
changeset
|
1223 |
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
|
1224 |
|
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1225 |
local |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1226 |
|
12839 | 1227 |
local |
1228 |
||
12727 | 1229 |
fun declare_int_elem (ctxt, Fixes fixes) = |
12575 | 1230 |
(ctxt |> ProofContext.add_fixes (map (fn (x, T, mx) => |
15570 | 1231 |
(x, Option.map (Term.map_type_tfree (TypeInfer.param 0)) T, mx)) fixes), []) |
12727 | 1232 |
| declare_int_elem (ctxt, _) = (ctxt, []); |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1233 |
|
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1234 |
fun declare_ext_elem prep_parms (ctxt, Fixes fixes) = |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1235 |
let |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1236 |
val parms = map (fn (x, T, _) => (x, T)) fixes; |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1237 |
val parms' = prep_parms ctxt parms; |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1238 |
val fixes' = map (fn ((x, T), (_, _, mx)) => (x, T, mx)) (parms' ~~ fixes); |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1239 |
in (ctxt |> ProofContext.add_fixes fixes', []) end |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1240 |
| declare_ext_elem prep_parms (ctxt, Constrains csts) = |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1241 |
let |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1242 |
val parms = map (fn (x, T) => (x, SOME T)) csts; |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1243 |
val parms' = prep_parms ctxt parms; |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1244 |
val ts = map (fn (x, SOME T) => Free (x, T)) parms'; |
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1245 |
in (Library.fold ProofContext.declare_term ts ctxt, []) end |
12529
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1246 |
| declare_ext_elem _ (ctxt, Assumes asms) = (ctxt, map #2 asms) |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1247 |
| 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
|
1248 |
| declare_ext_elem _ (ctxt, Notes facts) = (ctxt, []); |
d99716a53f59
simultaneous type-inference of complete context/statement specifications;
wenzelm
parents:
12514
diff
changeset
|
1249 |
|
17000
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1250 |
fun declare_elems prep_parms (ctxt, (((name, ps), Assumed _), elems)) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1251 |
let val (ctxt', propps) = |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1252 |
(case elems of |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1253 |
Int es => foldl_map declare_int_elem (ctxt, es) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1254 |
| Ext e => foldl_map (declare_ext_elem prep_parms) (ctxt, [e])) |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1255 |
handle ProofContext.CONTEXT (msg, ctxt) => |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1256 |
err_in_locale ctxt msg [(name, map fst ps)] |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1257 |
in (ctxt', propps) end |
552df70f52c2
First version of interpretation in locales. Not yet fully functional.
ballarin
parents:
16947
diff
changeset
|
1258 |
| declare_elems _ (ctxt, ((_, Derived _), elems)) = (ctxt, []); |
12727 | 1259 |
|
12839 | 1260 |
in |
1261 |
||
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1262 |
(* CB: only called by prep_elemss. *) |
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1263 |
|
16169
b59202511b8a
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16144
diff
changeset
|
1264 |
fun declare_elemss prep_parms fixed_params raw_elemss ctxt = |
12727 | 1265 |
let |
14215
ebf291f3b449
Improvements to Isar/Locales: premises generated by "includes" elements
ballarin
parents:
13629
diff
changeset
|
1266 |
(* 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
|
1267 |
Parameters new in context elements must receive types that are |