| author | wenzelm | 
| Tue, 12 Aug 2014 00:17:02 +0200 | |
| changeset 57906 | 020df63dd0a9 | 
| parent 57181 | 2d13bf9ea77b | 
| child 59498 | 50b60f501b05 | 
| permissions | -rw-r--r-- | 
| 28308 | 1 | (* Title: HOL/Statespace/state_space.ML | 
| 25171 | 2 | Author: Norbert Schirmer, TU Muenchen | 
| 3 | *) | |
| 4 | ||
| 25408 | 5 | signature STATE_SPACE = | 
| 45362 | 6 | sig | 
| 7 | val distinct_compsN : string | |
| 8 | val getN : string | |
| 9 | val putN : string | |
| 10 | val injectN : string | |
| 11 | val namespaceN : string | |
| 12 | val projectN : string | |
| 13 | val valuetypesN : string | |
| 25408 | 14 | |
| 45362 | 15 | val namespace_definition : | 
| 16 | bstring -> | |
| 17 | typ -> | |
| 46925 | 18 | (xstring, string) Expression.expr * (binding * string option * mixfix) list -> | 
| 45362 | 19 | string list -> string list -> theory -> theory | 
| 25408 | 20 | |
| 45362 | 21 | val define_statespace : | 
| 22 | string list -> | |
| 23 | string -> | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 24 | ((string * bool) * (string list * bstring * (string * string) list)) list -> | 
| 45362 | 25 | (string * string) list -> theory -> theory | 
| 26 | val define_statespace_i : | |
| 27 | string option -> | |
| 28 | string list -> | |
| 29 | string -> | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 30 | ((string * bool) * (typ list * bstring * (string * string) list)) list -> | 
| 45362 | 31 | (string * typ) list -> theory -> theory | 
| 25408 | 32 | |
| 45362 | 33 | val statespace_decl : | 
| 34 | ((string list * bstring) * | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 35 | (((string * bool) * (string list * xstring * (bstring * bstring) list)) list * | 
| 45362 | 36 | (bstring * string) list)) parser | 
| 25408 | 37 | |
| 38 | ||
| 45362 | 39 | val neq_x_y : Proof.context -> term -> term -> thm option | 
| 40 | val distinctNameSolver : Simplifier.solver | |
| 41 | val distinctTree_tac : Proof.context -> int -> tactic | |
| 42 | val distinct_simproc : Simplifier.simproc | |
| 25408 | 43 | |
| 44 | ||
| 48741 | 45 | val get_comp : Context.generic -> string -> (typ * string) option | 
| 45362 | 46 | val get_silent : Context.generic -> bool | 
| 47 | val set_silent : bool -> Context.generic -> Context.generic | |
| 25408 | 48 | |
| 45362 | 49 | val gen_lookup_tr : Proof.context -> term -> string -> term | 
| 50 | val lookup_swap_tr : Proof.context -> term list -> term | |
| 51 | val lookup_tr : Proof.context -> term list -> term | |
| 52 | val lookup_tr' : Proof.context -> term list -> term | |
| 25408 | 53 | |
| 45362 | 54 | val gen_update_tr : | 
| 55 | bool -> Proof.context -> string -> term -> term -> term | |
| 56 | val update_tr : Proof.context -> term list -> term | |
| 57 | val update_tr' : Proof.context -> term list -> term | |
| 58 | end; | |
| 25408 | 59 | |
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 60 | structure StateSpace : STATE_SPACE = | 
| 25171 | 61 | struct | 
| 62 | ||
| 45362 | 63 | (* Names *) | 
| 25171 | 64 | |
| 65 | val distinct_compsN = "distinct_names" | |
| 66 | val namespaceN = "_namespace" | |
| 67 | val valuetypesN = "_valuetypes" | |
| 68 | val projectN = "project" | |
| 69 | val injectN = "inject" | |
| 70 | val getN = "get" | |
| 71 | val putN = "put" | |
| 72 | val project_injectL = "StateSpaceLocale.project_inject"; | |
| 73 | ||
| 74 | ||
| 75 | (* Library *) | |
| 76 | ||
| 77 | fun fold1 f xs = fold f (tl xs) (hd xs) | |
| 78 | fun fold1' f [] x = x | |
| 79 | | fold1' f xs _ = fold1 f xs | |
| 26478 | 80 | |
| 25171 | 81 | fun sorted_subset eq [] ys = true | 
| 82 | | sorted_subset eq (x::xs) [] = false | |
| 83 | | sorted_subset eq (x::xs) (y::ys) = if eq (x,y) then sorted_subset eq xs ys | |
| 84 | else sorted_subset eq (x::xs) ys; | |
| 85 | ||
| 86 | ||
| 87 | ||
| 88 | type namespace_info = | |
| 89 |  {declinfo: (typ*string) Termtab.table, (* type, name of statespace *)
 | |
| 90 | distinctthm: thm Symtab.table, | |
| 91 | silent: bool | |
| 92 | }; | |
| 26478 | 93 | |
| 33519 | 94 | structure NameSpaceData = Generic_Data | 
| 95 | ( | |
| 26478 | 96 | type T = namespace_info; | 
| 25171 | 97 |   val empty = {declinfo = Termtab.empty, distinctthm = Symtab.empty, silent = false};
 | 
| 98 | val extend = I; | |
| 33519 | 99 | fun merge | 
| 100 |     ({declinfo=declinfo1, distinctthm=distinctthm1, silent=silent1},
 | |
| 101 |       {declinfo=declinfo2, distinctthm=distinctthm2, silent=silent2}) : T =
 | |
| 102 |     {declinfo = Termtab.merge (K true) (declinfo1, declinfo2),
 | |
| 103 | distinctthm = Symtab.merge (K true) (distinctthm1, distinctthm2), | |
| 41472 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
41270diff
changeset | 104 | silent = silent1 andalso silent2 (* FIXME odd merge *)} | 
| 33519 | 105 | ); | 
| 25171 | 106 | |
| 107 | fun make_namespace_data declinfo distinctthm silent = | |
| 108 |      {declinfo=declinfo,distinctthm=distinctthm,silent=silent};
 | |
| 109 | ||
| 110 | ||
| 111 | fun update_declinfo (n,v) ctxt = | |
| 112 |   let val {declinfo,distinctthm,silent} = NameSpaceData.get ctxt;
 | |
| 26478 | 113 | in NameSpaceData.put | 
| 25171 | 114 | (make_namespace_data (Termtab.update (n,v) declinfo) distinctthm silent) ctxt | 
| 115 | end; | |
| 116 | ||
| 117 | fun set_silent silent ctxt = | |
| 118 |   let val {declinfo,distinctthm,...} = NameSpaceData.get ctxt;
 | |
| 26478 | 119 | in NameSpaceData.put | 
| 25171 | 120 | (make_namespace_data declinfo distinctthm silent) ctxt | 
| 121 | end; | |
| 122 | ||
| 123 | val get_silent = #silent o NameSpaceData.get; | |
| 26478 | 124 | |
| 46925 | 125 | fun expression_no_pos (expr, fixes) : Expression.expression = | 
| 126 | (map (fn (name, inst) => ((name, Position.none), inst)) expr, fixes); | |
| 127 | ||
| 25171 | 128 | fun prove_interpretation_in ctxt_tac (name, expr) thy = | 
| 129 | thy | |
| 57181 
2d13bf9ea77b
dropped obscure and unused ad-hoc before_exit hook for named targets
 haftmann parents: 
55972diff
changeset | 130 | |> Expression.sublocale_global_cmd (name, Position.none) (expression_no_pos expr) [] | 
| 26478 | 131 | |> Proof.global_terminal_proof | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 132 | ((Method.Basic (fn ctxt => SIMPLE_METHOD (ctxt_tac ctxt)), Position.no_range), NONE) | 
| 42361 | 133 | |> Proof_Context.theory_of | 
| 25171 | 134 | |
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 135 | fun add_locale name expr elems thy = | 
| 45362 | 136 | thy | 
| 57181 
2d13bf9ea77b
dropped obscure and unused ad-hoc before_exit hook for named targets
 haftmann parents: 
55972diff
changeset | 137 | |> Expression.add_locale (Binding.name name) (Binding.name name) expr elems | 
| 29362 | 138 | |> snd | 
| 33671 | 139 | |> Local_Theory.exit; | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 140 | |
| 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 141 | fun add_locale_cmd name expr elems thy = | 
| 45362 | 142 | thy | 
| 57181 
2d13bf9ea77b
dropped obscure and unused ad-hoc before_exit hook for named targets
 haftmann parents: 
55972diff
changeset | 143 | |> Expression.add_locale_cmd (Binding.name name) Binding.empty (expression_no_pos expr) elems | 
| 29362 | 144 | |> snd | 
| 33671 | 145 | |> Local_Theory.exit; | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 146 | |
| 25171 | 147 | type statespace_info = | 
| 148 |  {args: (string * sort) list, (* type arguments *)
 | |
| 149 | parents: (typ list * string * string option list) list, | |
| 150 | (* type instantiation, state-space name, component renamings *) | |
| 151 | components: (string * typ) list, | |
| 152 | types: typ list (* range types of state space *) | |
| 153 | }; | |
| 154 | ||
| 33519 | 155 | structure StateSpaceData = Generic_Data | 
| 156 | ( | |
| 25171 | 157 | type T = statespace_info Symtab.table; | 
| 158 | val empty = Symtab.empty; | |
| 159 | val extend = I; | |
| 33519 | 160 | fun merge data : T = Symtab.merge (K true) data; | 
| 161 | ); | |
| 25171 | 162 | |
| 163 | fun add_statespace name args parents components types ctxt = | |
| 26478 | 164 | StateSpaceData.put | 
| 25171 | 165 |       (Symtab.update_new (name, {args=args,parents=parents,
 | 
| 166 | components=components,types=types}) (StateSpaceData.get ctxt)) | |
| 26478 | 167 | ctxt; | 
| 25171 | 168 | |
| 169 | fun get_statespace ctxt name = | |
| 170 | Symtab.lookup (StateSpaceData.get ctxt) name; | |
| 171 | ||
| 172 | ||
| 173 | fun mk_free ctxt name = | |
| 26478 | 174 | if Variable.is_fixed ctxt name orelse Variable.is_declared ctxt name | 
| 25171 | 175 | then | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42368diff
changeset | 176 | let val n' = Variable.intern_fixed ctxt name | 
| 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42368diff
changeset | 177 | in SOME (Free (n', Proof_Context.infer_type ctxt (n', dummyT))) end | 
| 25171 | 178 | else NONE | 
| 26478 | 179 | |
| 180 | ||
| 25171 | 181 | fun get_dist_thm ctxt name = Symtab.lookup (#distinctthm (NameSpaceData.get ctxt)) name; | 
| 26478 | 182 | fun get_comp ctxt name = | 
| 183 | Option.mapPartial | |
| 184 | (Termtab.lookup (#declinfo (NameSpaceData.get ctxt))) | |
| 25171 | 185 | (mk_free (Context.proof_of ctxt) name); | 
| 186 | ||
| 187 | ||
| 188 | (*** Tactics ***) | |
| 189 | ||
| 190 | fun neq_x_y ctxt x y = | |
| 191 | (let | |
| 26478 | 192 | val dist_thm = the (get_dist_thm (Context.Proof ctxt) (#1 (dest_Free x))); | 
| 25171 | 193 | val ctree = cprop_of dist_thm |> Thm.dest_comb |> #2 |> Thm.dest_comb |> #2; | 
| 194 | val tree = term_of ctree; | |
| 195 | val x_path = the (DistinctTreeProver.find_tree x tree); | |
| 196 | val y_path = the (DistinctTreeProver.find_tree y tree); | |
| 197 | val thm = DistinctTreeProver.distinctTreeProver dist_thm x_path y_path; | |
| 26478 | 198 | in SOME thm | 
| 45361 | 199 | end handle Option.Option => NONE) | 
| 25171 | 200 | |
| 42368 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 201 | fun distinctTree_tac ctxt = SUBGOAL (fn (goal, i) => | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 202 | (case goal of | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 203 |     Const (@{const_name Trueprop}, _) $
 | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 204 |       (Const (@{const_name Not}, _) $
 | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 205 |         (Const (@{const_name HOL.eq}, _) $ (x as Free _) $ (y as Free _))) =>
 | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 206 | (case neq_x_y ctxt x y of | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 207 | SOME neq => rtac neq i | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 208 | | NONE => no_tac) | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 209 | | _ => no_tac)); | 
| 25171 | 210 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 211 | val distinctNameSolver = mk_solver "distinctNameSolver" distinctTree_tac; | 
| 25171 | 212 | |
| 213 | val distinct_simproc = | |
| 38715 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
38558diff
changeset | 214 |   Simplifier.simproc_global @{theory HOL} "StateSpace.distinct_simproc" ["x = y"]
 | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 215 |     (fn ctxt => (fn (Const (@{const_name HOL.eq},_)$(x as Free _)$(y as Free _)) =>
 | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 216 | Option.map (fn neq => DistinctTreeProver.neq_to_eq_False OF [neq]) (neq_x_y ctxt x y) | 
| 45362 | 217 | | _ => NONE)); | 
| 25171 | 218 | |
| 26478 | 219 | fun interprete_parent name dist_thm_name parent_expr thy = | 
| 25171 | 220 | let | 
| 42368 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 221 | fun solve_tac ctxt = CSUBGOAL (fn (goal, i) => | 
| 25171 | 222 | let | 
| 42361 | 223 | val distinct_thm = Proof_Context.get_thm ctxt dist_thm_name; | 
| 25171 | 224 | val rule = DistinctTreeProver.distinct_implProver distinct_thm goal; | 
| 42368 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 225 | in rtac rule i end); | 
| 26478 | 226 | |
| 42368 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 227 | fun tac ctxt = | 
| 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 wenzelm parents: 
42364diff
changeset | 228 | Locale.intro_locales_tac true ctxt [] THEN ALLGOALS (solve_tac ctxt); | 
| 26478 | 229 | |
| 45362 | 230 | in | 
| 231 | thy |> prove_interpretation_in tac (name, parent_expr) | |
| 26478 | 232 | end; | 
| 25171 | 233 | |
| 26478 | 234 | fun namespace_definition name nameT parent_expr parent_comps new_comps thy = | 
| 25171 | 235 | let | 
| 236 | val all_comps = parent_comps @ new_comps; | |
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 237 | val vars = (map (fn n => (Binding.name n, NONE, NoSyn)) all_comps); | 
| 25171 | 238 | val dist_thm_name = distinct_compsN; | 
| 239 | ||
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 240 | val dist_thm_full_name = dist_thm_name; | 
| 26478 | 241 | fun comps_of_thm thm = prop_of thm | 
| 25171 | 242 | |> (fn (_$(_$t)) => DistinctTreeProver.dest_tree t) |> map (fst o dest_Free); | 
| 26478 | 243 | |
| 38835 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 244 | fun type_attr phi = Thm.declaration_attribute (fn thm => fn context => | 
| 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 245 | (case context of | 
| 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 246 | Context.Theory _ => context | 
| 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 247 | | Context.Proof ctxt => | 
| 26478 | 248 | let | 
| 38835 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 249 |           val {declinfo,distinctthm=tt,silent} = NameSpaceData.get context;
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32952diff
changeset | 250 | val all_names = comps_of_thm thm; | 
| 25171 | 251 | fun upd name tt = | 
| 38835 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 252 | (case Symtab.lookup tt name of | 
| 25171 | 253 | SOME dthm => if sorted_subset (op =) (comps_of_thm dthm) all_names | 
| 254 | then Symtab.update (name,thm) tt else tt | |
| 38835 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 255 | | NONE => Symtab.update (name,thm) tt) | 
| 25171 | 256 | |
| 257 | val tt' = tt |> fold upd all_names; | |
| 38835 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 258 | val context' = | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 259 | Context_Position.set_visible false ctxt | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 260 | addsimprocs [distinct_simproc] | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 261 | |> Context_Position.restore_visible ctxt | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 262 | |> Context.Proof | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
50214diff
changeset | 263 |               |> NameSpaceData.put {declinfo=declinfo,distinctthm=tt',silent=silent};
 | 
| 38835 
088502dfd89f
eliminated broken Output.no_warnings_CRITICAL -- context visibility does the job;
 wenzelm parents: 
38715diff
changeset | 264 | in context' end)); | 
| 26478 | 265 | |
| 25171 | 266 | val attr = Attrib.internal type_attr; | 
| 267 | ||
| 45362 | 268 | val assume = | 
| 269 | ((Binding.name dist_thm_name, [attr]), | |
| 270 | [(HOLogic.Trueprop $ | |
| 271 |           (Const (@{const_name all_distinct}, Type (@{type_name tree}, [nameT]) --> HOLogic.boolT) $
 | |
| 272 | DistinctTreeProver.mk_tree (fn n => Free (n, nameT)) nameT | |
| 273 | (sort fast_string_ord all_comps)), [])]); | |
| 274 | in | |
| 275 | thy | |
| 276 | |> add_locale name ([], vars) [Element.Assumes [assume]] | |
| 277 | |> Proof_Context.theory_of | |
| 278 | |> interprete_parent name dist_thm_full_name parent_expr | |
| 25171 | 279 | end; | 
| 280 | ||
| 55972 | 281 | fun encode_dot x = if x = #"." then #"_" else x; | 
| 25171 | 282 | |
| 283 | fun encode_type (TFree (s, _)) = s | |
| 284 | | encode_type (TVar ((s,i),_)) = "?" ^ s ^ string_of_int i | |
| 26478 | 285 | | encode_type (Type (n,Ts)) = | 
| 25171 | 286 | let | 
| 287 | val Ts' = fold1' (fn x => fn y => x ^ "_" ^ y) (map encode_type Ts) ""; | |
| 32651 | 288 | val n' = String.map encode_dot n; | 
| 25171 | 289 | in if Ts'="" then n' else Ts' ^ "_" ^ n' end; | 
| 290 | ||
| 291 | fun project_name T = projectN ^"_"^encode_type T; | |
| 292 | fun inject_name T = injectN ^"_"^encode_type T; | |
| 293 | ||
| 294 | ||
| 295 | fun add_declaration name decl thy = | |
| 296 | thy | |
| 57181 
2d13bf9ea77b
dropped obscure and unused ad-hoc before_exit hook for named targets
 haftmann parents: 
55972diff
changeset | 297 | |> Named_Target.init name | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
44121diff
changeset | 298 |   |> (fn lthy => Local_Theory.declaration {syntax = false, pervasive = false} (decl lthy) lthy)
 | 
| 33671 | 299 | |> Local_Theory.exit_global; | 
| 25171 | 300 | |
| 301 | fun parent_components thy (Ts, pname, renaming) = | |
| 302 | let | |
| 303 | val ctxt = Context.Theory thy; | |
| 304 | fun rename [] xs = xs | |
| 305 | | rename (NONE::rs) (x::xs) = x::rename rs xs | |
| 306 | | rename (SOME r::rs) ((x,T)::xs) = (r,T)::rename rs xs; | |
| 45362 | 307 |     val {args, parents, components, ...} = the (Symtab.lookup (StateSpaceData.get ctxt) pname);
 | 
| 25171 | 308 | val inst = map fst args ~~ Ts; | 
| 309 | val subst = Term.map_type_tfree (the o AList.lookup (op =) inst o fst); | |
| 26478 | 310 | val parent_comps = | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 311 | maps (fn (Ts',n,rs) => parent_components thy (map subst Ts', n, rs)) parents; | 
| 25171 | 312 | val all_comps = rename renaming (parent_comps @ map (apsnd subst) components); | 
| 313 | in all_comps end; | |
| 314 | ||
| 315 | fun statespace_definition state_type args name parents parent_comps components thy = | |
| 26478 | 316 | let | 
| 28965 | 317 | val full_name = Sign.full_bname thy name; | 
| 25171 | 318 | val all_comps = parent_comps @ components; | 
| 319 | ||
| 320 | val components' = map (fn (n,T) => (n,(T,full_name))) components; | |
| 321 | ||
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 322 | fun parent_expr (prefix, (_, n, rs)) = | 
| 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 323 | (suffix namespaceN n, (prefix, Expression.Positional rs)); | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 324 | val parents_expr = map parent_expr parents; | 
| 25171 | 325 | fun distinct_types Ts = | 
| 27276 | 326 | let val tab = fold (fn T => fn tab => Typtab.update (T,()) tab) Ts Typtab.empty; | 
| 327 | in map fst (Typtab.dest tab) end; | |
| 25171 | 328 | |
| 329 | val Ts = distinct_types (map snd all_comps); | |
| 330 | val arg_names = map fst args; | |
| 43324 
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
 wenzelm parents: 
43278diff
changeset | 331 | val valueN = singleton (Name.variant_list arg_names) "'value"; | 
| 
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
 wenzelm parents: 
43278diff
changeset | 332 | val nameN = singleton (Name.variant_list (valueN :: arg_names)) "'name"; | 
| 25171 | 333 | val valueT = TFree (valueN, Sign.defaultS thy); | 
| 334 | val nameT = TFree (nameN, Sign.defaultS thy); | |
| 335 | val stateT = nameT --> valueT; | |
| 336 | fun projectT T = valueT --> T; | |
| 26478 | 337 | fun injectT T = T --> valueT; | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 338 | val locinsts = map (fn T => (project_injectL, | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 339 | ((encode_type T,false),Expression.Positional | 
| 45362 | 340 | [SOME (Free (project_name T,projectT T)), | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 341 | SOME (Free ((inject_name T,injectT T)))]))) Ts; | 
| 32952 | 342 | val locs = maps (fn T => [(Binding.name (project_name T),NONE,NoSyn), | 
| 343 | (Binding.name (inject_name T),NONE,NoSyn)]) Ts; | |
| 344 | val constrains = maps (fn T => [(project_name T,projectT T),(inject_name T,injectT T)]) Ts; | |
| 25171 | 345 | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 346 | fun interprete_parent_valuetypes (prefix, (Ts, pname, _)) thy = | 
| 25171 | 347 | let | 
| 26478 | 348 |         val {args,types,...} =
 | 
| 25171 | 349 | the (Symtab.lookup (StateSpaceData.get (Context.Theory thy)) pname); | 
| 350 | val inst = map fst args ~~ Ts; | |
| 351 | val subst = Term.map_type_tfree (the o AList.lookup (op =) inst o fst); | |
| 32952 | 352 | val pars = maps ((fn T => [project_name T,inject_name T]) o subst) types; | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 353 | |
| 45362 | 354 | val expr = ([(suffix valuetypesN name, | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 355 | (prefix, Expression.Positional (map SOME pars)))],[]); | 
| 29291 | 356 | in | 
| 30473 
e0b66c11e7e4
Assumption.all_prems_of, Assumption.all_assms_of;
 wenzelm parents: 
30364diff
changeset | 357 | prove_interpretation_in (ALLGOALS o solve_tac o Assumption.all_prems_of) | 
| 29291 | 358 | (suffix valuetypesN name, expr) thy | 
| 359 | end; | |
| 25171 | 360 | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 361 | fun interprete_parent (prefix, (_, pname, rs)) = | 
| 25171 | 362 | let | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 363 | val expr = ([(pname, (prefix, Expression.Positional rs))],[]) | 
| 26478 | 364 | in prove_interpretation_in | 
| 29360 | 365 | (fn ctxt => Locale.intro_locales_tac false ctxt []) | 
| 25171 | 366 | (full_name, expr) end; | 
| 367 | ||
| 368 | fun declare_declinfo updates lthy phi ctxt = | |
| 369 | let | |
| 26478 | 370 | fun upd_prf ctxt = | 
| 25171 | 371 | let | 
| 372 | fun upd (n,v) = | |
| 373 | let | |
| 42361 | 374 | val nT = Proof_Context.infer_type (Local_Theory.target_of lthy) (n, dummyT) | 
| 26478 | 375 | in Context.proof_map | 
| 376 | (update_declinfo (Morphism.term phi (Free (n,nT)),v)) | |
| 25171 | 377 | end; | 
| 378 | in ctxt |> fold upd updates end; | |
| 379 | ||
| 380 | in Context.mapping I upd_prf ctxt end; | |
| 381 | ||
| 26478 | 382 | fun string_of_typ T = | 
| 39134 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
38864diff
changeset | 383 | Print_Mode.setmp [] | 
| 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
38864diff
changeset | 384 | (Syntax.string_of_typ (Config.put show_sorts true (Syntax.init_pretty_global thy))) T; | 
| 25171 | 385 | val fixestate = (case state_type of | 
| 386 | NONE => [] | |
| 26478 | 387 | | SOME s => | 
| 388 | let | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32952diff
changeset | 389 | val fx = Element.Fixes [(Binding.name s,SOME (string_of_typ stateT),NoSyn)]; | 
| 26478 | 390 | val cs = Element.Constrains | 
| 25171 | 391 | (map (fn (n,T) => (n,string_of_typ T)) | 
| 392 | ((map (fn (n,_) => (n,nameT)) all_comps) @ | |
| 393 | constrains)) | |
| 394 | in [fx,cs] end | |
| 395 | ) | |
| 396 | ||
| 26478 | 397 | |
| 398 | in thy | |
| 399 | |> namespace_definition | |
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 400 | (suffix namespaceN name) nameT (parents_expr,[]) | 
| 25171 | 401 | (map fst parent_comps) (map fst components) | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 402 | |> Context.theory_map (add_statespace full_name args (map snd parents) components []) | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 403 | |> add_locale (suffix valuetypesN name) (locinsts,locs) [] | 
| 45362 | 404 | |> Proof_Context.theory_of | 
| 26478 | 405 | |> fold interprete_parent_valuetypes parents | 
| 29247 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 406 | |> add_locale_cmd name | 
| 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 407 |               ([(suffix namespaceN full_name ,(("",false),Expression.Named [])),
 | 
| 
95d3a82857e5
adapted statespace module to new locales;
 Norbert Schirmer <norbert.schirmer@web.de> parents: 
29064diff
changeset | 408 |                 (suffix valuetypesN full_name,(("",false),Expression.Named  []))],[]) fixestate
 | 
| 45362 | 409 | |> Proof_Context.theory_of | 
| 25171 | 410 | |> fold interprete_parent parents | 
| 38389 
d7d915bae307
Named_Target.init: empty string represents theory target
 haftmann parents: 
38350diff
changeset | 411 | |> add_declaration full_name (declare_declinfo components') | 
| 25171 | 412 | end; | 
| 413 | ||
| 414 | ||
| 415 | (* prepare arguments *) | |
| 416 | ||
| 36149 | 417 | fun read_typ ctxt raw_T env = | 
| 418 | let | |
| 419 | val ctxt' = fold (Variable.declare_typ o TFree) env ctxt; | |
| 420 | val T = Syntax.read_typ ctxt' raw_T; | |
| 45741 | 421 | val env' = Term.add_tfreesT T env; | 
| 36149 | 422 | in (T, env') end; | 
| 423 | ||
| 424 | fun cert_typ ctxt raw_T env = | |
| 425 | let | |
| 42361 | 426 | val thy = Proof_Context.theory_of ctxt; | 
| 36149 | 427 | val T = Type.no_tvars (Sign.certify_typ thy raw_T) | 
| 428 | handle TYPE (msg, _, _) => error msg; | |
| 45741 | 429 | val env' = Term.add_tfreesT T env; | 
| 36149 | 430 | in (T, env') end; | 
| 431 | ||
| 25171 | 432 | fun gen_define_statespace prep_typ state_space args name parents comps thy = | 
| 433 | let (* - args distinct | |
| 434 | - only args may occur in comps and parent-instantiations | |
| 26478 | 435 | - number of insts must match parent args | 
| 25171 | 436 | - no duplicate renamings | 
| 437 | - renaming should occur in namespace | |
| 438 | *) | |
| 26478 | 439 |     val _ = writeln ("Defining statespace " ^ quote name ^ " ...");
 | 
| 25171 | 440 | |
| 42361 | 441 | val ctxt = Proof_Context.init_global thy; | 
| 27283 | 442 | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 443 | fun add_parent (prefix, (Ts, pname, rs)) env = | 
| 25171 | 444 | let | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 445 | val prefix' = | 
| 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 446 | (case prefix of | 
| 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 447 |             ("", mandatory) => (pname, mandatory)
 | 
| 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 448 | | _ => prefix); | 
| 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 449 | |
| 28965 | 450 | val full_pname = Sign.full_bname thy pname; | 
| 26478 | 451 |         val {args,components,...} =
 | 
| 25171 | 452 | (case get_statespace (Context.Theory thy) full_pname of | 
| 453 | SOME r => r | |
| 454 |                | NONE => error ("Undefined statespace " ^ quote pname));
 | |
| 455 | ||
| 456 | ||
| 27283 | 457 | val (Ts',env') = fold_map (prep_typ ctxt) Ts env | 
| 26478 | 458 | handle ERROR msg => cat_error msg | 
| 36149 | 459 |                     ("The error(s) above occurred in parent statespace specification "
 | 
| 25171 | 460 | ^ quote pname); | 
| 461 | val err_insts = if length args <> length Ts' then | |
| 462 | ["number of type instantiation(s) does not match arguments of parent statespace " | |
| 463 | ^ quote pname] | |
| 464 | else []; | |
| 26478 | 465 | |
| 25171 | 466 | val rnames = map fst rs | 
| 467 | val err_dup_renamings = (case duplicates (op =) rnames of | |
| 468 | [] => [] | |
| 469 | | dups => ["Duplicate renaming(s) for " ^ commas dups]) | |
| 470 | ||
| 471 | val cnames = map fst components; | |
| 36692 
54b64d4ad524
farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
 haftmann parents: 
36610diff
changeset | 472 | val err_rename_unknowns = (case subtract (op =) cnames rnames of | 
| 25171 | 473 | [] => [] | 
| 474 | | rs => ["Unknown components " ^ commas rs]); | |
| 26478 | 475 | |
| 25171 | 476 | |
| 477 | val rs' = map (AList.lookup (op =) rs o fst) components; | |
| 478 | val errs =err_insts @ err_dup_renamings @ err_rename_unknowns | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 479 | in | 
| 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 480 | if null errs then ((prefix', (Ts', full_pname, rs')), env') | 
| 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 481 | else error (cat_lines (errs @ ["in parent statespace " ^ quote pname])) | 
| 25171 | 482 | end; | 
| 26478 | 483 | |
| 25171 | 484 | val (parents',env) = fold_map add_parent parents []; | 
| 485 | ||
| 486 | val err_dup_args = | |
| 487 | (case duplicates (op =) args of | |
| 488 | [] => [] | |
| 489 | | dups => ["Duplicate type argument(s) " ^ commas dups]); | |
| 26478 | 490 | |
| 25171 | 491 | |
| 26478 | 492 | val err_dup_components = | 
| 25171 | 493 | (case duplicates (op =) (map fst comps) of | 
| 494 | [] => [] | |
| 495 | | dups => ["Duplicate state-space components " ^ commas dups]); | |
| 496 | ||
| 497 | fun prep_comp (n,T) env = | |
| 27283 | 498 | let val (T', env') = prep_typ ctxt T env handle ERROR msg => | 
| 36149 | 499 |        cat_error msg ("The error(s) above occurred in component " ^ quote n)
 | 
| 25171 | 500 | in ((n,T'), env') end; | 
| 501 | ||
| 502 | val (comps',env') = fold_map prep_comp comps env; | |
| 503 | ||
| 504 | val err_extra_frees = | |
| 505 | (case subtract (op =) args (map fst env') of | |
| 506 | [] => [] | |
| 507 | | extras => ["Extra free type variable(s) " ^ commas extras]); | |
| 508 | ||
| 509 | val defaultS = Sign.defaultS thy; | |
| 510 | val args' = map (fn x => (x, AList.lookup (op =) env x |> the_default defaultS)) args; | |
| 511 | ||
| 512 | ||
| 513 | fun fst_eq ((x:string,_),(y,_)) = x = y; | |
| 26478 | 514 | fun snd_eq ((_,t:typ),(_,u)) = t = u; | 
| 25171 | 515 | |
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 516 | val raw_parent_comps = maps (parent_components thy o snd) parents'; | 
| 26478 | 517 | fun check_type (n,T) = | 
| 25171 | 518 | (case distinct (snd_eq) (filter (curry fst_eq (n,T)) raw_parent_comps) of | 
| 519 | [] => [] | |
| 520 | | [_] => [] | |
| 45660 | 521 | | rs => ["Different types for component " ^ quote n ^ ": " ^ | 
| 32432 
64f30bdd3ba1
modernized messages -- eliminated ctyp/cterm operations;
 wenzelm parents: 
32194diff
changeset | 522 | commas (map (Syntax.string_of_typ ctxt o snd) rs)]) | 
| 26478 | 523 | |
| 32952 | 524 | val err_dup_types = maps check_type (duplicates fst_eq raw_parent_comps) | 
| 25171 | 525 | |
| 526 | val parent_comps = distinct (fst_eq) raw_parent_comps; | |
| 527 | val all_comps = parent_comps @ comps'; | |
| 528 | val err_comp_in_parent = (case duplicates (op =) (map fst all_comps) of | |
| 529 | [] => [] | |
| 45660 | 530 | | xs => ["Components already defined in parents: " ^ commas_quote xs]); | 
| 25171 | 531 | val errs = err_dup_args @ err_dup_components @ err_extra_frees @ | 
| 532 | err_dup_types @ err_comp_in_parent; | |
| 26478 | 533 | in if null errs | 
| 25171 | 534 | then thy |> statespace_definition state_space args' name parents' parent_comps comps' | 
| 26478 | 535 | else error (cat_lines errs) | 
| 25171 | 536 | end | 
| 537 |   handle ERROR msg => cat_error msg ("Failed to define statespace " ^ quote name);
 | |
| 26478 | 538 | |
| 36149 | 539 | val define_statespace = gen_define_statespace read_typ NONE; | 
| 540 | val define_statespace_i = gen_define_statespace cert_typ; | |
| 26478 | 541 | |
| 25171 | 542 | |
| 45362 | 543 | |
| 25171 | 544 | (*** parse/print - translations ***) | 
| 545 | ||
| 546 | local | |
| 55972 | 547 | |
| 26478 | 548 | fun map_get_comp f ctxt (Free (name,_)) = | 
| 549 | (case (get_comp ctxt name) of | |
| 550 | SOME (T,_) => f T T dummyT | |
| 25171 | 551 | | NONE => (Syntax.free "arbitrary"(*; error "context not ready"*))) | 
| 552 | | map_get_comp _ _ _ = Syntax.free "arbitrary"; | |
| 553 | ||
| 55972 | 554 | fun name_of (Free (n,_)) = n; | 
| 25171 | 555 | |
| 556 | in | |
| 557 | ||
| 26478 | 558 | fun gen_lookup_tr ctxt s n = | 
| 45362 | 559 | (case get_comp (Context.Proof ctxt) n of | 
| 560 | SOME (T, _) => | |
| 561 |       Syntax.const @{const_name StateFun.lookup} $
 | |
| 562 | Syntax.free (project_name T) $ Syntax.free n $ s | |
| 563 | | NONE => | |
| 564 | if get_silent (Context.Proof ctxt) | |
| 565 |       then Syntax.const @{const_name StateFun.lookup} $
 | |
| 566 |         Syntax.const @{const_syntax undefined} $ Syntax.free n $ s
 | |
| 45660 | 567 |       else raise TERM ("StateSpace.gen_lookup_tr: component " ^ quote n ^ " not defined", []));
 | 
| 25171 | 568 | |
| 42052 
34f1d2d81284
statespace syntax: strip positions -- type constraints are unexpected here;
 wenzelm parents: 
41585diff
changeset | 569 | fun lookup_tr ctxt [s, x] = | 
| 42264 | 570 | (case Term_Position.strip_positions x of | 
| 42052 
34f1d2d81284
statespace syntax: strip positions -- type constraints are unexpected here;
 wenzelm parents: 
41585diff
changeset | 571 | Free (n,_) => gen_lookup_tr ctxt s n | 
| 
34f1d2d81284
statespace syntax: strip positions -- type constraints are unexpected here;
 wenzelm parents: 
41585diff
changeset | 572 | | _ => raise Match); | 
| 
34f1d2d81284
statespace syntax: strip positions -- type constraints are unexpected here;
 wenzelm parents: 
41585diff
changeset | 573 | |
| 25171 | 574 | fun lookup_swap_tr ctxt [Free (n,_),s] = gen_lookup_tr ctxt s n; | 
| 575 | ||
| 45362 | 576 | fun lookup_tr' ctxt [_ $ Free (prj, _), n as (_ $ Free (name, _)), s] = | 
| 577 | (case get_comp (Context.Proof ctxt) name of | |
| 578 | SOME (T, _) => | |
| 579 | if prj = project_name T | |
| 580 | then Syntax.const "_statespace_lookup" $ s $ n | |
| 581 | else raise Match | |
| 25171 | 582 | | NONE => raise Match) | 
| 55972 | 583 | | lookup_tr' _ _ = raise Match; | 
| 25171 | 584 | |
| 26478 | 585 | fun gen_update_tr id ctxt n v s = | 
| 25171 | 586 | let | 
| 45362 | 587 |     fun pname T = if id then @{const_name Fun.id} else project_name T;
 | 
| 588 |     fun iname T = if id then @{const_name Fun.id} else inject_name T;
 | |
| 589 | in | |
| 590 | (case get_comp (Context.Proof ctxt) n of | |
| 591 | SOME (T, _) => | |
| 592 |         Syntax.const @{const_name StateFun.update} $
 | |
| 593 | Syntax.free (pname T) $ Syntax.free (iname T) $ | |
| 594 |           Syntax.free n $ (Syntax.const @{const_name K_statefun} $ v) $ s
 | |
| 595 | | NONE => | |
| 596 | if get_silent (Context.Proof ctxt) then | |
| 597 |           Syntax.const @{const_name StateFun.update} $
 | |
| 598 |             Syntax.const @{const_syntax undefined} $ Syntax.const @{const_syntax undefined} $
 | |
| 599 |             Syntax.free n $ (Syntax.const @{const_name K_statefun} $ v) $ s
 | |
| 600 |        else raise TERM ("StateSpace.gen_update_tr: component " ^ n ^ " not defined", []))
 | |
| 25171 | 601 | end; | 
| 602 | ||
| 42052 
34f1d2d81284
statespace syntax: strip positions -- type constraints are unexpected here;
 wenzelm parents: 
41585diff
changeset | 603 | fun update_tr ctxt [s, x, v] = | 
| 42264 | 604 | (case Term_Position.strip_positions x of | 
| 42052 
34f1d2d81284
statespace syntax: strip positions -- type constraints are unexpected here;
 wenzelm parents: 
41585diff
changeset | 605 | Free (n, _) => gen_update_tr false ctxt n v s | 
| 
34f1d2d81284
statespace syntax: strip positions -- type constraints are unexpected here;
 wenzelm parents: 
41585diff
changeset | 606 | | _ => raise Match); | 
| 25171 | 607 | |
| 45362 | 608 | fun update_tr' ctxt | 
| 609 | [_ $ Free (prj, _), _ $ Free (inj, _), n as (_ $ Free (name, _)), (Const (k, _) $ v), s] = | |
| 610 |       if Long_Name.base_name k = Long_Name.base_name @{const_name K_statefun} then
 | |
| 25171 | 611 | (case get_comp (Context.Proof ctxt) name of | 
| 45362 | 612 | SOME (T, _) => | 
| 613 | if inj = inject_name T andalso prj = project_name T then | |
| 614 | Syntax.const "_statespace_update" $ s $ n $ v | |
| 615 | else raise Match | |
| 616 | | NONE => raise Match) | |
| 25171 | 617 | else raise Match | 
| 618 | | update_tr' _ _ = raise Match; | |
| 619 | ||
| 620 | end; | |
| 621 | ||
| 622 | ||
| 623 | (*** outer syntax *) | |
| 624 | ||
| 45362 | 625 | local | 
| 626 | ||
| 25171 | 627 | val type_insts = | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36958diff
changeset | 628 | Parse.typ >> single || | 
| 46949 | 629 |   @{keyword "("} |-- Parse.!!! (Parse.list1 Parse.typ --| @{keyword ")"})
 | 
| 25171 | 630 | |
| 46949 | 631 | val comp = Parse.name -- (@{keyword "::"} |-- Parse.!!! Parse.typ);
 | 
| 25171 | 632 | fun plus1_unless test scan = | 
| 46949 | 633 |   scan ::: Scan.repeat (@{keyword "+"} |-- Scan.unless test (Parse.!!! scan));
 | 
| 25171 | 634 | |
| 46949 | 635 | val mapsto = @{keyword "="};
 | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36958diff
changeset | 636 | val rename = Parse.name -- (mapsto |-- Parse.name); | 
| 46949 | 637 | val renames = Scan.optional (@{keyword "["} |-- Parse.!!! (Parse.list1 rename --| @{keyword "]"})) [];
 | 
| 25171 | 638 | |
| 45362 | 639 | val parent = | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 640 | Parse_Spec.locale_prefix false -- | 
| 45362 | 641 | ((type_insts -- Parse.xname) || (Parse.xname >> pair [])) -- renames | 
| 49754 
acafcac41690
more explicit namespace prefix for 'statespace' -- duplicate facts;
 wenzelm parents: 
48741diff
changeset | 642 | >> (fn ((prefix, (insts, name)), renames) => (prefix, (insts, name, renames))); | 
| 25171 | 643 | |
| 45362 | 644 | in | 
| 25171 | 645 | |
| 646 | val statespace_decl = | |
| 45362 | 647 | Parse.type_args -- Parse.name -- | 
| 46949 | 648 |     (@{keyword "="} |--
 | 
| 45362 | 649 | ((Scan.repeat1 comp >> pair []) || | 
| 650 | (plus1_unless comp parent -- | |
| 46949 | 651 |           Scan.optional (@{keyword "+"} |-- Parse.!!! (Scan.repeat1 comp)) [])));
 | 
| 45362 | 652 | val _ = | 
| 50214 | 653 |   Outer_Syntax.command @{command_spec "statespace"} "define state-space as locale context"
 | 
| 45362 | 654 | (statespace_decl >> (fn ((args, name), (parents, comps)) => | 
| 655 | Toplevel.theory (define_statespace args name parents comps))); | |
| 25171 | 656 | |
| 45362 | 657 | end; | 
| 25171 | 658 | |
| 45362 | 659 | end; |