| author | wenzelm | 
| Tue, 20 Dec 2016 10:06:18 +0100 | |
| changeset 64614 | 88211daacf93 | 
| parent 63402 | f199837304d7 | 
| child 66334 | b210ae666a42 | 
| 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: 
29496diff
changeset | 9 | (* Locale expressions *) | 
| 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 10 | datatype 'term map = Positional of 'term option list | Named of (string * 'term) list | 
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 11 |   type ('name, 'term) expr = ('name * ((string * bool) * 'term map)) list
 | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 12 | type expression_i = (string, term) expr * (binding * typ option * mixfix) list | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 13 | type expression = (xstring * Position.T, 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: 
28895diff
changeset | 15 | (* Processing of context statements *) | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 16 | val cert_statement: Element.context_i list -> Element.statement_i -> | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 17 | Proof.context -> (Attrib.binding * (term * term list) list) list * Proof.context | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 18 | val read_statement: Element.context list -> Element.statement -> | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 19 | Proof.context -> (Attrib.binding * (term * term list) list) list * Proof.context | 
| 28879 | 20 | |
| 28795 | 21 | (* Declaring locales *) | 
| 55639 | 22 | val cert_declaration: expression_i -> (Proof.context -> Proof.context) -> | 
| 23 | Element.context_i list -> | |
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 24 | Proof.context -> (((string * typ) * mixfix) list * (string * morphism) list | 
| 47311 
1addbe2a7458
close context elements via Expression.cert/read_declaration;
 wenzelm parents: 
47287diff
changeset | 25 | * Element.context_i list * Proof.context) * ((string * typ) list * Proof.context) | 
| 55639 | 26 | val cert_read_declaration: expression_i -> (Proof.context -> Proof.context) -> | 
| 27 | Element.context list -> | |
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 28 | Proof.context -> (((string * typ) * mixfix) list * (string * morphism) list | 
| 47311 
1addbe2a7458
close context elements via Expression.cert/read_declaration;
 wenzelm parents: 
47287diff
changeset | 29 | * Element.context_i list * Proof.context) * ((string * typ) list * Proof.context) | 
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 30 | (*FIXME*) | 
| 29702 | 31 | 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: 
30725diff
changeset | 32 | Proof.context -> (((string * typ) * mixfix) list * (string * morphism) list | 
| 47311 
1addbe2a7458
close context elements via Expression.cert/read_declaration;
 wenzelm parents: 
47287diff
changeset | 33 | * Element.context_i list * Proof.context) * ((string * typ) list * Proof.context) | 
| 57181 
2d13bf9ea77b
dropped obscure and unused ad-hoc before_exit hook for named targets
 haftmann parents: 
56809diff
changeset | 34 | val add_locale: binding -> binding -> | 
| 41585 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 wenzelm parents: 
41435diff
changeset | 35 | expression_i -> Element.context_i list -> theory -> string * local_theory | 
| 57181 
2d13bf9ea77b
dropped obscure and unused ad-hoc before_exit hook for named targets
 haftmann parents: 
56809diff
changeset | 36 | val add_locale_cmd: binding -> binding -> | 
| 41585 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 wenzelm parents: 
41435diff
changeset | 37 | expression -> Element.context list -> theory -> string * local_theory | 
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 38 | |
| 61669 | 39 | (* Processing of locale expressions *) | 
| 29441 | 40 | val cert_goal_expression: expression_i -> Proof.context -> | 
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 41 | (term list list * (string * morphism) list * morphism) * Proof.context | 
| 29496 | 42 | val read_goal_expression: expression -> Proof.context -> | 
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 43 | (term list list * (string * morphism) list * morphism) * Proof.context | 
| 41435 | 44 | |
| 45 | (* Diagnostic *) | |
| 46 | val print_dependencies: Proof.context -> bool -> expression -> unit | |
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 47 | end; | 
| 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 48 | |
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 49 | structure Expression : EXPRESSION = | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 50 | struct | 
| 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 51 | |
| 28795 | 52 | datatype ctxt = datatype Element.ctxt; | 
| 53 | ||
| 54 | ||
| 55 | (*** Expressions ***) | |
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 56 | |
| 28872 | 57 | datatype 'term map = | 
| 58 | Positional of 'term option list | | |
| 59 | Named of (string * 'term) list; | |
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 60 | |
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 61 | type ('name, 'term) expr = ('name * ((string * bool) * 'term map)) list;
 | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 62 | |
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 63 | type expression_i = (string, term) expr * (binding * typ option * mixfix) list; | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 64 | type expression = (xstring * Position.T, string) expr * (binding * string option * mixfix) list; | 
| 28795 | 65 | |
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 66 | |
| 28859 | 67 | (** Internalise locale names in expr **) | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 68 | |
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 69 | fun check_expr thy instances = map (apfst (Locale.check thy)) instances; | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 70 | |
| 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 71 | |
| 30778 | 72 | (** Parameters of expression **) | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 73 | |
| 30778 | 74 | (*Sanity check of instantiations and extraction of implicit parameters. | 
| 75 | The latter only occurs iff strict = false. | |
| 76 | Positional instantiations are extended to match full length of parameter list | |
| 77 | of instantiated locale.*) | |
| 28895 | 78 | |
| 79 | fun parameters_of thy strict (expr, fixed) = | |
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 80 | let | 
| 53041 | 81 | val ctxt = Proof_Context.init_global thy; | 
| 82 | ||
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 83 | fun reject_dups message xs = | 
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 84 | (case duplicates (op =) xs of | 
| 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 85 | [] => () | 
| 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 86 | | dups => error (message ^ commas dups)); | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 87 | |
| 62752 | 88 | fun parm_eq ((p1, mx1), (p2, mx2)) = | 
| 89 | p1 = p2 andalso | |
| 90 | (Mixfix.equal (mx1, mx2) orelse | |
| 91 |           error ("Conflicting syntax for parameter " ^ quote p1 ^ " in expression" ^
 | |
| 92 | Position.here_list [Mixfix.pos_of mx1, Mixfix.pos_of mx2])); | |
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 93 | |
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 94 | fun params_loc loc = Locale.params_of thy loc |> map (apfst #1); | 
| 30778 | 95 | fun params_inst (loc, (prfx, Positional insts)) = | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 96 | let | 
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 97 | val ps = params_loc loc; | 
| 29358 | 98 | val d = length ps - length insts; | 
| 99 | val insts' = | |
| 53041 | 100 | if d < 0 then | 
| 101 |                 error ("More arguments than parameters in instantiation of locale " ^
 | |
| 102 | quote (Locale.markup_name ctxt 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); | 
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 106 | in (ps', (loc, (prfx, Positional insts'))) end | 
| 30778 | 107 | | params_inst (loc, (prfx, Named insts)) = | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 108 | let | 
| 53041 | 109 | val _ = | 
| 110 | reject_dups "Duplicate instantiation of the following parameter(s): " | |
| 111 | (map fst insts); | |
| 30778 | 112 | 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: 
30725diff
changeset | 113 | if AList.defined (op =) ps p then AList.delete (op =) p ps | 
| 30778 | 114 | 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: 
30725diff
changeset | 115 | in (ps', (loc, (prfx, Named insts))) end; | 
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 116 | fun params_expr is = | 
| 30778 | 117 | let | 
| 118 | 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 | 119 | let | 
| 30778 | 120 | val (ps', i') = params_inst i; | 
| 121 | val ps'' = distinct parm_eq (ps @ ps'); | |
| 122 | in (i', ps'') end) is [] | |
| 123 | in (ps', is') end; | |
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 124 | |
| 28895 | 125 | val (implicit, expr') = params_expr expr; | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 126 | |
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 127 | val implicit' = map #1 implicit; | 
| 42494 | 128 | val fixed' = map (Variable.check_name o #1) fixed; | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 129 | val _ = reject_dups "Duplicate fixed parameter(s): " fixed'; | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 130 | val implicit'' = | 
| 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 131 | if strict then [] | 
| 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 132 | else | 
| 55639 | 133 | let | 
| 134 | val _ = | |
| 135 | reject_dups | |
| 136 | "Parameter(s) declared simultaneously in expression and for clause: " | |
| 137 | (implicit' @ fixed'); | |
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 138 | 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 | 139 | |
| 28895 | 140 | in (expr', implicit'' @ fixed) end; | 
| 28697 
140bfb63f893
New-style locale expressions with instantiation (new file expression.ML).
 ballarin parents: diff
changeset | 141 | |
| 28795 | 142 | |
| 143 | (** Read instantiation **) | |
| 144 | ||
| 28872 | 145 | (* Parse positional or named instantiation *) | 
| 146 | ||
| 28859 | 147 | local | 
| 148 | ||
| 29797 | 149 | fun prep_inst prep_term ctxt parms (Positional insts) = | 
| 49817 | 150 | (insts ~~ parms) |> map | 
| 151 | (fn (NONE, p) => Free (p, dummyT) | |
| 152 | | (SOME t, _) => prep_term ctxt t) | |
| 29797 | 153 | | prep_inst prep_term ctxt parms (Named insts) = | 
| 49817 | 154 | parms |> map (fn p => | 
| 155 | (case AList.lookup (op =) insts p of | |
| 156 | SOME t => prep_term ctxt t | | |
| 157 | NONE => Free (p, dummyT))); | |
| 28872 | 158 | |
| 159 | in | |
| 160 | ||
| 161 | fun parse_inst x = prep_inst Syntax.parse_term x; | |
| 162 | fun make_inst x = prep_inst (K I) x; | |
| 163 | ||
| 164 | end; | |
| 165 | ||
| 166 | ||
| 167 | (* Instantiation morphism *) | |
| 168 | ||
| 54740 | 169 | fun inst_morphism (parm_names, parm_types) ((prfx, mandatory), insts') ctxt = | 
| 28795 | 170 | let | 
| 171 | (* parameters *) | |
| 172 | val type_parm_names = fold Term.add_tfreesT parm_types [] |> map fst; | |
| 173 | ||
| 174 | (* type inference and contexts *) | |
| 37145 
01aa36932739
renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36674diff
changeset | 175 | val parm_types' = map (Type_Infer.paramify_vars o Logic.varifyT_global) parm_types; | 
| 28795 | 176 | val type_parms = fold Term.add_tvarsT parm_types' [] |> map (Logic.mk_type o TVar); | 
| 39288 | 177 | val arg = type_parms @ map2 Type.constraint parm_types' insts'; | 
| 62958 
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
 wenzelm parents: 
62752diff
changeset | 178 | val res = Syntax.check_terms (Config.put Type_Infer.object_logic false ctxt) arg; | 
| 28795 | 179 | val ctxt' = ctxt |> fold Variable.auto_fixes res; | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 180 | |
| 28795 | 181 | (* instantiation *) | 
| 182 | val (type_parms'', res') = chop (length type_parms) res; | |
| 183 | val insts'' = (parm_names ~~ res') |> map_filter | |
| 30776 | 184 | (fn inst as (x, Free (y, _)) => if x = y then NONE else SOME inst | 
| 185 | | inst => SOME inst); | |
| 28795 | 186 | val instT = Symtab.make (type_parm_names ~~ map Logic.dest_type type_parms''); | 
| 187 | val inst = Symtab.make insts''; | |
| 188 | in | |
| 42360 | 189 | (Element.inst_morphism (Proof_Context.theory_of ctxt) (instT, inst) $> | 
| 54740 | 190 | Morphism.binding_morphism "Expression.inst" (Binding.prefix mandatory prfx), ctxt') | 
| 28795 | 191 | end; | 
| 28859 | 192 | |
| 28795 | 193 | |
| 194 | (*** Locale processing ***) | |
| 195 | ||
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 196 | (** Parsing **) | 
| 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 197 | |
| 29604 | 198 | fun parse_elem prep_typ prep_term ctxt = | 
| 199 | Element.map_ctxt | |
| 200 |    {binding = I,
 | |
| 201 | typ = prep_typ ctxt, | |
| 42360 | 202 | term = prep_term (Proof_Context.set_mode Proof_Context.mode_schematic ctxt), | 
| 203 | pattern = prep_term (Proof_Context.set_mode Proof_Context.mode_pattern ctxt), | |
| 29604 | 204 | fact = I, | 
| 205 | attrib = I}; | |
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 206 | |
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 207 | fun prepare_stmt prep_prop prep_obtains ctxt stmt = | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 208 | (case stmt of | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 209 | Element.Shows raw_shows => | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 210 | raw_shows |> (map o apsnd o map) (fn (t, ps) => | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 211 | (prep_prop (Proof_Context.set_mode Proof_Context.mode_schematic ctxt) t, | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 212 | map (prep_prop (Proof_Context.set_mode Proof_Context.mode_pattern ctxt)) ps)) | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 213 | | Element.Obtains raw_obtains => | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 214 | let | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 215 | val ((_, thesis), thesis_ctxt) = Obtain.obtain_thesis ctxt; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 216 | val obtains = prep_obtains thesis_ctxt thesis raw_obtains; | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 217 | in map (fn (b, t) => ((b, []), [(t, [])])) obtains end); | 
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 218 | |
| 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 219 | |
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 220 | (** Simultaneous type inference: instantiations + elements + statement **) | 
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 221 | |
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 222 | local | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 223 | |
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 224 | fun mk_type T = (Logic.mk_type T, []); | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 225 | fun mk_term t = (t, []); | 
| 39288 | 226 | fun mk_propp (p, pats) = (Type.constraint propT p, pats); | 
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 227 | |
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 228 | fun dest_type (T, []) = Logic.dest_type T; | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 229 | fun dest_term (t, []) = t; | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 230 | fun dest_propp (p, pats) = (p, pats); | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 231 | |
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 232 | fun extract_inst (_, (_, ts)) = map mk_term ts; | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 233 | fun restore_inst ((l, (p, _)), cs) = (l, (p, map dest_term cs)); | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 234 | |
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 235 | 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: 
28879diff
changeset | 236 | | extract_elem (Constrains csts) = map (#2 #> single #> map mk_type) csts | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 237 | | extract_elem (Assumes asms) = map (#2 #> map mk_propp) asms | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 238 | | extract_elem (Defines defs) = map (fn (_, (t, ps)) => [mk_propp (t, ps)]) defs | 
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 239 | | extract_elem (Notes _) = []; | 
| 28795 | 240 | |
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 241 | fun restore_elem (Fixes fixes, css) = | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 242 | (fixes ~~ css) |> map (fn ((x, _, mx), cs) => | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 243 | (x, cs |> map dest_type |> try hd, mx)) |> Fixes | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 244 | | restore_elem (Constrains csts, css) = | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 245 | (csts ~~ css) |> map (fn ((x, _), cs) => | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 246 | (x, cs |> map dest_type |> hd)) |> Constrains | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 247 | | restore_elem (Assumes asms, css) = | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 248 | (asms ~~ css) |> map (fn ((b, _), cs) => (b, map dest_propp cs)) |> Assumes | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 249 | | restore_elem (Defines defs, css) = | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 250 | (defs ~~ css) |> map (fn ((b, _), [c]) => (b, dest_propp c)) |> Defines | 
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 251 | | restore_elem (Notes notes, _) = Notes notes; | 
| 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 252 | |
| 63084 | 253 | fun prep (_, pats) (ctxt, t :: ts) = | 
| 254 | let val ctxt' = Variable.auto_fixes t ctxt | |
| 255 | in | |
| 256 | ((t, Syntax.check_props (Proof_Context.set_mode Proof_Context.mode_pattern ctxt') pats), | |
| 257 | (ctxt', ts)) | |
| 258 | end; | |
| 259 | ||
| 260 | fun check cs ctxt = | |
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 261 | let | 
| 63084 | 262 | val (cs', (ctxt', _)) = fold_map prep cs | 
| 263 | (ctxt, Syntax.check_terms | |
| 264 | (Proof_Context.set_mode Proof_Context.mode_schematic ctxt) (map fst cs)); | |
| 265 | in (cs', ctxt') end; | |
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 266 | |
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 267 | in | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 268 | |
| 28872 | 269 | fun check_autofix insts elems concl ctxt = | 
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 270 | let | 
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 271 | val inst_cs = map extract_inst insts; | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 272 | val elem_css = map extract_elem elems; | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 273 | val concl_cs = (map o map) mk_propp (map snd concl); | 
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 274 | (* Type inference *) | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 275 | val (inst_cs' :: css', ctxt') = | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 276 | (fold_burrow o fold_burrow) check (inst_cs :: elem_css @ [concl_cs]) ctxt; | 
| 28936 
f1647bf418f5
No resolution of patterns within context statements.
 ballarin parents: 
28903diff
changeset | 277 | val (elem_css', [concl_cs']) = chop (length elem_css) css'; | 
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 278 | in | 
| 60476 | 279 | ((map restore_inst (insts ~~ inst_cs'), | 
| 30776 | 280 | map restore_elem (elems ~~ elem_css'), | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 281 | map fst concl ~~ concl_cs'), ctxt') | 
| 28885 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 282 | end; | 
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 283 | |
| 
6f6bf52e75bb
Expression types cleaned up, proper treatment of term patterns.
 ballarin parents: 
28879diff
changeset | 284 | end; | 
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 285 | |
| 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 286 | |
| 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 287 | (** Prepare locale elements **) | 
| 28795 | 288 | |
| 60379 | 289 | fun declare_elem prep_var (Fixes fixes) ctxt = | 
| 290 | let val (vars, _) = fold_map prep_var fixes ctxt | |
| 42360 | 291 | in ctxt |> Proof_Context.add_fixes vars |> snd end | 
| 60379 | 292 | | declare_elem prep_var (Constrains csts) ctxt = | 
| 293 | ctxt |> fold_map (fn (x, T) => prep_var (Binding.name x, SOME T, NoSyn)) csts |> snd | |
| 28872 | 294 | | declare_elem _ (Assumes _) ctxt = ctxt | 
| 295 | | declare_elem _ (Defines _) ctxt = ctxt | |
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 296 | | declare_elem _ (Notes _) ctxt = ctxt; | 
| 28795 | 297 | |
| 30776 | 298 | |
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 299 | (** Finish locale elements **) | 
| 28795 | 300 | |
| 49819 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 301 | fun finish_inst ctxt (loc, (prfx, inst)) = | 
| 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 302 | let | 
| 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 303 | val thy = Proof_Context.theory_of ctxt; | 
| 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 304 | val (parm_names, parm_types) = Locale.params_of thy loc |> map #1 |> split_list; | 
| 54740 | 305 | val (morph, _) = inst_morphism (parm_names, parm_types) (prfx, inst) ctxt; | 
| 49819 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 306 | in (loc, morph) end; | 
| 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 307 | |
| 49818 | 308 | fun finish_fixes (parms: (string * typ) list) = map (fn (binding, _, mx) => | 
| 309 | let val x = Binding.name_of binding | |
| 310 | in (binding, AList.lookup (op =) parms x, mx) end); | |
| 49817 | 311 | |
| 312 | local | |
| 313 | ||
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 314 | fun closeup _ _ false elem = elem | 
| 49819 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 315 | | closeup (outer_ctxt, ctxt) parms true elem = | 
| 28795 | 316 | let | 
| 30725 
c23a5b3cd1b9
register_locale: produce stamps at the spot where elements are registered;
 wenzelm parents: 
30585diff
changeset | 317 | (* FIXME consider closing in syntactic phase -- before type checking *) | 
| 28795 | 318 | fun close_frees t = | 
| 319 | let | |
| 320 | val rev_frees = | |
| 321 | Term.fold_aterms (fn Free (x, T) => | |
| 49819 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 322 | if Variable.is_fixed outer_ctxt x orelse AList.defined (op =) parms x then I | 
| 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 323 | else insert (op =) (x, T) | _ => I) t []; | 
| 30725 
c23a5b3cd1b9
register_locale: produce stamps at the spot where elements are registered;
 wenzelm parents: 
30585diff
changeset | 324 | in fold (Logic.all o Free) rev_frees t end; | 
| 28795 | 325 | |
| 326 | fun no_binds [] = [] | |
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 327 | | no_binds _ = error "Illegal term bindings in context element"; | 
| 28795 | 328 | in | 
| 329 | (case elem of | |
| 330 | Assumes asms => Assumes (asms |> map (fn (a, propps) => | |
| 331 | (a, map (fn (t, ps) => (close_frees t, no_binds ps)) propps))) | |
| 29022 | 332 | | Defines defs => Defines (defs |> map (fn ((name, atts), (t, ps)) => | 
| 63395 | 333 | let val ((c, _), t') = Local_Defs.cert_def ctxt (K []) (close_frees t) | 
| 30434 | 334 | in ((Thm.def_binding_optional (Binding.name c) name, atts), (t', no_binds ps)) end)) | 
| 28795 | 335 | | e => e) | 
| 336 | end; | |
| 337 | ||
| 49819 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 338 | in | 
| 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 339 | |
| 49818 | 340 | fun finish_elem _ parms _ (Fixes fixes) = Fixes (finish_fixes parms fixes) | 
| 341 | | finish_elem _ _ _ (Constrains _) = Constrains [] | |
| 49819 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 342 | | finish_elem ctxts parms do_close (Assumes asms) = closeup ctxts parms do_close (Assumes asms) | 
| 
97b572c10fe9
refrain from quantifying outer fixes, to enable nesting of contexts like "context fixes x context assumes A x";
 wenzelm parents: 
49818diff
changeset | 343 | | finish_elem ctxts parms do_close (Defines defs) = closeup ctxts parms do_close (Defines defs) | 
| 49818 | 344 | | finish_elem _ _ _ (Notes facts) = Notes facts; | 
| 28872 | 345 | |
| 49817 | 346 | end; | 
| 347 | ||
| 28795 | 348 | |
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 349 | (** Process full context statement: instantiations + elements + statement **) | 
| 28895 | 350 | |
| 351 | (* Interleave incremental parsing and type inference over entire parsed stretch. *) | |
| 352 | ||
| 28795 | 353 | local | 
| 354 | ||
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46899diff
changeset | 355 | fun prep_full_context_statement | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 356 | parse_typ parse_prop prep_obtains prep_var_elem prep_inst prep_var_inst prep_expr | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 357 |     {strict, do_close, fixed_frees} raw_import init_body raw_elems raw_stmt ctxt1 =
 | 
| 28795 | 358 | let | 
| 42360 | 359 | val thy = Proof_Context.theory_of ctxt1; | 
| 28872 | 360 | |
| 28895 | 361 | val (raw_insts, fixed) = parameters_of thy strict (apfst (prep_expr thy) raw_import); | 
| 362 | ||
| 30778 | 363 | fun prep_insts_cumulative (loc, (prfx, inst)) (i, insts, ctxt) = | 
| 28872 | 364 | let | 
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 365 | val (parm_names, parm_types) = Locale.params_of thy loc |> map #1 |> split_list; | 
| 29797 | 366 | val inst' = prep_inst ctxt parm_names inst; | 
| 45587 | 367 | val parm_types' = parm_types | 
| 368 | |> map (Type_Infer.paramify_vars o | |
| 369 | Term.map_type_tvar (fn ((x, _), S) => TVar ((x, i), S)) o Logic.varifyT_global); | |
| 39288 | 370 | val inst'' = map2 Type.constraint parm_types' inst'; | 
| 28872 | 371 | val insts' = insts @ [(loc, (prfx, inst''))]; | 
| 60476 | 372 | val ((insts'', _, _), _) = check_autofix insts' [] [] ctxt; | 
| 28872 | 373 | val inst''' = insts'' |> List.last |> snd |> snd; | 
| 54740 | 374 | val (morph, _) = inst_morphism (parm_names, parm_types) (prfx, inst''') ctxt; | 
| 30764 
3e3e7aa0cc7a
simplified Locale.activate operations, using generic context;
 wenzelm parents: 
30763diff
changeset | 375 | val ctxt'' = Locale.activate_declarations (loc, morph) ctxt; | 
| 30725 
c23a5b3cd1b9
register_locale: produce stamps at the spot where elements are registered;
 wenzelm parents: 
30585diff
changeset | 376 | in (i + 1, insts', ctxt'') end; | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 377 | |
| 51729 | 378 | fun prep_elem raw_elem ctxt = | 
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 379 | let | 
| 47315 | 380 | val ctxt' = ctxt | 
| 381 | |> Context_Position.set_visible false | |
| 60379 | 382 | |> declare_elem prep_var_elem raw_elem | 
| 47315 | 383 | |> Context_Position.restore_visible ctxt; | 
| 384 | val elems' = parse_elem parse_typ parse_prop ctxt' raw_elem; | |
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 385 | in (elems', ctxt') end; | 
| 28795 | 386 | |
| 60379 | 387 | val fors = fold_map prep_var_inst fixed ctxt1 |> fst; | 
| 42360 | 388 | val ctxt2 = ctxt1 |> Proof_Context.add_fixes fors |> snd; | 
| 30778 | 389 | val (_, insts', ctxt3) = fold prep_insts_cumulative raw_insts (0, [], ctxt2); | 
| 30786 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 390 | |
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 391 | fun prep_stmt elems ctxt = | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 392 | check_autofix insts' elems (prepare_stmt parse_prop prep_obtains ctxt raw_stmt) ctxt; | 
| 60476 | 393 | |
| 30786 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 394 | val _ = | 
| 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 395 | if fixed_frees then () | 
| 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 396 | else | 
| 42482 | 397 | (case fold (fold (Variable.add_frees ctxt3) o snd o snd) insts' [] of | 
| 30786 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 398 | [] => () | 
| 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 399 |         | frees => error ("Illegal free variables in expression: " ^
 | 
| 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 400 | commas_quote (map (Syntax.string_of_term ctxt3 o Free) (rev frees)))); | 
| 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 401 | |
| 60476 | 402 | val ((insts, elems', concl), ctxt4) = ctxt3 | 
| 403 | |> init_body | |
| 404 | |> fold_map prep_elem raw_elems | |
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 405 | |-> prep_stmt; | 
| 28795 | 406 | |
| 60407 | 407 | |
| 408 | (* parameters from expression and elements *) | |
| 409 | ||
| 54878 | 410 | val xs = maps (fn Fixes fixes => map (Variable.check_name o #1) fixes | _ => []) | 
| 411 | (Fixes fors :: elems'); | |
| 60476 | 412 | val (parms, ctxt5) = fold_map Proof_Context.inferred_param xs ctxt4; | 
| 28795 | 413 | |
| 49818 | 414 | val fors' = finish_fixes parms fors; | 
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 415 | val fixed = map (fn (b, SOME T, mx) => ((Binding.name_of b, T), mx)) fors'; | 
| 60476 | 416 | val deps = map (finish_inst ctxt5) insts; | 
| 417 | val elems'' = map (finish_elem (ctxt1, ctxt5) parms do_close) elems'; | |
| 28852 
5ddea758679b
Type inference for elements through syntax module.
 ballarin parents: 
28832diff
changeset | 418 | |
| 60476 | 419 | in ((fixed, deps, elems'', concl), (parms, ctxt5)) end; | 
| 28795 | 420 | |
| 421 | in | |
| 422 | ||
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 423 | fun cert_full_context_statement x = | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 424 | prep_full_context_statement (K I) (K I) Obtain.cert_obtains | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 425 | Proof_Context.cert_var make_inst Proof_Context.cert_var (K I) x; | 
| 30776 | 426 | |
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 427 | fun cert_read_full_context_statement x = | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 428 | prep_full_context_statement Syntax.parse_typ Syntax.parse_prop Obtain.parse_obtains | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 429 | Proof_Context.read_var make_inst Proof_Context.cert_var (K I) x; | 
| 30776 | 430 | |
| 28895 | 431 | fun read_full_context_statement x = | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 432 | prep_full_context_statement Syntax.parse_typ Syntax.parse_prop Obtain.parse_obtains | 
| 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 433 | Proof_Context.read_var parse_inst Proof_Context.read_var check_expr x; | 
| 28795 | 434 | |
| 435 | end; | |
| 436 | ||
| 437 | ||
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 438 | (* Context statement: elements + statement *) | 
| 28795 | 439 | |
| 440 | local | |
| 441 | ||
| 63084 | 442 | fun prep_statement prep activate raw_elems raw_stmt ctxt = | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 443 | let | 
| 49817 | 444 | val ((_, _, elems, concl), _) = | 
| 445 |       prep {strict = true, do_close = false, fixed_frees = true}
 | |
| 63084 | 446 | ([], []) I raw_elems raw_stmt ctxt; | 
| 63086 
5c8e6a751adc
avoid spurious fact index, notably in "context begin" (via Bundle.context);
 wenzelm parents: 
63085diff
changeset | 447 | val ctxt' = ctxt | 
| 49817 | 448 | |> Proof_Context.set_stmt true | 
| 63086 
5c8e6a751adc
avoid spurious fact index, notably in "context begin" (via Bundle.context);
 wenzelm parents: 
63085diff
changeset | 449 | |> fold_map activate elems |> #2 | 
| 
5c8e6a751adc
avoid spurious fact index, notably in "context begin" (via Bundle.context);
 wenzelm parents: 
63085diff
changeset | 450 | |> Proof_Context.restore_stmt ctxt; | 
| 63084 | 451 | in (concl, ctxt') end; | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 452 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 453 | in | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 454 | |
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 455 | 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: 
28895diff
changeset | 456 | fun read_statement x = prep_statement read_full_context_statement Element.activate x; | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 457 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 458 | end; | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 459 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 460 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 461 | (* Locale declaration: import + elements *) | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 462 | |
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 463 | fun fix_params params = | 
| 42360 | 464 | Proof_Context.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: 
30725diff
changeset | 465 | |
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 466 | local | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 467 | |
| 63085 | 468 | fun prep_declaration prep activate raw_import init_body raw_elems ctxt = | 
| 28795 | 469 | let | 
| 63085 | 470 | val ((fixed, deps, elems, _), (parms, ctxt0)) = | 
| 30786 
461f7b5f16a2
prep_full_context_statement: explicit record of flags;
 wenzelm parents: 
30784diff
changeset | 471 |       prep {strict = false, do_close = true, fixed_frees = false}
 | 
| 63085 | 472 | raw_import init_body raw_elems (Element.Shows []) ctxt; | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 473 | (* Declare parameters and imported facts *) | 
| 63085 | 474 | val ctxt' = ctxt | 
| 475 | |> fix_params fixed | |
| 476 | |> fold (Context.proof_map o Locale.activate_facts NONE) deps; | |
| 477 | val (elems', ctxt'') = ctxt' | |
| 478 | |> Proof_Context.set_stmt true | |
| 63086 
5c8e6a751adc
avoid spurious fact index, notably in "context begin" (via Bundle.context);
 wenzelm parents: 
63085diff
changeset | 479 | |> fold_map activate elems | 
| 
5c8e6a751adc
avoid spurious fact index, notably in "context begin" (via Bundle.context);
 wenzelm parents: 
63085diff
changeset | 480 | ||> Proof_Context.restore_stmt ctxt'; | 
| 63085 | 481 | in ((fixed, deps, elems', ctxt''), (parms, ctxt0)) end; | 
| 28795 | 482 | |
| 483 | in | |
| 484 | ||
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 485 | 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: 
29496diff
changeset | 486 | 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: 
28895diff
changeset | 487 | fun read_declaration x = prep_declaration read_full_context_statement Element.activate x; | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 488 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 489 | end; | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 490 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 491 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 492 | (* Locale expression to set up a goal *) | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 493 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 494 | local | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 495 | |
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 496 | fun props_of thy (name, morph) = | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 497 | let | 
| 29360 | 498 | val (asm, defs) = Locale.specification_of thy name; | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 499 | in | 
| 55639 | 500 | (case asm of NONE => defs | SOME asm => asm :: defs) | 
| 501 | |> map (Morphism.term morph) | |
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 502 | end; | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 503 | |
| 63084 | 504 | fun prep_goal_expression prep expression ctxt = | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 505 | let | 
| 63084 | 506 | val thy = Proof_Context.theory_of ctxt; | 
| 28879 | 507 | |
| 29358 | 508 | val ((fixed, deps, _, _), _) = | 
| 60477 
051b200f7578
improved treatment of Element.Obtains via Expression.prepare_stmt;
 wenzelm parents: 
60476diff
changeset | 509 |       prep {strict = true, do_close = true, fixed_frees = true} expression I []
 | 
| 63084 | 510 | (Element.Shows []) ctxt; | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 511 | (* proof obligations *) | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 512 | val propss = map (props_of thy) deps; | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 513 | |
| 63084 | 514 | val goal_ctxt = ctxt | 
| 515 | |> fix_params fixed | |
| 516 | |> (fold o fold) Variable.auto_fixes propss; | |
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 517 | |
| 63084 | 518 | val export = Variable.export_morphism goal_ctxt ctxt; | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 519 | val exp_fact = Drule.zero_var_indexes_list o map Thm.strip_shyps o Morphism.fact export; | 
| 31977 | 520 | val exp_term = Term_Subst.zero_var_indexes o Morphism.term export; | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 521 | val exp_typ = Logic.type_map exp_term; | 
| 45289 
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
 wenzelm parents: 
43543diff
changeset | 522 | val export' = | 
| 54740 | 523 | Morphism.morphism "Expression.prep_goal" | 
| 524 |         {binding = [], typ = [exp_typ], term = [exp_term], fact = [exp_fact]};
 | |
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 525 | in ((propss, deps, export'), goal_ctxt) end; | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 526 | |
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 527 | in | 
| 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 528 | |
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 529 | fun cert_goal_expression x = prep_goal_expression cert_full_context_statement x; | 
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 530 | fun read_goal_expression x = prep_goal_expression read_full_context_statement x; | 
| 28879 | 531 | |
| 28795 | 532 | end; | 
| 533 | ||
| 534 | ||
| 535 | (*** Locale declarations ***) | |
| 536 | ||
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 537 | (* extract specification text *) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 538 | |
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 539 | val norm_term = Envir.beta_norm oo Term.subst_atomic; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 540 | |
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 541 | fun bind_def ctxt eq (xs, env, eqs) = | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 542 | let | 
| 63395 | 543 | val _ = Local_Defs.cert_def ctxt (K []) eq; | 
| 35624 | 544 | val ((y, T), b) = Local_Defs.abs_def eq; | 
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 545 | val b' = norm_term env b; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 546 | fun err msg = error (msg ^ ": " ^ quote y); | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 547 | in | 
| 49749 | 548 | (case filter (fn (Free (y', _), _) => y = y' | _ => false) env of | 
| 549 | [] => (Term.add_frees b' xs, (Free (y, T), b') :: env, eq :: eqs) | |
| 550 | | dups => | |
| 551 | if forall (fn (_, b'') => b' aconv b'') dups then (xs, env, eqs) | |
| 552 | else err "Attempt to redefine variable") | |
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 553 | end; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 554 | |
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 555 | (* text has the following structure: | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 556 | (((exts, exts'), (ints, ints')), (xs, env, defs)) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 557 | where | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 558 | exts: external assumptions (terms in assumes elements) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 559 | exts': dito, normalised wrt. env | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 560 | ints: internal assumptions (terms in assumptions from insts) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 561 | ints': dito, normalised wrt. env | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 562 | xs: the free variables in exts' and ints' and rhss of definitions, | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 563 | this includes parameters except defined parameters | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 564 | env: list of term pairs encoding substitutions, where the first term | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 565 | is a free variable; substitutions represent defines elements and | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 566 | the rhs is normalised wrt. the previous env | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 567 | defs: the equations from the defines elements | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 568 | *) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 569 | |
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 570 | fun eval_text _ _ (Fixes _) text = text | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 571 | | eval_text _ _ (Constrains _) text = text | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 572 | | eval_text _ is_ext (Assumes asms) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 573 | (((exts, exts'), (ints, ints')), (xs, env, defs)) = | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 574 | let | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 575 | val ts = maps (map #1 o #2) asms; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 576 | val ts' = map (norm_term env) ts; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 577 | val spec' = | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 578 | if is_ext then ((exts @ ts, exts' @ ts'), (ints, ints')) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 579 | else ((exts, exts'), (ints @ ts, ints' @ ts')); | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 580 | in (spec', (fold Term.add_frees ts' xs, env, defs)) end | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 581 | | eval_text ctxt _ (Defines defs) (spec, binds) = | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 582 | (spec, fold (bind_def ctxt o #1 o #2) defs binds) | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 583 | | eval_text _ _ (Notes _) text = text; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 584 | |
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 585 | fun eval_inst ctxt (loc, morph) text = | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 586 | let | 
| 42360 | 587 | val thy = Proof_Context.theory_of ctxt; | 
| 29360 | 588 | val (asm, defs) = Locale.specification_of thy loc; | 
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 589 | val asm' = Option.map (Morphism.term morph) asm; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 590 | val defs' = map (Morphism.term morph) defs; | 
| 55639 | 591 | val text' = | 
| 592 | text |> | |
| 593 | (if is_some asm then | |
| 63352 | 594 | eval_text ctxt false (Assumes [(Binding.empty_atts, [(the asm', [])])]) | 
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 595 | else I) |> | 
| 55639 | 596 | (if not (null defs) then | 
| 63352 | 597 | eval_text ctxt false (Defines (map (fn def => (Binding.empty_atts, (def, []))) defs')) | 
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 598 | else I) | 
| 29360 | 599 | (* FIXME clone from locale.ML *) | 
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 600 | in text' end; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 601 | |
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 602 | fun eval_elem ctxt elem text = | 
| 30725 
c23a5b3cd1b9
register_locale: produce stamps at the spot where elements are registered;
 wenzelm parents: 
30585diff
changeset | 603 | eval_text ctxt true elem text; | 
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 604 | |
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 605 | fun eval ctxt deps elems = | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 606 | let | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 607 | val text' = fold (eval_inst ctxt) deps ((([], []), ([], [])), ([], [], [])); | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 608 | val ((spec, (_, _, defs))) = fold (eval_elem ctxt) elems text'; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 609 | in (spec, defs) end; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 610 | |
| 28903 
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
 ballarin parents: 
28902diff
changeset | 611 | (* axiomsN: name of theorem set with destruct rules for locale predicates, | 
| 
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
 ballarin parents: 
28902diff
changeset | 612 | also name suffix of delta predicates and assumptions. *) | 
| 
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
 ballarin parents: 
28902diff
changeset | 613 | |
| 
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
 ballarin parents: 
28902diff
changeset | 614 | val axiomsN = "axioms"; | 
| 
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
 ballarin parents: 
28902diff
changeset | 615 | |
| 28795 | 616 | local | 
| 617 | ||
| 618 | (* introN: name of theorems for introduction rules of locale and | |
| 28903 
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
 ballarin parents: 
28902diff
changeset | 619 | delta predicates *) | 
| 28795 | 620 | |
| 621 | val introN = "intro"; | |
| 622 | ||
| 59970 | 623 | fun atomize_spec ctxt ts = | 
| 28795 | 624 | let | 
| 625 | val t = Logic.mk_conjunction_balanced ts; | |
| 59970 | 626 | val body = Object_Logic.atomize_term ctxt t; | 
| 28795 | 627 | val bodyT = Term.fastype_of body; | 
| 628 | in | |
| 55639 | 629 | if bodyT = propT | 
| 59970 | 630 | then (t, propT, Thm.reflexive (Thm.cterm_of ctxt t)) | 
| 631 | else (body, bodyT, Object_Logic.atomize ctxt (Thm.cterm_of ctxt t)) | |
| 28795 | 632 | end; | 
| 633 | ||
| 634 | (* achieve plain syntax for locale predicates (without "PROP") *) | |
| 635 | ||
| 49820 
f7a1e1745b7b
refined aprop_tr' -- retain entity information by using type slot as adhoc marker;
 wenzelm parents: 
49819diff
changeset | 636 | fun aprop_tr' n c = | 
| 
f7a1e1745b7b
refined aprop_tr' -- retain entity information by using type slot as adhoc marker;
 wenzelm parents: 
49819diff
changeset | 637 | let | 
| 
f7a1e1745b7b
refined aprop_tr' -- retain entity information by using type slot as adhoc marker;
 wenzelm parents: 
49819diff
changeset | 638 | val c' = Lexicon.mark_const c; | 
| 52143 | 639 | fun tr' (_: Proof.context) T args = | 
| 49820 
f7a1e1745b7b
refined aprop_tr' -- retain entity information by using type slot as adhoc marker;
 wenzelm parents: 
49819diff
changeset | 640 | if T <> dummyT andalso length args = n | 
| 
f7a1e1745b7b
refined aprop_tr' -- retain entity information by using type slot as adhoc marker;
 wenzelm parents: 
49819diff
changeset | 641 | then Syntax.const "_aprop" $ Term.list_comb (Syntax.const c', args) | 
| 
f7a1e1745b7b
refined aprop_tr' -- retain entity information by using type slot as adhoc marker;
 wenzelm parents: 
49819diff
changeset | 642 | else raise Match; | 
| 
f7a1e1745b7b
refined aprop_tr' -- retain entity information by using type slot as adhoc marker;
 wenzelm parents: 
49819diff
changeset | 643 | in (c', tr') end; | 
| 28795 | 644 | |
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 645 | (* define one predicate including its intro rule and axioms | 
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 646 | - binding: predicate name | 
| 28795 | 647 | - parms: locale parameters | 
| 648 | - defs: thms representing substitutions from defines elements | |
| 649 | - ts: terms representing locale assumptions (not normalised wrt. defs) | |
| 650 | - norm_ts: terms representing locale assumptions (normalised wrt. defs) | |
| 651 | - thy: the theory | |
| 652 | *) | |
| 653 | ||
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 654 | fun def_pred binding parms defs ts norm_ts thy = | 
| 28795 | 655 | let | 
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 656 | val name = Sign.full_name thy binding; | 
| 28795 | 657 | |
| 59970 | 658 | val thy_ctxt = Proof_Context.init_global thy; | 
| 659 | ||
| 660 | val (body, bodyT, body_eq) = atomize_spec thy_ctxt norm_ts; | |
| 29272 | 661 | val env = Term.add_free_names body []; | 
| 28795 | 662 | val xs = filter (member (op =) env o #1) parms; | 
| 663 | val Ts = map #2 xs; | |
| 29272 | 664 | val extraTs = | 
| 33040 | 665 | (subtract (op =) (fold Term.add_tfreesT Ts []) (Term.add_tfrees body [])) | 
| 60924 
610794dff23c
tuned signature, in accordance to sortBy in Scala;
 wenzelm parents: 
60477diff
changeset | 666 | |> sort_by #1 |> map TFree; | 
| 28795 | 667 | val predT = map Term.itselfT extraTs ---> Ts ---> bodyT; | 
| 668 | ||
| 669 | val args = map Logic.mk_type extraTs @ map Free xs; | |
| 670 | val head = Term.list_comb (Const (name, predT), args); | |
| 59970 | 671 | val statement = Object_Logic.ensure_propT thy_ctxt head; | 
| 28795 | 672 | |
| 673 | val ([pred_def], defs_thy) = | |
| 674 | thy | |
| 52143 | 675 | |> bodyT = propT ? Sign.typed_print_translation [aprop_tr' (length args) name] | 
| 61082 
42c2698d2273
expose locale definition to normal user-namespace (for completion, query etc.) -- in contrast to 149f80f27c84, ba9f52f56356, f7d9c5e5d2f9;
 wenzelm parents: 
60949diff
changeset | 676 | |> Sign.declare_const_global ((binding, predT), NoSyn) |> snd | 
| 
42c2698d2273
expose locale definition to normal user-namespace (for completion, query etc.) -- in contrast to 149f80f27c84, ba9f52f56356, f7d9c5e5d2f9;
 wenzelm parents: 
60949diff
changeset | 677 | |> Global_Theory.add_defs false [((Thm.def_binding binding, Logic.mk_equals (head, body)), [])]; | 
| 42360 | 678 | val defs_ctxt = Proof_Context.init_global defs_thy |> Variable.declare_term head; | 
| 28795 | 679 | |
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54740diff
changeset | 680 | val intro = Goal.prove_global defs_thy [] norm_ts statement | 
| 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54740diff
changeset | 681 |       (fn {context = ctxt, ...} =>
 | 
| 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54740diff
changeset | 682 | rewrite_goals_tac ctxt [pred_def] THEN | 
| 58956 
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
 wenzelm parents: 
57926diff
changeset | 683 | compose_tac defs_ctxt (false, body_eq RS Drule.equal_elim_rule1, 1) 1 THEN | 
| 
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
 wenzelm parents: 
57926diff
changeset | 684 | compose_tac defs_ctxt | 
| 59616 | 685 | (false, | 
| 59623 | 686 | Conjunction.intr_balanced (map (Thm.assume o Thm.cterm_of defs_ctxt) norm_ts), 0) 1); | 
| 28795 | 687 | |
| 688 | val conjuncts = | |
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54740diff
changeset | 689 | (Drule.equal_elim_rule2 OF | 
| 59623 | 690 | [body_eq, rewrite_rule defs_ctxt [pred_def] (Thm.assume (Thm.cterm_of defs_ctxt statement))]) | 
| 28795 | 691 | |> Conjunction.elim_balanced (length ts); | 
| 54566 | 692 | |
| 693 | val (_, axioms_ctxt) = defs_ctxt | |
| 60949 | 694 | |> Assumption.add_assumes (maps Thm.chyps_of (defs @ conjuncts)); | 
| 28795 | 695 | val axioms = ts ~~ conjuncts |> map (fn (t, ax) => | 
| 54566 | 696 | Element.prove_witness axioms_ctxt t | 
| 58956 
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
 wenzelm parents: 
57926diff
changeset | 697 | (rewrite_goals_tac axioms_ctxt defs THEN compose_tac axioms_ctxt (false, ax, 0) 1)); | 
| 28795 | 698 | in ((statement, intro, axioms), defs_thy) end; | 
| 699 | ||
| 700 | in | |
| 701 | ||
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30335diff
changeset | 702 | (* main predicate definition function *) | 
| 28795 | 703 | |
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 704 | fun define_preds binding parms (((exts, exts'), (ints, ints')), defs) thy = | 
| 28795 | 705 | let | 
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54879diff
changeset | 706 | val ctxt = Proof_Context.init_global thy; | 
| 59623 | 707 | val defs' = map (Thm.cterm_of ctxt #> Assumption.assume ctxt #> Drule.abs_def) defs; | 
| 29031 
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
 ballarin parents: 
29030diff
changeset | 708 | |
| 28795 | 709 | val (a_pred, a_intro, a_axioms, thy'') = | 
| 710 | if null exts then (NONE, NONE, [], thy) | |
| 711 | else | |
| 712 | let | |
| 55639 | 713 | val abinding = | 
| 714 |             if null ints then binding else Binding.suffix_name ("_" ^ axiomsN) binding;
 | |
| 28795 | 715 | val ((statement, intro, axioms), thy') = | 
| 716 | thy | |
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 717 | |> def_pred abinding parms defs' exts exts'; | 
| 28795 | 718 | val (_, thy'') = | 
| 719 | thy' | |
| 35204 
214ec053128e
locale: more precise treatment of naming vs. binding;
 wenzelm parents: 
35143diff
changeset | 720 | |> Sign.qualified_path true abinding | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39288diff
changeset | 721 | |> Global_Theory.note_thmss "" | 
| 61082 
42c2698d2273
expose locale definition to normal user-namespace (for completion, query etc.) -- in contrast to 149f80f27c84, ba9f52f56356, f7d9c5e5d2f9;
 wenzelm parents: 
60949diff
changeset | 722 | [((Binding.name introN, []), [([intro], [Locale.unfold_add])])] | 
| 28795 | 723 | ||> Sign.restore_naming thy'; | 
| 724 | in (SOME statement, SOME intro, axioms, thy'') end; | |
| 725 | val (b_pred, b_intro, b_axioms, thy'''') = | |
| 726 | if null ints then (NONE, NONE, [], thy'') | |
| 727 | else | |
| 728 | let | |
| 729 | val ((statement, intro, axioms), thy''') = | |
| 730 | thy'' | |
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 731 | |> def_pred binding parms defs' (ints @ the_list a_pred) (ints' @ the_list a_pred); | 
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54879diff
changeset | 732 | val ctxt''' = Proof_Context.init_global thy'''; | 
| 28795 | 733 | val (_, thy'''') = | 
| 734 | thy''' | |
| 35204 
214ec053128e
locale: more precise treatment of naming vs. binding;
 wenzelm parents: 
35143diff
changeset | 735 | |> Sign.qualified_path true binding | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39288diff
changeset | 736 | |> Global_Theory.note_thmss "" | 
| 61082 
42c2698d2273
expose locale definition to normal user-namespace (for completion, query etc.) -- in contrast to 149f80f27c84, ba9f52f56356, f7d9c5e5d2f9;
 wenzelm parents: 
60949diff
changeset | 737 | [((Binding.name introN, []), [([intro], [Locale.intro_add])]), | 
| 
42c2698d2273
expose locale definition to normal user-namespace (for completion, query etc.) -- in contrast to 149f80f27c84, ba9f52f56356, f7d9c5e5d2f9;
 wenzelm parents: 
60949diff
changeset | 738 | ((Binding.name axiomsN, []), | 
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54879diff
changeset | 739 | [(map (Drule.export_without_context o Element.conclude_witness ctxt''') axioms, | 
| 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54879diff
changeset | 740 | [])])] | 
| 28795 | 741 | ||> Sign.restore_naming thy'''; | 
| 742 | in (SOME statement, SOME intro, axioms, thy'''') end; | |
| 743 | in ((a_pred, a_intro, a_axioms), (b_pred, b_intro, b_axioms), thy'''') end; | |
| 744 | ||
| 745 | end; | |
| 746 | ||
| 747 | ||
| 748 | local | |
| 749 | ||
| 750 | fun assumes_to_notes (Assumes asms) axms = | |
| 751 | fold_map (fn (a, spec) => fn axs => | |
| 752 | let val (ps, qs) = chop (length spec) axs | |
| 753 | in ((a, [(ps, [])]), qs) end) asms axms | |
| 33644 
5266a72e0889
eliminated slightly odd (unused) "axiom" and "assumption" -- collapsed to unspecific "";
 wenzelm parents: 
33643diff
changeset | 754 | |> apfst (curry Notes "") | 
| 28795 | 755 | | assumes_to_notes e axms = (e, axms); | 
| 756 | ||
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54879diff
changeset | 757 | fun defines_to_notes ctxt (Defines defs) = | 
| 42440 
5e7a7343ab11
discontinuend obsolete Thm.definitionK, which was hardly ever well-defined;
 wenzelm parents: 
42381diff
changeset | 758 |       Notes ("", map (fn (a, (def, _)) =>
 | 
| 59621 
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
 wenzelm parents: 
59616diff
changeset | 759 | (a, [([Assumption.assume ctxt (Thm.cterm_of ctxt def)], | 
| 30725 
c23a5b3cd1b9
register_locale: produce stamps at the spot where elements are registered;
 wenzelm parents: 
30585diff
changeset | 760 | [(Attrib.internal o K) Locale.witness_add])])) defs) | 
| 29031 
e74341997a48
Pass on defines in inheritance; reject illicit defines created by instantiation.
 ballarin parents: 
29030diff
changeset | 761 | | defines_to_notes _ e = e; | 
| 28795 | 762 | |
| 59296 
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
 haftmann parents: 
58956diff
changeset | 763 | fun is_hyp (elem as Assumes asms) = true | 
| 
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
 haftmann parents: 
58956diff
changeset | 764 | | is_hyp (elem as Defines defs) = true | 
| 
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
 haftmann parents: 
58956diff
changeset | 765 | | is_hyp _ = false; | 
| 
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
 haftmann parents: 
58956diff
changeset | 766 | |
| 28898 
530c7d28a962
Proper treatment of expressions with free arguments.
 ballarin parents: 
28895diff
changeset | 767 | fun gen_add_locale prep_decl | 
| 57181 
2d13bf9ea77b
dropped obscure and unused ad-hoc before_exit hook for named targets
 haftmann parents: 
56809diff
changeset | 768 | binding raw_predicate_binding raw_import raw_body thy = | 
| 28795 | 769 | let | 
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 770 | val name = Sign.full_name thy binding; | 
| 29391 
1f6e8c00dc3e
tuned signature; changed locale predicate name convention
 haftmann parents: 
29362diff
changeset | 771 | val _ = Locale.defined thy name andalso | 
| 28795 | 772 |       error ("Duplicate definition of locale " ^ quote name);
 | 
| 773 | ||
| 47311 
1addbe2a7458
close context elements via Expression.cert/read_declaration;
 wenzelm parents: 
47287diff
changeset | 774 | val ((fixed, deps, body_elems, _), (parms, ctxt')) = | 
| 42360 | 775 | prep_decl raw_import I raw_body (Proof_Context.init_global thy); | 
| 29221 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 776 | val text as (((_, exts'), _), defs) = eval ctxt' deps body_elems; | 
| 
918687637307
Refactored: evaluate specification text only in locale declarations.
 ballarin parents: 
29217diff
changeset | 777 | |
| 37313 | 778 | val extraTs = | 
| 55639 | 779 | subtract (op =) | 
| 780 | (fold Term.add_tfreesT (map snd parms) []) | |
| 781 | (fold Term.add_tfrees exts' []); | |
| 37313 | 782 | val _ = | 
| 783 | if null extraTs then () | |
| 784 |       else warning ("Additional type variable(s) in locale specification " ^
 | |
| 42381 
309ec68442c6
added Binding.print convenience, which includes quote already;
 wenzelm parents: 
42375diff
changeset | 785 | Binding.print binding ^ ": " ^ | 
| 60924 
610794dff23c
tuned signature, in accordance to sortBy in Scala;
 wenzelm parents: 
60477diff
changeset | 786 | commas (map (Syntax.string_of_typ ctxt' o TFree) (sort_by #1 extraTs))); | 
| 37313 | 787 | |
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 788 | val predicate_binding = | 
| 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 789 | if Binding.is_empty raw_predicate_binding then binding | 
| 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 790 | else raw_predicate_binding; | 
| 28872 | 791 | val ((a_statement, a_intro, a_axioms), (b_statement, b_intro, b_axioms), thy') = | 
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 792 | define_preds predicate_binding parms text thy; | 
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54879diff
changeset | 793 | val pred_ctxt = Proof_Context.init_global thy'; | 
| 28795 | 794 | |
| 29035 | 795 | val a_satisfy = Element.satisfy_morphism a_axioms; | 
| 796 | val b_satisfy = Element.satisfy_morphism b_axioms; | |
| 28903 
b3fc3a62247a
Intro_locales_tac to simplify goals involving locale predicates.
 ballarin parents: 
28902diff
changeset | 797 | |
| 28895 | 798 | val params = fixed @ | 
| 30755 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 799 | maps (fn Fixes fixes => | 
| 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 wenzelm parents: 
30725diff
changeset | 800 | 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: 
28902diff
changeset | 801 | 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: 
29022diff
changeset | 802 | |
| 59296 
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
 haftmann parents: 
58956diff
changeset | 803 | val hyp_spec = filter is_hyp body_elems; | 
| 
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
 haftmann parents: 
58956diff
changeset | 804 | |
| 29028 
b5dad96c755a
When adding locales, delay notes until local theory is built.
 ballarin parents: 
29022diff
changeset | 805 | val notes = | 
| 33278 | 806 | if is_some asm then | 
| 61082 
42c2698d2273
expose locale definition to normal user-namespace (for completion, query etc.) -- in contrast to 149f80f27c84, ba9f52f56356, f7d9c5e5d2f9;
 wenzelm parents: 
60949diff
changeset | 807 |         [("", [((Binding.suffix_name ("_" ^ axiomsN) binding, []),
 | 
| 59623 | 808 | [([Assumption.assume pred_ctxt (Thm.cterm_of pred_ctxt (the asm))], | 
| 33278 | 809 | [(Attrib.internal o K) Locale.witness_add])])])] | 
| 30725 
c23a5b3cd1b9
register_locale: produce stamps at the spot where elements are registered;
 wenzelm parents: 
30585diff
changeset | 810 | else []; | 
| 28795 | 811 | |
| 55639 | 812 | val notes' = | 
| 813 | body_elems | |
| 814 | |> map (defines_to_notes pred_ctxt) | |
| 815 | |> map (Element.transform_ctxt a_satisfy) | |
| 816 | |> (fn elems => | |
| 817 | fold_map assumes_to_notes elems (map (Element.conclude_witness pred_ctxt) a_axioms)) | |
| 818 | |> fst | |
| 819 | |> map (Element.transform_ctxt b_satisfy) | |
| 820 | |> map_filter (fn Notes notes => SOME notes | _ => NONE); | |
| 29035 | 821 | |
| 822 | val deps' = map (fn (l, morph) => (l, morph $> b_satisfy)) deps; | |
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54879diff
changeset | 823 | val axioms = map (Element.conclude_witness pred_ctxt) b_axioms; | 
| 28872 | 824 | |
| 29358 | 825 | val loc_ctxt = thy' | 
| 33360 
f7d9c5e5d2f9
tuned variable names of bindings; conceal predicate constants
 haftmann parents: 
33315diff
changeset | 826 | |> Locale.register_locale binding (extraTs, params) | 
| 59296 
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
 haftmann parents: 
58956diff
changeset | 827 | (asm, rev defs) (a_intro, b_intro) axioms hyp_spec [] (rev notes) (rev deps') | 
| 63402 | 828 | |> Named_Target.init NONE name | 
| 33671 | 829 | |> fold (fn (kind, facts) => Local_Theory.notes_kind kind facts #> snd) notes'; | 
| 29028 
b5dad96c755a
When adding locales, delay notes until local theory is built.
 ballarin parents: 
29022diff
changeset | 830 | |
| 29358 | 831 | in (name, loc_ctxt) end; | 
| 28795 | 832 | |
| 833 | in | |
| 834 | ||
| 29501 
08df2e51cb80
added cert_read_declaration; more exports; tuned signature
 haftmann parents: 
29496diff
changeset | 835 | val add_locale = gen_add_locale cert_declaration; | 
| 28902 
2019bcc9d8bf
Ahere to modern naming conventions; proper treatment of internal vs external names.
 ballarin parents: 
28898diff
changeset | 836 | val add_locale_cmd = gen_add_locale read_declaration; | 
| 28795 | 837 | |
| 838 | end; | |
| 839 | ||
| 28895 | 840 | |
| 41435 | 841 | (** Print the instances that would be activated by an interpretation | 
| 842 | of the expression in the current context (clean = false) or in an | |
| 843 | empty context (clean = true). **) | |
| 844 | ||
| 845 | fun print_dependencies ctxt clean expression = | |
| 846 | let | |
| 847 | val ((_, deps, export), expr_ctxt) = read_goal_expression expression ctxt; | |
| 51565 | 848 | val export' = if clean then Morphism.identity else export; | 
| 41435 | 849 | in | 
| 51565 | 850 | Locale.print_dependencies expr_ctxt clean export' deps | 
| 41435 | 851 | end; | 
| 852 | ||
| 28993 
829e684b02ef
Interpretation in theories including interaction with subclass relation.
 ballarin parents: 
28951diff
changeset | 853 | end; |