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