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