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