| author | wenzelm |
| Tue, 17 Mar 2009 16:55:21 +0100 | |
| changeset 30566 | 9643f54c4184 |
| parent 30469 | de9e8f1d927c |
| child 30585 | 6b2ba4666336 |
| permissions | -rw-r--r-- |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
1 |
(* Title: Pure/Isar/expression.ML |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
2 |
Author: Clemens Ballarin, TU Muenchen |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
3 |
|
| 29360 | 4 |
Locale expressions. |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
5 |
*) |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
6 |
|
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
7 |
signature EXPRESSION = |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
8 |
sig |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
9 |
(* Locale expressions *) |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
10 |
datatype 'term map = Positional of 'term option list | Named of (string * 'term) list |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
11 |
type 'term expr = (string * ((string * bool) * 'term map)) list |
| 29578 | 12 |
type expression_i = term expr * (binding * typ option * mixfix) list |
13 |
type expression = string expr * (binding * string option * mixfix) list |
|
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
14 |
|
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
15 |
(* Processing of context statements *) |
| 29441 | 16 |
val cert_statement: Element.context_i list -> (term * term list) list list -> |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
17 |
Proof.context -> (term * term list) list list * Proof.context |
| 28879 | 18 |
val read_statement: Element.context list -> (string * string list) list list -> |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
19 |
Proof.context -> (term * term list) list list * Proof.context |
| 28879 | 20 |
|
| 28795 | 21 |
(* Declaring locales *) |
| 29702 | 22 |
val cert_declaration: expression_i -> (Proof.context -> Proof.context) -> Element.context_i list -> |
23 |
Proof.context -> ((binding * typ option * mixfix) list * (string * morphism) list |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
24 |
* Element.context_i list) * ((string * typ) list * Proof.context) |
| 29702 | 25 |
val cert_read_declaration: expression_i -> (Proof.context -> Proof.context) -> Element.context list -> |
26 |
Proof.context -> ((binding * typ option * mixfix) list * (string * morphism) list |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
27 |
* Element.context_i list) * ((string * typ) list * Proof.context) |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
28 |
(*FIXME*) |
| 29702 | 29 |
val read_declaration: expression -> (Proof.context -> Proof.context) -> Element.context list -> |
30 |
Proof.context -> ((binding * typ option * mixfix) list * (string * morphism) list |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
31 |
* Element.context_i list) * ((string * typ) list * Proof.context) |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
32 |
val add_locale: binding -> binding -> expression_i -> Element.context_i list -> |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
33 |
theory -> string * local_theory |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
34 |
val add_locale_cmd: binding -> binding -> expression -> Element.context list -> |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
35 |
theory -> string * local_theory |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
36 |
|
| 28895 | 37 |
(* Interpretation *) |
| 29441 | 38 |
val cert_goal_expression: expression_i -> Proof.context -> |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
39 |
(term list list * (string * morphism) list * morphism) * Proof.context |
| 29496 | 40 |
val read_goal_expression: expression -> Proof.context -> |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
41 |
(term list list * (string * morphism) list * morphism) * Proof.context |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
42 |
val sublocale: string -> expression_i -> theory -> Proof.state |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
43 |
val sublocale_cmd: string -> expression -> theory -> Proof.state |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
44 |
val interpretation: expression_i -> (Attrib.binding * term) list -> theory -> Proof.state |
|
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
45 |
val interpretation_cmd: expression -> (Attrib.binding * string) list -> theory -> Proof.state |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
46 |
val interpret: expression_i -> bool -> Proof.state -> Proof.state |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
47 |
val interpret_cmd: expression -> bool -> Proof.state -> Proof.state |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
48 |
end; |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
49 |
|
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
50 |
structure Expression : EXPRESSION = |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
51 |
struct |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
52 |
|
| 28795 | 53 |
datatype ctxt = datatype Element.ctxt; |
54 |
||
55 |
||
56 |
(*** Expressions ***) |
|
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
57 |
|
| 28872 | 58 |
datatype 'term map = |
59 |
Positional of 'term option list | |
|
60 |
Named of (string * 'term) list; |
|
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
61 |
|
| 29214 | 62 |
type 'term expr = (string * ((string * bool) * 'term map)) list; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
63 |
|
| 29578 | 64 |
type expression = string expr * (binding * string option * mixfix) list; |
65 |
type expression_i = term expr * (binding * typ option * mixfix) list; |
|
| 28795 | 66 |
|
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
67 |
|
| 28859 | 68 |
(** Internalise locale names in expr **) |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
69 |
|
| 29360 | 70 |
fun intern thy instances = map (apfst (Locale.intern thy)) instances; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
71 |
|
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
72 |
|
| 28859 | 73 |
(** Parameters of expression. |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
74 |
|
| 28895 | 75 |
Sanity check of instantiations and extraction of implicit parameters. |
76 |
The latter only occurs iff strict = false. |
|
77 |
Positional instantiations are extended to match full length of parameter list |
|
78 |
of instantiated locale. **) |
|
79 |
||
80 |
fun parameters_of thy strict (expr, fixed) = |
|
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
81 |
let |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
82 |
fun reject_dups message xs = |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
83 |
let val dups = duplicates (op =) xs |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
84 |
in |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
85 |
if null dups then () else error (message ^ commas dups) |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
86 |
end; |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
87 |
|
|
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30220
diff
changeset
|
88 |
fun match_bind (n, b) = (n = Binding.name_of b); |
| 29288 | 89 |
fun parm_eq ((b1, mx1: mixfix), (b2, mx2)) = |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
90 |
Binding.eq_name (b1, b2) andalso |
| 30220 | 91 |
(mx1 = mx2 orelse |
92 |
error ("Conflicting syntax for parameter " ^ quote (Binding.str_of b1) ^ " in expression"));
|
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
93 |
|
| 28795 | 94 |
fun params_loc loc = |
| 29797 | 95 |
(Locale.params_of thy loc |> map (fn (p, _, mx) => (p, mx)), loc); |
| 28795 | 96 |
fun params_inst (expr as (loc, (prfx, Positional insts))) = |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
97 |
let |
| 28795 | 98 |
val (ps, loc') = params_loc loc; |
| 29358 | 99 |
val d = length ps - length insts; |
100 |
val insts' = |
|
101 |
if d < 0 then error ("More arguments than parameters in instantiation of locale " ^
|
|
| 29360 | 102 |
quote (Locale.extern thy loc)) |
| 29358 | 103 |
else insts @ replicate d NONE; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
104 |
val ps' = (ps ~~ insts') |> |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
105 |
map_filter (fn (p, NONE) => SOME p | (_, SOME _) => NONE); |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
106 |
in (ps', (loc', (prfx, Positional insts'))) end |
| 28795 | 107 |
| params_inst (expr as (loc, (prfx, Named insts))) = |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
108 |
let |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
109 |
val _ = reject_dups "Duplicate instantiation of the following parameter(s): " |
| 28859 | 110 |
(map fst insts); |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
111 |
|
| 28795 | 112 |
val (ps, loc') = params_loc loc; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
113 |
val ps' = fold (fn (p, _) => fn ps => |
| 28795 | 114 |
if AList.defined match_bind ps p then AList.delete match_bind p ps |
| 28859 | 115 |
else error (quote p ^" not a parameter of instantiated expression.")) insts ps; |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
116 |
in (ps', (loc', (prfx, Named insts))) end; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
117 |
fun params_expr is = |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
118 |
let |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
119 |
val (is', ps') = fold_map (fn i => fn ps => |
|
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
120 |
let |
| 28795 | 121 |
val (ps', i') = params_inst i; |
|
29030
0ea94f540548
Order of implicit parameters in locale expression.
ballarin
parents:
29028
diff
changeset
|
122 |
val ps'' = distinct parm_eq (ps @ ps'); |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
123 |
in (i', ps'') end) is [] |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
124 |
in (ps', is') end; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
125 |
|
| 28895 | 126 |
val (implicit, expr') = params_expr expr; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
127 |
|
|
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30220
diff
changeset
|
128 |
val implicit' = map (#1 #> Binding.name_of) implicit; |
|
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30220
diff
changeset
|
129 |
val fixed' = map (#1 #> Binding.name_of) fixed; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
130 |
val _ = reject_dups "Duplicate fixed parameter(s): " fixed'; |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
131 |
val implicit'' = |
|
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
132 |
if strict then [] |
|
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
133 |
else |
|
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
134 |
let val _ = reject_dups |
| 28895 | 135 |
"Parameter(s) declared simultaneously in expression and for clause: " (implicit' @ fixed') |
136 |
in map (fn (b, mx) => (b, NONE, mx)) implicit end; |
|
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
137 |
|
| 28895 | 138 |
in (expr', implicit'' @ fixed) end; |
|
28697
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff
changeset
|
139 |
|
| 28795 | 140 |
|
141 |
(** Read instantiation **) |
|
142 |
||
| 28872 | 143 |
(* Parse positional or named instantiation *) |
144 |
||
| 28859 | 145 |
local |
146 |
||
| 29797 | 147 |
fun prep_inst prep_term ctxt parms (Positional insts) = |
| 28872 | 148 |
(insts ~~ parms) |> map (fn |
| 29797 | 149 |
(NONE, p) => Free (p, dummyT) | |
150 |
(SOME t, _) => prep_term ctxt t) |
|
151 |
| prep_inst prep_term ctxt parms (Named insts) = |
|
| 28872 | 152 |
parms |> map (fn p => case AList.lookup (op =) insts p of |
| 29797 | 153 |
SOME t => prep_term ctxt t | |
154 |
NONE => Free (p, dummyT)); |
|
| 28872 | 155 |
|
156 |
in |
|
157 |
||
158 |
fun parse_inst x = prep_inst Syntax.parse_term x; |
|
159 |
fun make_inst x = prep_inst (K I) x; |
|
160 |
||
161 |
end; |
|
162 |
||
163 |
||
164 |
(* Instantiation morphism *) |
|
165 |
||
| 29214 | 166 |
fun inst_morph (parm_names, parm_types) ((prfx, strict), insts') ctxt = |
| 28795 | 167 |
let |
168 |
(* parameters *) |
|
169 |
val type_parm_names = fold Term.add_tfreesT parm_types [] |> map fst; |
|
170 |
||
171 |
(* type inference and contexts *) |
|
172 |
val parm_types' = map (TypeInfer.paramify_vars o Logic.varifyT) parm_types; |
|
173 |
val type_parms = fold Term.add_tvarsT parm_types' [] |> map (Logic.mk_type o TVar); |
|
174 |
val arg = type_parms @ map2 TypeInfer.constrain parm_types' insts'; |
|
175 |
val res = Syntax.check_terms ctxt arg; |
|
176 |
val ctxt' = ctxt |> fold Variable.auto_fixes res; |
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
177 |
|
| 28795 | 178 |
(* instantiation *) |
179 |
val (type_parms'', res') = chop (length type_parms) res; |
|
180 |
val insts'' = (parm_names ~~ res') |> map_filter |
|
181 |
(fn (inst as (x, Free (y, _))) => if x = y then NONE else SOME inst | |
|
182 |
inst => SOME inst); |
|
183 |
val instT = Symtab.make (type_parm_names ~~ map Logic.dest_type type_parms''); |
|
184 |
val inst = Symtab.make insts''; |
|
185 |
in |
|
186 |
(Element.inst_morphism (ProofContext.theory_of ctxt) (instT, inst) $> |
|
|
30335
b3ef64cadcad
Binding.str_of: removed verbose feature, include qualifier in output;
wenzelm
parents:
30242
diff
changeset
|
187 |
Morphism.binding_morphism (Binding.prefix strict prfx), ctxt') |
| 28795 | 188 |
end; |
| 28859 | 189 |
|
| 28795 | 190 |
|
191 |
(*** Locale processing ***) |
|
192 |
||
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
193 |
(** Parsing **) |
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
194 |
|
| 29604 | 195 |
fun parse_elem prep_typ prep_term ctxt = |
196 |
Element.map_ctxt |
|
197 |
{binding = I,
|
|
198 |
typ = prep_typ ctxt, |
|
199 |
term = prep_term (ProofContext.set_mode ProofContext.mode_schematic ctxt), |
|
200 |
pattern = prep_term (ProofContext.set_mode ProofContext.mode_pattern ctxt), |
|
201 |
fact = I, |
|
202 |
attrib = I}; |
|
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
203 |
|
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
204 |
fun parse_concl prep_term ctxt concl = |
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
205 |
(map o map) (fn (t, ps) => |
|
29215
f98862eb0591
Use correct mode when parsing elements and conclusion.
ballarin
parents:
29214
diff
changeset
|
206 |
(prep_term (ProofContext.set_mode ProofContext.mode_schematic ctxt) t, (* FIXME ?? *) |
|
f98862eb0591
Use correct mode when parsing elements and conclusion.
ballarin
parents:
29214
diff
changeset
|
207 |
map (prep_term (ProofContext.set_mode ProofContext.mode_pattern ctxt)) ps)) concl; |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
208 |
|
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
209 |
|
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
210 |
(** Simultaneous type inference: instantiations + elements + conclusion **) |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
211 |
|
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
212 |
local |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
213 |
|
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
214 |
fun mk_type T = (Logic.mk_type T, []); |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
215 |
fun mk_term t = (t, []); |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
216 |
fun mk_propp (p, pats) = (Syntax.type_constraint propT p, pats); |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
217 |
|
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
218 |
fun dest_type (T, []) = Logic.dest_type T; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
219 |
fun dest_term (t, []) = t; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
220 |
fun dest_propp (p, pats) = (p, pats); |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
221 |
|
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
222 |
fun extract_inst (_, (_, ts)) = map mk_term ts; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
223 |
fun restore_inst ((l, (p, _)), cs) = (l, (p, map dest_term cs)); |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
224 |
|
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
225 |
fun extract_elem (Fixes fixes) = map (#2 #> the_list #> map mk_type) fixes |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
226 |
| extract_elem (Constrains csts) = map (#2 #> single #> map mk_type) csts |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
227 |
| extract_elem (Assumes asms) = map (#2 #> map mk_propp) asms |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
228 |
| extract_elem (Defines defs) = map (fn (_, (t, ps)) => [mk_propp (t, ps)]) defs |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
229 |
| extract_elem (Notes _) = []; |
| 28795 | 230 |
|
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
231 |
fun restore_elem (Fixes fixes, css) = |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
232 |
(fixes ~~ css) |> map (fn ((x, _, mx), cs) => |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
233 |
(x, cs |> map dest_type |> try hd, mx)) |> Fixes |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
234 |
| restore_elem (Constrains csts, css) = |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
235 |
(csts ~~ css) |> map (fn ((x, _), cs) => |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
236 |
(x, cs |> map dest_type |> hd)) |> Constrains |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
237 |
| restore_elem (Assumes asms, css) = |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
238 |
(asms ~~ css) |> map (fn ((b, _), cs) => (b, map dest_propp cs)) |> Assumes |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
239 |
| restore_elem (Defines defs, css) = |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
240 |
(defs ~~ css) |> map (fn ((b, _), [c]) => (b, dest_propp c)) |> Defines |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
241 |
| restore_elem (Notes notes, _) = Notes notes; |
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
242 |
|
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
243 |
fun check cs context = |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
244 |
let |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
245 |
fun prep (_, pats) (ctxt, t :: ts) = |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
246 |
let val ctxt' = Variable.auto_fixes t ctxt |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
247 |
in |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
248 |
((t, Syntax.check_props (ProofContext.set_mode ProofContext.mode_pattern ctxt') pats), |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
249 |
(ctxt', ts)) |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
250 |
end |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
251 |
val (cs', (context', _)) = fold_map prep cs |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
252 |
(context, Syntax.check_terms |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
253 |
(ProofContext.set_mode ProofContext.mode_schematic context) (map fst cs)); |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
254 |
in (cs', context') end; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
255 |
|
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
256 |
in |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
257 |
|
| 28872 | 258 |
fun check_autofix insts elems concl ctxt = |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
259 |
let |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
260 |
val inst_cs = map extract_inst insts; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
261 |
val elem_css = map extract_elem elems; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
262 |
val concl_cs = (map o map) mk_propp concl; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
263 |
(* Type inference *) |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
264 |
val (inst_cs' :: css', ctxt') = |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
265 |
(fold_burrow o fold_burrow) check (inst_cs :: elem_css @ [concl_cs]) ctxt; |
|
28936
f1647bf418f5
No resolution of patterns within context statements.
ballarin
parents:
28903
diff
changeset
|
266 |
val (elem_css', [concl_cs']) = chop (length elem_css) css'; |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
267 |
in |
|
28936
f1647bf418f5
No resolution of patterns within context statements.
ballarin
parents:
28903
diff
changeset
|
268 |
(map restore_inst (insts ~~ inst_cs'), map restore_elem (elems ~~ elem_css'), |
|
f1647bf418f5
No resolution of patterns within context statements.
ballarin
parents:
28903
diff
changeset
|
269 |
concl_cs', ctxt') |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
270 |
end; |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
271 |
|
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
272 |
end; |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
273 |
|
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
274 |
|
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
275 |
(** Prepare locale elements **) |
| 28795 | 276 |
|
277 |
fun declare_elem prep_vars (Fixes fixes) ctxt = |
|
278 |
let val (vars, _) = prep_vars fixes ctxt |
|
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
279 |
in ctxt |> ProofContext.add_fixes_i vars |> snd end |
| 28795 | 280 |
| declare_elem prep_vars (Constrains csts) ctxt = |
| 28965 | 281 |
ctxt |> prep_vars (map (fn (x, T) => (Binding.name x, SOME T, NoSyn)) csts) |> snd |
| 28872 | 282 |
| declare_elem _ (Assumes _) ctxt = ctxt |
283 |
| declare_elem _ (Defines _) ctxt = ctxt |
|
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
284 |
| declare_elem _ (Notes _) ctxt = ctxt; |
| 28795 | 285 |
|
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
286 |
(** Finish locale elements **) |
| 28795 | 287 |
|
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
288 |
fun closeup _ _ false elem = elem |
|
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
289 |
| closeup ctxt parms true elem = |
| 28795 | 290 |
let |
291 |
fun close_frees t = |
|
292 |
let |
|
293 |
val rev_frees = |
|
294 |
Term.fold_aterms (fn Free (x, T) => |
|
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
295 |
if AList.defined (op =) parms x then I else insert (op =) (x, T) | _ => I) t []; |
|
29021
ce100fbc3c8e
Proper shape of assumptions generated from Defines elements.
ballarin
parents:
29020
diff
changeset
|
296 |
in Term.list_all_free (rev rev_frees, t) end; (* FIXME use fold Logic.all *) |
| 29019 | 297 |
(* FIXME consider closing in syntactic phase *) |
| 28795 | 298 |
|
299 |
fun no_binds [] = [] |
|
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
300 |
| no_binds _ = error "Illegal term bindings in context element"; |
| 28795 | 301 |
in |
302 |
(case elem of |
|
303 |
Assumes asms => Assumes (asms |> map (fn (a, propps) => |
|
304 |
(a, map (fn (t, ps) => (close_frees t, no_binds ps)) propps))) |
|
| 29022 | 305 |
| Defines defs => Defines (defs |> map (fn ((name, atts), (t, ps)) => |
306 |
let val ((c, _), t') = LocalDefs.cert_def ctxt (close_frees t) |
|
| 30434 | 307 |
in ((Thm.def_binding_optional (Binding.name c) name, atts), (t', no_binds ps)) end)) |
| 28795 | 308 |
| e => e) |
309 |
end; |
|
310 |
||
| 28872 | 311 |
fun finish_primitive parms _ (Fixes fixes) = Fixes (map (fn (binding, _, mx) => |
|
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30220
diff
changeset
|
312 |
let val x = Binding.name_of binding |
| 28795 | 313 |
in (binding, AList.lookup (op =) parms x, mx) end) fixes) |
| 28872 | 314 |
| finish_primitive _ _ (Constrains _) = Constrains [] |
315 |
| finish_primitive _ close (Assumes asms) = close (Assumes asms) |
|
316 |
| finish_primitive _ close (Defines defs) = close (Defines defs) |
|
317 |
| finish_primitive _ _ (Notes facts) = Notes facts; |
|
318 |
||
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
319 |
fun finish_inst ctxt parms do_close (loc, (prfx, inst)) = |
| 28872 | 320 |
let |
321 |
val thy = ProofContext.theory_of ctxt; |
|
| 29360 | 322 |
val (parm_names, parm_types) = Locale.params_of thy loc |> |
|
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30220
diff
changeset
|
323 |
map_split (fn (b, SOME T, _) => (Binding.name_of b, T)); |
| 28872 | 324 |
val (morph, _) = inst_morph (parm_names, parm_types) (prfx, inst) ctxt; |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
325 |
in (loc, morph) end; |
| 28795 | 326 |
|
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
327 |
fun finish_elem ctxt parms do_close elem = |
| 28795 | 328 |
let |
| 28872 | 329 |
val elem' = finish_primitive parms (closeup ctxt parms do_close) elem; |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
330 |
in elem' end |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
331 |
|
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
332 |
fun finish ctxt parms do_close insts elems = |
| 28872 | 333 |
let |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
334 |
val deps = map (finish_inst ctxt parms do_close) insts; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
335 |
val elems' = map (finish_elem ctxt parms do_close) elems; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
336 |
in (deps, elems') end; |
| 28795 | 337 |
|
338 |
||
| 28895 | 339 |
(** Process full context statement: instantiations + elements + conclusion **) |
340 |
||
341 |
(* Interleave incremental parsing and type inference over entire parsed stretch. *) |
|
342 |
||
| 28795 | 343 |
local |
344 |
||
| 29797 | 345 |
fun prep_full_context_statement parse_typ parse_prop prep_vars_elem prep_inst prep_vars_inst prep_expr |
| 29702 | 346 |
strict do_close raw_import init_body raw_elems raw_concl ctxt1 = |
| 28795 | 347 |
let |
| 29358 | 348 |
val thy = ProofContext.theory_of ctxt1; |
| 28872 | 349 |
|
| 28895 | 350 |
val (raw_insts, fixed) = parameters_of thy strict (apfst (prep_expr thy) raw_import); |
351 |
||
| 29797 | 352 |
fun prep_insts (loc, (prfx, inst)) (i, insts, ctxt) = |
| 28872 | 353 |
let |
| 29360 | 354 |
val (parm_names, parm_types) = Locale.params_of thy loc |> |
|
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30220
diff
changeset
|
355 |
map_split (fn (b, SOME T, _) => (Binding.name_of b, T)) |
|
29510
6fe4200532b7
corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents:
29501
diff
changeset
|
356 |
(*FIXME return value of Locale.params_of has strange type*) |
| 29797 | 357 |
val inst' = prep_inst ctxt parm_names inst; |
|
28885
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
358 |
val parm_types' = map (TypeInfer.paramify_vars o |
|
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
ballarin
parents:
28879
diff
changeset
|
359 |
Term.map_type_tvar (fn ((x, _), S) => TVar ((x, i), S)) o Logic.varifyT) parm_types; |
| 28872 | 360 |
val inst'' = map2 TypeInfer.constrain parm_types' inst'; |
361 |
val insts' = insts @ [(loc, (prfx, inst''))]; |
|
|
28951
e89dde5f365c
Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents:
28936
diff
changeset
|
362 |
val (insts'', _, _, ctxt' (* FIXME not used *) ) = check_autofix insts' [] [] ctxt; |
| 28872 | 363 |
val inst''' = insts'' |> List.last |> snd |> snd; |
364 |
val (morph, _) = inst_morph (parm_names, parm_types) (prfx, inst''') ctxt; |
|
| 29360 | 365 |
val ctxt'' = Locale.activate_declarations thy (loc, morph) ctxt; |
|
28951
e89dde5f365c
Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents:
28936
diff
changeset
|
366 |
in (i+1, insts', ctxt'') end; |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
367 |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
368 |
fun prep_elem insts raw_elem (elems, ctxt) = |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
369 |
let |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
370 |
val ctxt' = declare_elem prep_vars_elem raw_elem ctxt; |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
371 |
val elems' = elems @ [parse_elem parse_typ parse_prop ctxt' raw_elem]; |
| 28872 | 372 |
val (_, _, _, ctxt'') = check_autofix insts elems' [] ctxt'; |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
373 |
in (elems', ctxt') end; |
| 28795 | 374 |
|
| 28872 | 375 |
fun prep_concl raw_concl (insts, elems, ctxt) = |
| 28795 | 376 |
let |
|
29215
f98862eb0591
Use correct mode when parsing elements and conclusion.
ballarin
parents:
29214
diff
changeset
|
377 |
val concl = parse_concl parse_prop ctxt raw_concl; |
| 28872 | 378 |
in check_autofix insts elems concl ctxt end; |
| 28795 | 379 |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
380 |
val fors = prep_vars_inst fixed ctxt1 |> fst; |
| 29358 | 381 |
val ctxt2 = ctxt1 |> ProofContext.add_fixes_i fors |> snd; |
| 29797 | 382 |
val (_, insts', ctxt3) = fold prep_insts raw_insts (0, [], ctxt2); |
| 29702 | 383 |
val ctxt4 = init_body ctxt3; |
384 |
val (elems, ctxt5) = fold (prep_elem insts') raw_elems ([], ctxt4); |
|
385 |
val (insts, elems', concl, ctxt6) = |
|
386 |
prep_concl raw_concl (insts', elems, ctxt5); |
|
| 28795 | 387 |
|
| 28872 | 388 |
(* Retrieve parameter types *) |
|
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30220
diff
changeset
|
389 |
val xs = fold (fn Fixes fixes => (fn ps => ps @ map (Binding.name_of o #1) fixes) |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
390 |
| _ => fn ps => ps) (Fixes fors :: elems') []; |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
391 |
val (Ts, ctxt7) = fold_map ProofContext.inferred_param xs ctxt6; |
| 28895 | 392 |
val parms = xs ~~ Ts; (* params from expression and elements *) |
| 28795 | 393 |
|
| 28872 | 394 |
val Fixes fors' = finish_primitive parms I (Fixes fors); |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
395 |
val (deps, elems'') = finish ctxt6 parms do_close insts elems'; |
|
28852
5ddea758679b
Type inference for elements through syntax module.
ballarin
parents:
28832
diff
changeset
|
396 |
|
| 29702 | 397 |
in ((fors', deps, elems'', concl), (parms, ctxt7)) end |
| 28795 | 398 |
|
399 |
in |
|
400 |
||
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
401 |
fun cert_full_context_statement x = |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
402 |
prep_full_context_statement (K I) (K I) ProofContext.cert_vars |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
403 |
make_inst ProofContext.cert_vars (K I) x; |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
404 |
fun cert_read_full_context_statement x = |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
405 |
prep_full_context_statement Syntax.parse_typ Syntax.parse_prop ProofContext.read_vars |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
406 |
make_inst ProofContext.cert_vars (K I) x; |
| 28895 | 407 |
fun read_full_context_statement x = |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
408 |
prep_full_context_statement Syntax.parse_typ Syntax.parse_prop ProofContext.read_vars |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
409 |
parse_inst ProofContext.read_vars intern x; |
| 28795 | 410 |
|
411 |
end; |
|
412 |
||
413 |
||
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
414 |
(* Context statement: elements + conclusion *) |
| 28795 | 415 |
|
416 |
local |
|
417 |
||
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
418 |
fun prep_statement prep activate raw_elems raw_concl context = |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
419 |
let |
| 29358 | 420 |
val ((_, _, elems, concl), _) = |
| 29702 | 421 |
prep true false ([], []) I raw_elems raw_concl context; |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
422 |
val (_, context') = context |> |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
423 |
ProofContext.set_stmt true |> |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
424 |
activate elems; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
425 |
in (concl, context') end; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
426 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
427 |
in |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
428 |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
429 |
fun cert_statement x = prep_statement cert_full_context_statement Element.activate_i x; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
430 |
fun read_statement x = prep_statement read_full_context_statement Element.activate x; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
431 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
432 |
end; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
433 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
434 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
435 |
(* Locale declaration: import + elements *) |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
436 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
437 |
local |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
438 |
|
| 29702 | 439 |
fun prep_declaration prep activate raw_import init_body raw_elems context = |
| 28795 | 440 |
let |
| 29358 | 441 |
val ((fixed, deps, elems, _), (parms, ctxt')) = |
| 29702 | 442 |
prep false true raw_import init_body raw_elems [] context ; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
443 |
(* Declare parameters and imported facts *) |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
444 |
val context' = context |> |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
445 |
ProofContext.add_fixes_i fixed |> snd |> |
| 29360 | 446 |
fold Locale.activate_local_facts deps; |
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
447 |
val (elems', _) = context' |> |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
448 |
ProofContext.set_stmt true |> |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
449 |
activate elems; |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
450 |
in ((fixed, deps, elems'), (parms, ctxt')) end; |
| 28795 | 451 |
|
452 |
in |
|
453 |
||
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
454 |
fun cert_declaration x = prep_declaration cert_full_context_statement Element.activate_i x; |
|
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
455 |
fun cert_read_declaration x = prep_declaration cert_read_full_context_statement Element.activate x; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
456 |
fun read_declaration x = prep_declaration read_full_context_statement Element.activate x; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
457 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
458 |
end; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
459 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
460 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
461 |
(* Locale expression to set up a goal *) |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
462 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
463 |
local |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
464 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
465 |
fun props_of thy (name, morph) = |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
466 |
let |
| 29360 | 467 |
val (asm, defs) = Locale.specification_of thy name; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
468 |
in |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
469 |
(case asm of NONE => defs | SOME asm => asm :: defs) |> map (Morphism.term morph) |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
470 |
end; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
471 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
472 |
fun prep_goal_expression prep expression context = |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
473 |
let |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
474 |
val thy = ProofContext.theory_of context; |
| 28879 | 475 |
|
| 29358 | 476 |
val ((fixed, deps, _, _), _) = |
| 29702 | 477 |
prep true true expression I [] [] context; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
478 |
(* proof obligations *) |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
479 |
val propss = map (props_of thy) deps; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
480 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
481 |
val goal_ctxt = context |> |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
482 |
ProofContext.add_fixes_i fixed |> snd |> |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
483 |
(fold o fold) Variable.auto_fixes propss; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
484 |
|
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
485 |
val export = Variable.export_morphism goal_ctxt context; |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
486 |
val exp_fact = Drule.zero_var_indexes_list o map Thm.strip_shyps o Morphism.fact export; |
|
29245
19728ee2b1ba
Intro_locales_tac knows about defines elements; more robust export morphism.
ballarin
parents:
29241
diff
changeset
|
487 |
val exp_term = TermSubst.zero_var_indexes o Morphism.term export; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
488 |
val exp_typ = Logic.type_map exp_term; |
| 29604 | 489 |
val export' = Morphism.morphism {binding = I, typ = exp_typ, term = exp_term, fact = exp_fact};
|
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
490 |
in ((propss, deps, export'), goal_ctxt) end; |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
491 |
|
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
492 |
in |
|
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
493 |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
494 |
fun cert_goal_expression x = prep_goal_expression cert_full_context_statement x; |
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
495 |
fun read_goal_expression x = prep_goal_expression read_full_context_statement x; |
| 28879 | 496 |
|
| 28795 | 497 |
end; |
498 |
||
499 |
||
500 |
(*** Locale declarations ***) |
|
501 |
||
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
502 |
(* extract specification text *) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
503 |
|
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
504 |
val norm_term = Envir.beta_norm oo Term.subst_atomic; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
505 |
|
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
506 |
fun bind_def ctxt eq (xs, env, eqs) = |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
507 |
let |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
508 |
val _ = LocalDefs.cert_def ctxt eq; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
509 |
val ((y, T), b) = LocalDefs.abs_def eq; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
510 |
val b' = norm_term env b; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
511 |
fun err msg = error (msg ^ ": " ^ quote y); |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
512 |
in |
|
29250
96b1b4d5157d
More liberal consistency check for defines elements.
ballarin
parents:
29248
diff
changeset
|
513 |
case filter (fn (Free (y', _), _) => y = y' | _ => false) env of |
|
96b1b4d5157d
More liberal consistency check for defines elements.
ballarin
parents:
29248
diff
changeset
|
514 |
[] => (Term.add_frees b' xs, (Free (y, T), b') :: env, eq :: eqs) | |
|
96b1b4d5157d
More liberal consistency check for defines elements.
ballarin
parents:
29248
diff
changeset
|
515 |
dups => if forall (fn (_, b'') => b' aconv b'') dups |
|
96b1b4d5157d
More liberal consistency check for defines elements.
ballarin
parents:
29248
diff
changeset
|
516 |
then (xs, env, eqs) |
|
96b1b4d5157d
More liberal consistency check for defines elements.
ballarin
parents:
29248
diff
changeset
|
517 |
else err "Attempt to redefine variable" |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
518 |
end; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
519 |
|
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
520 |
(* text has the following structure: |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
521 |
(((exts, exts'), (ints, ints')), (xs, env, defs)) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
522 |
where |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
523 |
exts: external assumptions (terms in assumes elements) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
524 |
exts': dito, normalised wrt. env |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
525 |
ints: internal assumptions (terms in assumptions from insts) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
526 |
ints': dito, normalised wrt. env |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
527 |
xs: the free variables in exts' and ints' and rhss of definitions, |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
528 |
this includes parameters except defined parameters |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
529 |
env: list of term pairs encoding substitutions, where the first term |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
530 |
is a free variable; substitutions represent defines elements and |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
531 |
the rhs is normalised wrt. the previous env |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
532 |
defs: the equations from the defines elements |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
533 |
*) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
534 |
|
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
535 |
fun eval_text _ _ (Fixes _) text = text |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
536 |
| eval_text _ _ (Constrains _) text = text |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
537 |
| eval_text _ is_ext (Assumes asms) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
538 |
(((exts, exts'), (ints, ints')), (xs, env, defs)) = |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
539 |
let |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
540 |
val ts = maps (map #1 o #2) asms; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
541 |
val ts' = map (norm_term env) ts; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
542 |
val spec' = |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
543 |
if is_ext then ((exts @ ts, exts' @ ts'), (ints, ints')) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
544 |
else ((exts, exts'), (ints @ ts, ints' @ ts')); |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
545 |
in (spec', (fold Term.add_frees ts' xs, env, defs)) end |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
546 |
| eval_text ctxt _ (Defines defs) (spec, binds) = |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
547 |
(spec, fold (bind_def ctxt o #1 o #2) defs binds) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
548 |
| eval_text _ _ (Notes _) text = text; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
549 |
|
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
550 |
fun eval_inst ctxt (loc, morph) text = |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
551 |
let |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
552 |
val thy = ProofContext.theory_of ctxt; |
| 29360 | 553 |
val (asm, defs) = Locale.specification_of thy loc; |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
554 |
val asm' = Option.map (Morphism.term morph) asm; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
555 |
val defs' = map (Morphism.term morph) defs; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
556 |
val text' = text |> |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
557 |
(if is_some asm |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
558 |
then eval_text ctxt false (Assumes [(Attrib.empty_binding, [(the asm', [])])]) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
559 |
else I) |> |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
560 |
(if not (null defs) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
561 |
then eval_text ctxt false (Defines (map (fn def => (Attrib.empty_binding, (def, []))) defs')) |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
562 |
else I) |
| 29360 | 563 |
(* FIXME clone from locale.ML *) |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
564 |
in text' end; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
565 |
|
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
566 |
fun eval_elem ctxt elem text = |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
567 |
let |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
568 |
val text' = eval_text ctxt true elem text; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
569 |
in text' end; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
570 |
|
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
571 |
fun eval ctxt deps elems = |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
572 |
let |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
573 |
val text' = fold (eval_inst ctxt) deps ((([], []), ([], [])), ([], [], [])); |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
574 |
val ((spec, (_, _, defs))) = fold (eval_elem ctxt) elems text'; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
575 |
in (spec, defs) end; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
576 |
|
|
28903
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
577 |
(* axiomsN: name of theorem set with destruct rules for locale predicates, |
|
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
578 |
also name suffix of delta predicates and assumptions. *) |
|
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
579 |
|
|
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
580 |
val axiomsN = "axioms"; |
|
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
581 |
|
| 28795 | 582 |
local |
583 |
||
584 |
(* introN: name of theorems for introduction rules of locale and |
|
|
28903
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
585 |
delta predicates *) |
| 28795 | 586 |
|
587 |
val introN = "intro"; |
|
588 |
||
589 |
fun atomize_spec thy ts = |
|
590 |
let |
|
591 |
val t = Logic.mk_conjunction_balanced ts; |
|
592 |
val body = ObjectLogic.atomize_term thy t; |
|
593 |
val bodyT = Term.fastype_of body; |
|
594 |
in |
|
595 |
if bodyT = propT then (t, propT, Thm.reflexive (Thm.cterm_of thy t)) |
|
596 |
else (body, bodyT, ObjectLogic.atomize (Thm.cterm_of thy t)) |
|
597 |
end; |
|
598 |
||
599 |
(* achieve plain syntax for locale predicates (without "PROP") *) |
|
600 |
||
601 |
fun aprop_tr' n c = (Syntax.constN ^ c, fn ctxt => fn args => |
|
602 |
if length args = n then |
|
603 |
Syntax.const "_aprop" $ |
|
604 |
Term.list_comb (Syntax.free (Consts.extern (ProofContext.consts_of ctxt) c), args) |
|
605 |
else raise Match); |
|
606 |
||
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
607 |
(* define one predicate including its intro rule and axioms |
| 28795 | 608 |
- bname: predicate name |
609 |
- parms: locale parameters |
|
610 |
- defs: thms representing substitutions from defines elements |
|
611 |
- ts: terms representing locale assumptions (not normalised wrt. defs) |
|
612 |
- norm_ts: terms representing locale assumptions (normalised wrt. defs) |
|
613 |
- thy: the theory |
|
614 |
*) |
|
615 |
||
616 |
fun def_pred bname parms defs ts norm_ts thy = |
|
617 |
let |
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
618 |
val name = Sign.full_name thy bname; |
| 28795 | 619 |
|
620 |
val (body, bodyT, body_eq) = atomize_spec thy norm_ts; |
|
| 29272 | 621 |
val env = Term.add_free_names body []; |
| 28795 | 622 |
val xs = filter (member (op =) env o #1) parms; |
623 |
val Ts = map #2 xs; |
|
| 29272 | 624 |
val extraTs = |
625 |
(Term.add_tfrees body [] \\ fold Term.add_tfreesT Ts []) |
|
| 28795 | 626 |
|> Library.sort_wrt #1 |> map TFree; |
627 |
val predT = map Term.itselfT extraTs ---> Ts ---> bodyT; |
|
628 |
||
629 |
val args = map Logic.mk_type extraTs @ map Free xs; |
|
630 |
val head = Term.list_comb (Const (name, predT), args); |
|
631 |
val statement = ObjectLogic.ensure_propT thy head; |
|
632 |
||
633 |
val ([pred_def], defs_thy) = |
|
634 |
thy |
|
635 |
|> bodyT = propT ? Sign.add_advanced_trfuns ([], [], [aprop_tr' (length args) name], []) |
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
636 |
|> Sign.declare_const [] ((bname, predT), NoSyn) |> snd |
| 28795 | 637 |
|> PureThy.add_defs false |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
638 |
[((Binding.map_name Thm.def_name bname, Logic.mk_equals (head, body)), [Thm.kind_internal])]; |
| 28795 | 639 |
val defs_ctxt = ProofContext.init defs_thy |> Variable.declare_term head; |
640 |
||
641 |
val cert = Thm.cterm_of defs_thy; |
|
642 |
||
643 |
val intro = Goal.prove_global defs_thy [] norm_ts statement (fn _ => |
|
644 |
MetaSimplifier.rewrite_goals_tac [pred_def] THEN |
|
645 |
Tactic.compose_tac (false, body_eq RS Drule.equal_elim_rule1, 1) 1 THEN |
|
646 |
Tactic.compose_tac (false, |
|
647 |
Conjunction.intr_balanced (map (Thm.assume o cert) norm_ts), 0) 1); |
|
648 |
||
649 |
val conjuncts = |
|
650 |
(Drule.equal_elim_rule2 OF [body_eq, |
|
651 |
MetaSimplifier.rewrite_rule [pred_def] (Thm.assume (cert statement))]) |
|
652 |
|> Conjunction.elim_balanced (length ts); |
|
653 |
val axioms = ts ~~ conjuncts |> map (fn (t, ax) => |
|
654 |
Element.prove_witness defs_ctxt t |
|
655 |
(MetaSimplifier.rewrite_goals_tac defs THEN |
|
656 |
Tactic.compose_tac (false, ax, 0) 1)); |
|
657 |
in ((statement, intro, axioms), defs_thy) end; |
|
658 |
||
659 |
in |
|
660 |
||
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
661 |
(* main predicate definition function *) |
| 28795 | 662 |
|
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
663 |
fun define_preds pname parms (((exts, exts'), (ints, ints')), defs) thy = |
| 28795 | 664 |
let |
|
29031
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents:
29030
diff
changeset
|
665 |
val defs' = map (cterm_of thy #> Assumption.assume #> Drule.gen_all #> Drule.abs_def) defs; |
|
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents:
29030
diff
changeset
|
666 |
|
| 28795 | 667 |
val (a_pred, a_intro, a_axioms, thy'') = |
668 |
if null exts then (NONE, NONE, [], thy) |
|
669 |
else |
|
670 |
let |
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
671 |
val aname = if null ints then pname else Binding.suffix_name ("_" ^ axiomsN) pname
|
| 28795 | 672 |
val ((statement, intro, axioms), thy') = |
673 |
thy |
|
|
29031
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents:
29030
diff
changeset
|
674 |
|> def_pred aname parms defs' exts exts'; |
| 28795 | 675 |
val (_, thy'') = |
676 |
thy' |
|
| 30469 | 677 |
|> Sign.mandatory_path (Binding.name_of aname) |
|
28903
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
678 |
|> PureThy.note_thmss Thm.internalK |
| 29360 | 679 |
[((Binding.name introN, []), [([intro], [Locale.unfold_attrib])])] |
| 28795 | 680 |
||> Sign.restore_naming thy'; |
681 |
in (SOME statement, SOME intro, axioms, thy'') end; |
|
682 |
val (b_pred, b_intro, b_axioms, thy'''') = |
|
683 |
if null ints then (NONE, NONE, [], thy'') |
|
684 |
else |
|
685 |
let |
|
686 |
val ((statement, intro, axioms), thy''') = |
|
687 |
thy'' |
|
|
29031
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents:
29030
diff
changeset
|
688 |
|> def_pred pname parms defs' (ints @ the_list a_pred) (ints' @ the_list a_pred); |
| 28795 | 689 |
val (_, thy'''') = |
690 |
thy''' |
|
| 30469 | 691 |
|> Sign.mandatory_path (Binding.name_of pname) |
| 28795 | 692 |
|> PureThy.note_thmss Thm.internalK |
| 29360 | 693 |
[((Binding.name introN, []), [([intro], [Locale.intro_attrib])]), |
| 28965 | 694 |
((Binding.name axiomsN, []), |
| 28795 | 695 |
[(map (Drule.standard o Element.conclude_witness) axioms, [])])] |
696 |
||> Sign.restore_naming thy'''; |
|
697 |
in (SOME statement, SOME intro, axioms, thy'''') end; |
|
698 |
in ((a_pred, a_intro, a_axioms), (b_pred, b_intro, b_axioms), thy'''') end; |
|
699 |
||
700 |
end; |
|
701 |
||
702 |
||
703 |
local |
|
704 |
||
705 |
fun assumes_to_notes (Assumes asms) axms = |
|
706 |
fold_map (fn (a, spec) => fn axs => |
|
707 |
let val (ps, qs) = chop (length spec) axs |
|
708 |
in ((a, [(ps, [])]), qs) end) asms axms |
|
709 |
|> apfst (curry Notes Thm.assumptionK) |
|
710 |
| assumes_to_notes e axms = (e, axms); |
|
711 |
||
|
29031
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents:
29030
diff
changeset
|
712 |
fun defines_to_notes thy (Defines defs) = |
|
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents:
29030
diff
changeset
|
713 |
Notes (Thm.definitionK, map (fn (a, (def, _)) => |
|
29245
19728ee2b1ba
Intro_locales_tac knows about defines elements; more robust export morphism.
ballarin
parents:
29241
diff
changeset
|
714 |
(a, [([Assumption.assume (cterm_of thy def)], |
| 29360 | 715 |
[(Attrib.internal o K) Locale.witness_attrib])])) defs) |
|
29031
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents:
29030
diff
changeset
|
716 |
| defines_to_notes _ e = e; |
| 28795 | 717 |
|
|
28898
530c7d28a962
Proper treatment of expressions with free arguments.
ballarin
parents:
28895
diff
changeset
|
718 |
fun gen_add_locale prep_decl |
|
30189
3633f560f4c3
discontinued experimental support for Alice -- too hard to maintain its many language incompatibilities, never really worked anyway;
wenzelm
parents:
29797
diff
changeset
|
719 |
bname raw_predicate_bname raw_import raw_body thy = |
| 28795 | 720 |
let |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
721 |
val name = Sign.full_name thy bname; |
|
29391
1f6e8c00dc3e
tuned signature; changed locale predicate name convention
haftmann
parents:
29362
diff
changeset
|
722 |
val _ = Locale.defined thy name andalso |
| 28795 | 723 |
error ("Duplicate definition of locale " ^ quote name);
|
724 |
||
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
725 |
val ((fixed, deps, body_elems), (parms, ctxt')) = |
|
30189
3633f560f4c3
discontinued experimental support for Alice -- too hard to maintain its many language incompatibilities, never really worked anyway;
wenzelm
parents:
29797
diff
changeset
|
726 |
prep_decl raw_import I raw_body (ProofContext.init thy); |
|
29221
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
727 |
val text as (((_, exts'), _), defs) = eval ctxt' deps body_elems; |
|
918687637307
Refactored: evaluate specification text only in locale declarations.
ballarin
parents:
29217
diff
changeset
|
728 |
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
729 |
val predicate_bname = |
|
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
730 |
if Binding.is_empty raw_predicate_bname then bname |
|
29391
1f6e8c00dc3e
tuned signature; changed locale predicate name convention
haftmann
parents:
29362
diff
changeset
|
731 |
else raw_predicate_bname; |
| 28872 | 732 |
val ((a_statement, a_intro, a_axioms), (b_statement, b_intro, b_axioms), thy') = |
|
29391
1f6e8c00dc3e
tuned signature; changed locale predicate name convention
haftmann
parents:
29362
diff
changeset
|
733 |
define_preds predicate_bname parms text thy; |
| 28795 | 734 |
|
735 |
val extraTs = fold Term.add_tfrees exts' [] \\ fold Term.add_tfreesT (map snd parms) []; |
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
736 |
val _ = |
|
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
737 |
if null extraTs then () |
|
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
738 |
else warning ("Additional type variable(s) in locale specification " ^ quote (Binding.str_of bname));
|
| 28795 | 739 |
|
| 29035 | 740 |
val a_satisfy = Element.satisfy_morphism a_axioms; |
741 |
val b_satisfy = Element.satisfy_morphism b_axioms; |
|
|
28903
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
742 |
|
| 28895 | 743 |
val params = fixed @ |
| 28872 | 744 |
(body_elems |> map_filter (fn Fixes fixes => SOME fixes | _ => NONE) |> flat); |
|
28903
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
745 |
val asm = if is_some b_statement then b_statement else a_statement; |
|
29028
b5dad96c755a
When adding locales, delay notes until local theory is built.
ballarin
parents:
29022
diff
changeset
|
746 |
|
|
b5dad96c755a
When adding locales, delay notes until local theory is built.
ballarin
parents:
29022
diff
changeset
|
747 |
val notes = |
|
b5dad96c755a
When adding locales, delay notes until local theory is built.
ballarin
parents:
29022
diff
changeset
|
748 |
if is_some asm |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
749 |
then [(Thm.internalK, [((Binding.suffix_name ("_" ^ axiomsN) bname, []),
|
|
29028
b5dad96c755a
When adding locales, delay notes until local theory is built.
ballarin
parents:
29022
diff
changeset
|
750 |
[([Assumption.assume (cterm_of thy' (the asm))], |
| 29360 | 751 |
[(Attrib.internal o K) Locale.witness_attrib])])])] |
|
29028
b5dad96c755a
When adding locales, delay notes until local theory is built.
ballarin
parents:
29022
diff
changeset
|
752 |
else []; |
| 28795 | 753 |
|
| 29035 | 754 |
val notes' = body_elems |> |
755 |
map (defines_to_notes thy') |> |
|
756 |
map (Element.morph_ctxt a_satisfy) |> |
|
757 |
(fn elems => fold_map assumes_to_notes elems (map Element.conclude_witness a_axioms)) |> |
|
758 |
fst |> |
|
759 |
map (Element.morph_ctxt b_satisfy) |> |
|
760 |
map_filter (fn Notes notes => SOME notes | _ => NONE); |
|
761 |
||
762 |
val deps' = map (fn (l, morph) => (l, morph $> b_satisfy)) deps; |
|
| 29441 | 763 |
val axioms = map Element.conclude_witness b_axioms; |
| 28872 | 764 |
|
| 29358 | 765 |
val loc_ctxt = thy' |
| 29360 | 766 |
|> Locale.register_locale bname (extraTs, params) |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
767 |
(asm, rev defs) (a_intro, b_intro) axioms ([], []) |
| 29358 | 768 |
(map (fn n => (n, stamp ())) notes |> rev) (map (fn d => (d, stamp ())) deps' |> rev) |
769 |
|> TheoryTarget.init (SOME name) |
|
770 |
|> fold (fn (kind, facts) => LocalTheory.notes kind facts #> snd) notes'; |
|
|
29028
b5dad96c755a
When adding locales, delay notes until local theory is built.
ballarin
parents:
29022
diff
changeset
|
771 |
|
| 29358 | 772 |
in (name, loc_ctxt) end; |
| 28795 | 773 |
|
774 |
in |
|
775 |
||
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
776 |
val add_locale = gen_add_locale cert_declaration; |
|
28902
2019bcc9d8bf
Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents:
28898
diff
changeset
|
777 |
val add_locale_cmd = gen_add_locale read_declaration; |
| 28795 | 778 |
|
779 |
end; |
|
780 |
||
| 28895 | 781 |
|
782 |
(*** Interpretation ***) |
|
783 |
||
784 |
(** Interpretation between locales: declaring sublocale relationships **) |
|
785 |
||
786 |
local |
|
787 |
||
| 29578 | 788 |
fun gen_sublocale prep_expr intern raw_target expression thy = |
| 28895 | 789 |
let |
|
28902
2019bcc9d8bf
Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents:
28898
diff
changeset
|
790 |
val target = intern thy raw_target; |
| 29360 | 791 |
val target_ctxt = Locale.init target thy; |
| 28895 | 792 |
|
|
28903
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
793 |
val ((propss, deps, export), goal_ctxt) = prep_expr expression target_ctxt; |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
794 |
|
| 29578 | 795 |
fun after_qed witss = ProofContext.theory ( |
796 |
fold2 (fn (name, morph) => fn wits => Locale.add_dependency target |
|
797 |
(name, morph $> Element.satisfy_morphism wits $> export)) deps witss #> |
|
798 |
(fn thy => fold_rev Locale.activate_global_facts |
|
|
29391
1f6e8c00dc3e
tuned signature; changed locale predicate name convention
haftmann
parents:
29362
diff
changeset
|
799 |
(Locale.get_registrations thy) thy)); |
| 29578 | 800 |
in Element.witness_proof after_qed propss goal_ctxt end; |
| 28895 | 801 |
|
802 |
in |
|
803 |
||
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
804 |
fun sublocale x = gen_sublocale cert_goal_expression (K I) x; |
| 29360 | 805 |
fun sublocale_cmd x = gen_sublocale read_goal_expression Locale.intern x; |
| 28895 | 806 |
|
| 28795 | 807 |
end; |
| 28895 | 808 |
|
| 29018 | 809 |
|
|
28993
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
810 |
(** Interpretation in theories **) |
|
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
811 |
|
|
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
812 |
local |
|
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
813 |
|
| 29211 | 814 |
fun gen_interpretation prep_expr parse_prop prep_attr |
| 29496 | 815 |
expression equations theory = |
|
28993
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
816 |
let |
| 29496 | 817 |
val ((propss, regs, export), expr_ctxt) = ProofContext.init theory |
818 |
|> prep_expr expression; |
|
| 29441 | 819 |
|
| 29211 | 820 |
val eqns = map (parse_prop expr_ctxt o snd) equations |> Syntax.check_terms expr_ctxt; |
| 29496 | 821 |
val eq_attns = map ((apsnd o map) (prep_attr theory) o fst) equations; |
| 29211 | 822 |
val goal_ctxt = fold Variable.auto_fixes eqns expr_ctxt; |
823 |
val export' = Variable.export_morphism goal_ctxt expr_ctxt; |
|
|
29210
4025459e3f83
Interpretation in theories: first version with equations.
ballarin
parents:
29208
diff
changeset
|
824 |
|
| 29578 | 825 |
fun store_reg ((name, morph), wits) thy = |
| 29441 | 826 |
let |
| 29578 | 827 |
val wits' = map (Element.morph_witness export') wits; |
828 |
val morph' = morph $> Element.satisfy_morphism wits'; |
|
| 29441 | 829 |
in |
830 |
thy |
|
831 |
|> Locale.add_registration (name, (morph', export)) |
|
832 |
|> pair (name, morph') |
|
833 |
end; |
|
834 |
||
835 |
fun store_eqns_activate regs [] thy = |
|
836 |
thy |
|
837 |
|> fold (fn (name, morph) => |
|
838 |
Locale.activate_global_facts (name, morph $> export)) regs |
|
| 29578 | 839 |
| store_eqns_activate regs eqs thy = |
| 29441 | 840 |
let |
| 29578 | 841 |
val eqs' = eqs |> map (Morphism.thm (export' $> export) #> |
| 29441 | 842 |
LocalDefs.meta_rewrite_rule (ProofContext.init thy) #> |
843 |
Drule.abs_def); |
|
| 29578 | 844 |
val eq_morph = Element.eq_morphism thy eqs'; |
| 29441 | 845 |
val eq_attns' = map ((apsnd o map) (Attrib.attribute_i thy)) eq_attns; |
846 |
in |
|
847 |
thy |
|
848 |
|> fold (fn (name, morph) => |
|
849 |
Locale.amend_registration eq_morph (name, morph) #> |
|
850 |
Locale.activate_global_facts (name, morph $> eq_morph $> export)) regs |
|
| 29578 | 851 |
|> PureThy.note_thmss Thm.lemmaK (eq_attns' ~~ map (fn eq => [([eq], [])]) eqs') |
| 29441 | 852 |
|> snd |
853 |
end; |
|
854 |
||
| 29578 | 855 |
fun after_qed wits eqs = ProofContext.theory (fold_map store_reg (regs ~~ wits) |
856 |
#-> (fn regs => store_eqns_activate regs eqs)); |
|
| 29441 | 857 |
|
| 29578 | 858 |
in Element.witness_proof_eqs after_qed propss eqns goal_ctxt end; |
|
28993
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
859 |
|
|
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
860 |
in |
|
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
861 |
|
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
862 |
fun interpretation x = gen_interpretation cert_goal_expression (K I) (K I) x; |
|
29210
4025459e3f83
Interpretation in theories: first version with equations.
ballarin
parents:
29208
diff
changeset
|
863 |
fun interpretation_cmd x = gen_interpretation read_goal_expression |
| 29211 | 864 |
Syntax.parse_prop Attrib.intern_src x; |
| 28895 | 865 |
|
866 |
end; |
|
|
28903
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents:
28902
diff
changeset
|
867 |
|
| 29018 | 868 |
|
869 |
(** Interpretation in proof contexts **) |
|
870 |
||
871 |
local |
|
872 |
||
873 |
fun gen_interpret prep_expr |
|
874 |
expression int state = |
|
875 |
let |
|
876 |
val _ = Proof.assert_forward_or_chain state; |
|
877 |
val ctxt = Proof.context_of state; |
|
878 |
||
879 |
val ((propss, regs, export), goal_ctxt) = prep_expr expression ctxt; |
|
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30335
diff
changeset
|
880 |
|
| 29578 | 881 |
fun store_reg (name, morph) thms = |
| 29018 | 882 |
let |
883 |
val morph' = morph $> Element.satisfy_morphism thms $> export; |
|
| 29578 | 884 |
in Locale.activate_local_facts (name, morph') end; |
| 29018 | 885 |
|
| 29578 | 886 |
fun after_qed wits = |
887 |
Proof.map_context (fold2 store_reg regs wits); |
|
| 29018 | 888 |
in |
| 29578 | 889 |
state |
890 |
|> Element.witness_local_proof after_qed "interpret" propss goal_ctxt int |
|
| 29018 | 891 |
end; |
892 |
||
893 |
in |
|
894 |
||
|
29501
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
haftmann
parents:
29496
diff
changeset
|
895 |
fun interpret x = gen_interpret cert_goal_expression x; |
| 29018 | 896 |
fun interpret_cmd x = gen_interpret read_goal_expression x; |
897 |
||
|
28993
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
898 |
end; |
|
829e684b02ef
Interpretation in theories including interaction with subclass relation.
ballarin
parents:
28951
diff
changeset
|
899 |
|
| 29018 | 900 |
end; |
901 |