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