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