src/Pure/Isar/proof_context.ML
author wenzelm
Sat, 17 Mar 2012 23:55:03 +0100
changeset 47872 a0e370d3d149
parent 47804 3717f3878714
child 47876 421760a1efe7
permissions -rw-r--r--
proper naming of simprocs according to actual target context;
afford pervasive declaration which makes results available with qualified name from outside;
     1 (*  Title:      Pure/Isar/proof_context.ML
     2     Author:     Markus Wenzel, TU Muenchen
     3 
     4 The key concept of Isar proof contexts: elevates primitive local
     5 reasoning Gamma |- phi to a structured concept, with generic context
     6 elements.  See also structure Variable and Assumption.
     7 *)
     8 
     9 signature PROOF_CONTEXT =
    10 sig
    11   val theory_of: Proof.context -> theory
    12   val init_global: theory -> Proof.context
    13   type mode
    14   val mode_default: mode
    15   val mode_stmt: mode
    16   val mode_pattern: mode
    17   val mode_schematic: mode
    18   val mode_abbrev: mode
    19   val set_mode: mode -> Proof.context -> Proof.context
    20   val get_mode: Proof.context -> mode
    21   val restore_mode: Proof.context -> Proof.context -> Proof.context
    22   val abbrev_mode: Proof.context -> bool
    23   val set_stmt: bool -> Proof.context -> Proof.context
    24   val local_naming: Name_Space.naming
    25   val map_naming: (Name_Space.naming -> Name_Space.naming) -> Proof.context -> Proof.context
    26   val naming_of: Proof.context -> Name_Space.naming
    27   val restore_naming: Proof.context -> Proof.context -> Proof.context
    28   val full_name: Proof.context -> binding -> string
    29   val syntax_of: Proof.context -> Local_Syntax.T
    30   val syn_of: Proof.context -> Syntax.syntax
    31   val tsig_of: Proof.context -> Type.tsig
    32   val set_defsort: sort -> Proof.context -> Proof.context
    33   val default_sort: Proof.context -> indexname -> sort
    34   val consts_of: Proof.context -> Consts.T
    35   val the_const_constraint: Proof.context -> string -> typ
    36   val set_syntax_mode: Syntax.mode -> Proof.context -> Proof.context
    37   val restore_syntax_mode: Proof.context -> Proof.context -> Proof.context
    38   val facts_of: Proof.context -> Facts.T
    39   val cases_of: Proof.context -> (string * (Rule_Cases.T * bool)) list
    40   val class_space: Proof.context -> Name_Space.T
    41   val type_space: Proof.context -> Name_Space.T
    42   val const_space: Proof.context -> Name_Space.T
    43   val intern_class: Proof.context -> xstring -> string
    44   val intern_type: Proof.context -> xstring -> string
    45   val intern_const: Proof.context -> xstring -> string
    46   val extern_class: Proof.context -> string -> xstring
    47   val extern_type: Proof.context -> string -> xstring
    48   val extern_const: Proof.context -> string -> xstring
    49   val transfer_syntax: theory -> Proof.context -> Proof.context
    50   val transfer: theory -> Proof.context -> Proof.context
    51   val background_theory: (theory -> theory) -> Proof.context -> Proof.context
    52   val background_theory_result: (theory -> 'a * theory) -> Proof.context -> 'a * Proof.context
    53   val extern_fact: Proof.context -> string -> xstring
    54   val pretty_term_abbrev: Proof.context -> term -> Pretty.T
    55   val pretty_fact_aux: Proof.context -> bool -> string * thm list -> Pretty.T
    56   val pretty_fact: Proof.context -> string * thm list -> Pretty.T
    57   val read_class: Proof.context -> xstring -> class
    58   val read_typ: Proof.context -> string -> typ
    59   val read_typ_syntax: Proof.context -> string -> typ
    60   val read_typ_abbrev: Proof.context -> string -> typ
    61   val cert_typ: Proof.context -> typ -> typ
    62   val cert_typ_syntax: Proof.context -> typ -> typ
    63   val cert_typ_abbrev: Proof.context -> typ -> typ
    64   val infer_type: Proof.context -> string * typ -> typ
    65   val inferred_param: string -> Proof.context -> typ * Proof.context
    66   val inferred_fixes: Proof.context -> (string * typ) list * Proof.context
    67   val read_type_name: Proof.context -> bool -> string -> typ
    68   val read_type_name_proper: Proof.context -> bool -> string -> typ
    69   val read_const_proper: Proof.context -> bool -> string -> term
    70   val read_const: Proof.context -> bool -> typ -> string -> term
    71   val read_arity: Proof.context -> xstring * string list * string -> arity
    72   val cert_arity: Proof.context -> arity -> arity
    73   val allow_dummies: Proof.context -> Proof.context
    74   val prepare_sorts: Proof.context -> typ list -> typ list
    75   val check_tfree: Proof.context -> string * sort -> string * sort
    76   val intern_skolem: Proof.context -> string -> string option
    77   val read_term_pattern: Proof.context -> string -> term
    78   val read_term_schematic: Proof.context -> string -> term
    79   val read_term_abbrev: Proof.context -> string -> term
    80   val show_abbrevs_raw: Config.raw
    81   val show_abbrevs: bool Config.T
    82   val expand_abbrevs: Proof.context -> term -> term
    83   val cert_term: Proof.context -> term -> term
    84   val cert_prop: Proof.context -> term -> term
    85   val def_type: Proof.context -> indexname -> typ option
    86   val standard_typ_check: Proof.context -> typ list -> typ list
    87   val standard_term_check_finish: Proof.context -> term list -> term list
    88   val standard_term_uncheck: Proof.context -> term list -> term list
    89   val goal_export: Proof.context -> Proof.context -> thm list -> thm list
    90   val export: Proof.context -> Proof.context -> thm list -> thm list
    91   val export_morphism: Proof.context -> Proof.context -> morphism
    92   val norm_export_morphism: Proof.context -> Proof.context -> morphism
    93   val bind_terms: (indexname * term option) list -> Proof.context -> Proof.context
    94   val auto_bind_goal: term list -> Proof.context -> Proof.context
    95   val auto_bind_facts: term list -> Proof.context -> Proof.context
    96   val match_bind: bool -> (string list * string) list -> Proof.context -> term list * Proof.context
    97   val match_bind_i: bool -> (term list * term) list -> Proof.context -> term list * Proof.context
    98   val read_propp: (string * string list) list list -> Proof.context ->
    99     (term * term list) list list * Proof.context
   100   val cert_propp: (term * term list) list list -> Proof.context ->
   101     (term * term list) list list * Proof.context
   102   val read_propp_schematic: (string * string list) list list -> Proof.context ->
   103     (term * term list) list list * Proof.context
   104   val cert_propp_schematic: (term * term list) list list -> Proof.context ->
   105     (term * term list) list list * Proof.context
   106   val bind_propp: (string * string list) list list -> Proof.context ->
   107     (term list list * (Proof.context -> Proof.context)) * Proof.context
   108   val bind_propp_i: (term * term list) list list -> Proof.context ->
   109     (term list list * (Proof.context -> Proof.context)) * Proof.context
   110   val bind_propp_schematic: (string * string list) list list -> Proof.context ->
   111     (term list list * (Proof.context -> Proof.context)) * Proof.context
   112   val bind_propp_schematic_i: (term * term list) list list -> Proof.context ->
   113     (term list list * (Proof.context -> Proof.context)) * Proof.context
   114   val fact_tac: thm list -> int -> tactic
   115   val some_fact_tac: Proof.context -> int -> tactic
   116   val get_fact: Proof.context -> Facts.ref -> thm list
   117   val get_fact_single: Proof.context -> Facts.ref -> thm
   118   val get_thms: Proof.context -> xstring -> thm list
   119   val get_thm: Proof.context -> xstring -> thm
   120   val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list ->
   121     Proof.context -> (string * thm list) list * Proof.context
   122   val put_thms: bool -> string * thm list option -> Proof.context -> Proof.context
   123   val read_vars: (binding * string option * mixfix) list -> Proof.context ->
   124     (binding * typ option * mixfix) list * Proof.context
   125   val cert_vars: (binding * typ option * mixfix) list -> Proof.context ->
   126     (binding * typ option * mixfix) list * Proof.context
   127   val add_fixes: (binding * typ option * mixfix) list -> Proof.context ->
   128     string list * Proof.context
   129   val add_assms: Assumption.export ->
   130     (Thm.binding * (string * string list) list) list ->
   131     Proof.context -> (string * thm list) list * Proof.context
   132   val add_assms_i: Assumption.export ->
   133     (Thm.binding * (term * term list) list) list ->
   134     Proof.context -> (string * thm list) list * Proof.context
   135   val add_cases: bool -> (string * Rule_Cases.T option) list -> Proof.context -> Proof.context
   136   val apply_case: Rule_Cases.T -> Proof.context -> (string * term list) list * Proof.context
   137   val get_case: Proof.context -> string -> binding option list -> Rule_Cases.T
   138   val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> Proof.context -> Proof.context
   139   val notation: bool -> Syntax.mode -> (term * mixfix) list -> Proof.context -> Proof.context
   140   val target_type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> morphism ->
   141     Context.generic -> Context.generic
   142   val target_notation: bool -> Syntax.mode -> (term * mixfix) list -> morphism ->
   143     Context.generic -> Context.generic
   144   val target_naming_of: Context.generic -> Name_Space.naming
   145   val class_alias: binding -> class -> Proof.context -> Proof.context
   146   val type_alias: binding -> string -> Proof.context -> Proof.context
   147   val const_alias: binding -> string -> Proof.context -> Proof.context
   148   val add_const_constraint: string * typ option -> Proof.context -> Proof.context
   149   val add_abbrev: string -> binding * term -> Proof.context -> (term * term) * Proof.context
   150   val revert_abbrev: string -> string -> Proof.context -> Proof.context
   151   val print_syntax: Proof.context -> unit
   152   val print_abbrevs: Proof.context -> unit
   153   val print_binds: Proof.context -> unit
   154   val print_lthms: Proof.context -> unit
   155   val print_cases: Proof.context -> unit
   156   val debug: bool Config.T
   157   val verbose: bool Config.T
   158   val pretty_ctxt: Proof.context -> Pretty.T list
   159   val pretty_context: Proof.context -> Pretty.T list
   160 end;
   161 
   162 structure Proof_Context: PROOF_CONTEXT =
   163 struct
   164 
   165 val theory_of = Proof_Context.theory_of;
   166 val init_global = Proof_Context.init_global;
   167 
   168 
   169 
   170 (** inner syntax mode **)
   171 
   172 datatype mode =
   173   Mode of
   174    {stmt: bool,                (*inner statement mode*)
   175     pattern: bool,             (*pattern binding schematic variables*)
   176     schematic: bool,           (*term referencing loose schematic variables*)
   177     abbrev: bool};             (*abbrev mode -- no normalization*)
   178 
   179 fun make_mode (stmt, pattern, schematic, abbrev) =
   180   Mode {stmt = stmt, pattern = pattern, schematic = schematic, abbrev = abbrev};
   181 
   182 val mode_default   = make_mode (false, false, false, false);
   183 val mode_stmt      = make_mode (true, false, false, false);
   184 val mode_pattern   = make_mode (false, true, false, false);
   185 val mode_schematic = make_mode (false, false, true, false);
   186 val mode_abbrev    = make_mode (false, false, false, true);
   187 
   188 
   189 
   190 (** Isar proof context information **)
   191 
   192 datatype data =
   193   Data of
   194    {mode: mode,                  (*inner syntax mode*)
   195     naming: Name_Space.naming,   (*local naming conventions*)
   196     syntax: Local_Syntax.T,      (*local syntax*)
   197     tsig: Type.tsig * Type.tsig, (*local/global type signature -- local name space / defsort only*)
   198     consts: Consts.T * Consts.T, (*local/global consts -- local name space / abbrevs only*)
   199     facts: Facts.T,              (*local facts*)
   200     cases: (string * (Rule_Cases.T * bool)) list};    (*named case contexts*)
   201 
   202 fun make_data (mode, naming, syntax, tsig, consts, facts, cases) =
   203   Data {mode = mode, naming = naming, syntax = syntax,
   204     tsig = tsig, consts = consts, facts = facts, cases = cases};
   205 
   206 val local_naming = Name_Space.default_naming |> Name_Space.add_path "local";
   207 
   208 structure Data = Proof_Data
   209 (
   210   type T = data;
   211   fun init thy =
   212     make_data (mode_default, local_naming, Local_Syntax.init thy,
   213       (Sign.tsig_of thy, Sign.tsig_of thy),
   214       (Sign.consts_of thy, Sign.consts_of thy), Facts.empty, []);
   215 );
   216 
   217 fun rep_data ctxt = Data.get ctxt |> (fn Data rep => rep);
   218 
   219 fun map_data f =
   220   Data.map (fn Data {mode, naming, syntax, tsig, consts, facts, cases} =>
   221     make_data (f (mode, naming, syntax, tsig, consts, facts, cases)));
   222 
   223 fun set_mode mode = map_data (fn (_, naming, syntax, tsig, consts, facts, cases) =>
   224   (mode, naming, syntax, tsig, consts, facts, cases));
   225 
   226 fun map_mode f =
   227   map_data (fn (Mode {stmt, pattern, schematic, abbrev}, naming, syntax, tsig, consts, facts, cases) =>
   228     (make_mode (f (stmt, pattern, schematic, abbrev)), naming, syntax, tsig, consts, facts, cases));
   229 
   230 fun map_naming f =
   231   map_data (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
   232     (mode, f naming, syntax, tsig, consts, facts, cases));
   233 
   234 fun map_syntax f =
   235   map_data (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
   236     (mode, naming, f syntax, tsig, consts, facts, cases));
   237 
   238 fun map_tsig f =
   239   map_data (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
   240     (mode, naming, syntax, f tsig, consts, facts, cases));
   241 
   242 fun map_consts f =
   243   map_data (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
   244     (mode, naming, syntax, tsig, f consts, facts, cases));
   245 
   246 fun map_facts f =
   247   map_data (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
   248     (mode, naming, syntax, tsig, consts, f facts, cases));
   249 
   250 fun map_cases f =
   251   map_data (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
   252     (mode, naming, syntax, tsig, consts, facts, f cases));
   253 
   254 val get_mode = #mode o rep_data;
   255 val restore_mode = set_mode o get_mode;
   256 val abbrev_mode = get_mode #> (fn Mode {abbrev, ...} => abbrev);
   257 
   258 fun set_stmt stmt =
   259   map_mode (fn (_, pattern, schematic, abbrev) => (stmt, pattern, schematic, abbrev));
   260 
   261 val naming_of = #naming o rep_data;
   262 val restore_naming = map_naming o K o naming_of
   263 val full_name = Name_Space.full_name o naming_of;
   264 
   265 val syntax_of = #syntax o rep_data;
   266 val syn_of = Local_Syntax.syn_of o syntax_of;
   267 val set_syntax_mode = map_syntax o Local_Syntax.set_mode;
   268 val restore_syntax_mode = map_syntax o Local_Syntax.restore_mode o syntax_of;
   269 
   270 val tsig_of = #1 o #tsig o rep_data;
   271 val set_defsort = map_tsig o apfst o Type.set_defsort;
   272 fun default_sort ctxt = the_default (Type.defaultS (tsig_of ctxt)) o Variable.def_sort ctxt;
   273 
   274 val consts_of = #1 o #consts o rep_data;
   275 val the_const_constraint = Consts.the_constraint o consts_of;
   276 
   277 val facts_of = #facts o rep_data;
   278 val cases_of = #cases o rep_data;
   279 
   280 
   281 (* name spaces *)
   282 
   283 val class_space = Type.class_space o tsig_of;
   284 val type_space = Type.type_space o tsig_of;
   285 val const_space = Consts.space_of o consts_of;
   286 
   287 val intern_class = Name_Space.intern o class_space;
   288 val intern_type = Name_Space.intern o type_space;
   289 val intern_const = Name_Space.intern o const_space;
   290 
   291 fun extern_class ctxt = Name_Space.extern ctxt (class_space ctxt);
   292 fun extern_type ctxt = Name_Space.extern ctxt (type_space ctxt);
   293 fun extern_const ctxt = Name_Space.extern ctxt (const_space ctxt);
   294 
   295 
   296 (* theory transfer *)
   297 
   298 fun transfer_syntax thy ctxt = ctxt |>
   299   map_syntax (Local_Syntax.rebuild thy) |>
   300   map_tsig (fn tsig as (local_tsig, global_tsig) =>
   301     let val thy_tsig = Sign.tsig_of thy in
   302       if Type.eq_tsig (thy_tsig, global_tsig) then tsig
   303       else (Type.merge_tsig ctxt (local_tsig, thy_tsig), thy_tsig)
   304     end) |>
   305   map_consts (fn consts as (local_consts, global_consts) =>
   306     let val thy_consts = Sign.consts_of thy in
   307       if Consts.eq_consts (thy_consts, global_consts) then consts
   308       else (Consts.merge (local_consts, thy_consts), thy_consts)
   309     end);
   310 
   311 fun transfer thy = Context.raw_transfer thy #> transfer_syntax thy;
   312 
   313 fun background_theory f ctxt = transfer (f (theory_of ctxt)) ctxt;
   314 
   315 fun background_theory_result f ctxt =
   316   let val (res, thy') = f (theory_of ctxt)
   317   in (res, ctxt |> transfer thy') end;
   318 
   319 
   320 
   321 (** pretty printing **)
   322 
   323 (* extern *)
   324 
   325 fun which_facts ctxt name =
   326   let
   327     val local_facts = facts_of ctxt;
   328     val global_facts = Global_Theory.facts_of (theory_of ctxt);
   329   in
   330     if is_some (Facts.lookup (Context.Proof ctxt) local_facts name)
   331     then local_facts else global_facts
   332   end;
   333 
   334 fun markup_fact ctxt name = Name_Space.markup (Facts.space_of (which_facts ctxt name)) name;
   335 
   336 fun extern_fact ctxt name = Facts.extern ctxt (which_facts ctxt name) name;
   337 
   338 
   339 (* pretty *)
   340 
   341 fun pretty_term_abbrev ctxt = Syntax.pretty_term (set_mode mode_abbrev ctxt);
   342 
   343 fun pretty_fact_name ctxt a =
   344   Pretty.block [Pretty.mark_str (markup_fact ctxt a, extern_fact ctxt a), Pretty.str ":"];
   345 
   346 fun pretty_fact_aux ctxt flag ("", ths) =
   347       Display.pretty_thms_aux ctxt flag ths
   348   | pretty_fact_aux ctxt flag (a, [th]) = Pretty.block
   349       [pretty_fact_name ctxt a, Pretty.brk 1, Display.pretty_thm_aux ctxt flag th]
   350   | pretty_fact_aux ctxt flag (a, ths) = Pretty.block
   351       (Pretty.fbreaks (pretty_fact_name ctxt a :: map (Display.pretty_thm_aux ctxt flag) ths));
   352 
   353 fun pretty_fact ctxt = pretty_fact_aux ctxt true;
   354 
   355 
   356 
   357 (** prepare types **)
   358 
   359 (* classes *)
   360 
   361 fun read_class ctxt text =
   362   let
   363     val tsig = tsig_of ctxt;
   364     val (syms, pos) = Syntax.read_token text;
   365     val c = Type.cert_class tsig (Type.intern_class tsig (Symbol_Pos.content syms))
   366       handle TYPE (msg, _, _) => error (msg ^ Position.str_of pos);
   367     val _ = Context_Position.report ctxt pos (Name_Space.markup (Type.class_space tsig) c);
   368   in c end;
   369 
   370 
   371 (* types *)
   372 
   373 fun read_typ_mode mode ctxt s =
   374   Syntax.read_typ (Type.set_mode mode ctxt) s;
   375 
   376 val read_typ = read_typ_mode Type.mode_default;
   377 val read_typ_syntax = read_typ_mode Type.mode_syntax;
   378 val read_typ_abbrev = read_typ_mode Type.mode_abbrev;
   379 
   380 
   381 fun cert_typ_mode mode ctxt T =
   382   Type.cert_typ_mode mode (tsig_of ctxt) T
   383     handle TYPE (msg, _, _) => error msg;
   384 
   385 val cert_typ = cert_typ_mode Type.mode_default;
   386 val cert_typ_syntax = cert_typ_mode Type.mode_syntax;
   387 val cert_typ_abbrev = cert_typ_mode Type.mode_abbrev;
   388 
   389 
   390 
   391 (** prepare variables **)
   392 
   393 (* check Skolem constants *)
   394 
   395 fun no_skolem internal x =
   396   if can Name.dest_skolem x then
   397     error ("Illegal reference to internal Skolem constant: " ^ quote x)
   398   else if not internal andalso can Name.dest_internal x then
   399     error ("Illegal reference to internal variable: " ^ quote x)
   400   else x;
   401 
   402 
   403 
   404 (** prepare terms and propositions **)
   405 
   406 (* inferred types of parameters *)
   407 
   408 fun infer_type ctxt x =
   409   Term.fastype_of (singleton (Syntax.check_terms (set_mode mode_schematic ctxt)) (Free x));
   410 
   411 fun inferred_param x ctxt =
   412   let val T = infer_type ctxt (x, dummyT)
   413   in (T, ctxt |> Variable.declare_term (Free (x, T))) end;
   414 
   415 fun inferred_fixes ctxt =
   416   let
   417     val xs = map #2 (Variable.dest_fixes ctxt);
   418     val (Ts, ctxt') = fold_map inferred_param xs ctxt;
   419   in (xs ~~ Ts, ctxt') end;
   420 
   421 
   422 (* type and constant names *)
   423 
   424 local
   425 
   426 val token_content = Syntax.read_token #>> Symbol_Pos.content;
   427 
   428 fun prep_const_proper ctxt strict (c, pos) =
   429   let
   430     fun err msg = error (msg ^ Position.str_of pos);
   431     val consts = consts_of ctxt;
   432     val t as Const (d, _) =
   433       (case Variable.lookup_const ctxt c of
   434         SOME d =>
   435           Const (d, Consts.type_scheme (consts_of ctxt) d handle TYPE (msg, _, _) => err msg)
   436       | NONE => Consts.read_const consts (c, pos));
   437     val _ =
   438       if strict then ignore (Consts.the_const consts d) handle TYPE (msg, _, _) => err msg
   439       else ();
   440     val _ = Context_Position.report ctxt pos (Name_Space.markup (Consts.space_of consts) d);
   441   in t end;
   442 
   443 in
   444 
   445 fun read_type_name ctxt strict text =
   446   let
   447     val tsig = tsig_of ctxt;
   448     val (c, pos) = token_content text;
   449   in
   450     if Lexicon.is_tid c then
   451      (Context_Position.report ctxt pos Isabelle_Markup.tfree;
   452       TFree (c, default_sort ctxt (c, ~1)))
   453     else
   454       let
   455         val d = intern_type ctxt c;
   456         val decl = Type.the_decl tsig (d, pos);
   457         fun err () = error ("Bad type name: " ^ quote d ^ Position.str_of pos);
   458         val args =
   459           (case decl of
   460             Type.LogicalType n => n
   461           | Type.Abbreviation (vs, _, _) => if strict then err () else length vs
   462           | Type.Nonterminal => if strict then err () else 0);
   463         val _ = Context_Position.report ctxt pos (Name_Space.markup (Type.type_space tsig) d);
   464       in Type (d, replicate args dummyT) end
   465   end;
   466 
   467 fun read_type_name_proper ctxt strict text =
   468   (case read_type_name ctxt strict text of
   469     T as Type _ => T
   470   | T => error ("Not a type constructor: " ^ Syntax.string_of_typ ctxt T));
   471 
   472 
   473 fun read_const_proper ctxt strict = prep_const_proper ctxt strict o token_content;
   474 
   475 fun read_const ctxt strict ty text =
   476   let
   477     val (c, pos) = token_content text;
   478     val _ = no_skolem false c;
   479   in
   480     (case (Variable.lookup_fixed ctxt c, Variable.is_const ctxt c) of
   481       (SOME x, false) =>
   482         (Context_Position.report ctxt pos
   483             (Markup.name x
   484               (if can Name.dest_skolem x then Isabelle_Markup.skolem else Isabelle_Markup.free));
   485           Free (x, infer_type ctxt (x, ty)))
   486     | _ => prep_const_proper ctxt strict (c, pos))
   487   end;
   488 
   489 end;
   490 
   491 
   492 (* type arities *)
   493 
   494 local
   495 
   496 fun prep_arity prep_tycon prep_sort ctxt (t, Ss, S) =
   497   let val arity = (prep_tycon ctxt t, map (prep_sort ctxt) Ss, prep_sort ctxt S)
   498   in Type.add_arity ctxt arity (tsig_of ctxt); arity end;
   499 
   500 in
   501 
   502 val read_arity =
   503   prep_arity (fn ctxt => #1 o dest_Type o read_type_name_proper ctxt true) Syntax.read_sort;
   504 val cert_arity = prep_arity (K I) (Type.cert_sort o tsig_of);
   505 
   506 end;
   507 
   508 
   509 (* skolem variables *)
   510 
   511 fun intern_skolem ctxt x =
   512   let
   513     val _ = no_skolem false x;
   514     val sko = Variable.lookup_fixed ctxt x;
   515     val is_const = can (read_const_proper ctxt false) x orelse Long_Name.is_qualified x;
   516     val is_declared = is_some (Variable.def_type ctxt false (x, ~1));
   517   in
   518     if Variable.is_const ctxt x then NONE
   519     else if is_some sko then sko
   520     else if not is_const orelse is_declared then SOME x
   521     else NONE
   522   end;
   523 
   524 
   525 (* read_term *)
   526 
   527 fun read_term_mode mode ctxt = Syntax.read_term (set_mode mode ctxt);
   528 
   529 val read_term_pattern   = read_term_mode mode_pattern;
   530 val read_term_schematic = read_term_mode mode_schematic;
   531 val read_term_abbrev    = read_term_mode mode_abbrev;
   532 
   533 
   534 (* local abbreviations *)
   535 
   536 local
   537 
   538 fun certify_consts ctxt = Consts.certify (Context.pretty ctxt) (tsig_of ctxt)
   539   (not (abbrev_mode ctxt)) (consts_of ctxt);
   540 
   541 fun expand_binds ctxt =
   542   let
   543     val Mode {pattern, schematic, ...} = get_mode ctxt;
   544 
   545     fun reject_schematic (t as Var _) =
   546           error ("Unbound schematic variable: " ^ Syntax.string_of_term ctxt t)
   547       | reject_schematic (Abs (_, _, t)) = reject_schematic t
   548       | reject_schematic (t $ u) = (reject_schematic t; reject_schematic u)
   549       | reject_schematic _ = ();
   550   in
   551     if pattern then I
   552     else Variable.expand_binds ctxt #> (if schematic then I else tap reject_schematic)
   553   end;
   554 
   555 in
   556 
   557 fun expand_abbrevs ctxt = certify_consts ctxt #> expand_binds ctxt;
   558 
   559 end;
   560 
   561 val show_abbrevs_raw = Config.declare "show_abbrevs" (fn _ => Config.Bool true);
   562 val show_abbrevs = Config.bool show_abbrevs_raw;
   563 
   564 fun contract_abbrevs ctxt t =
   565   let
   566     val thy = theory_of ctxt;
   567     val consts = consts_of ctxt;
   568     val Mode {abbrev, ...} = get_mode ctxt;
   569     val retrieve = Consts.retrieve_abbrevs consts (print_mode_value () @ [""]);
   570     fun match_abbrev u = Option.map #1 (get_first (Pattern.match_rew thy u) (retrieve u));
   571   in
   572     if abbrev orelse not (Config.get ctxt show_abbrevs) orelse not (can Term.type_of t) then t
   573     else Pattern.rewrite_term_top thy [] [match_abbrev] t
   574   end;
   575 
   576 
   577 (* patterns *)
   578 
   579 fun prepare_patternT ctxt T =
   580   let
   581     val Mode {pattern, schematic, ...} = get_mode ctxt;
   582     val _ =
   583       pattern orelse schematic orelse
   584         T |> Term.exists_subtype
   585           (fn T as TVar (xi, _) =>
   586             not (Type_Infer.is_param xi) andalso
   587               error ("Illegal schematic type variable: " ^ Syntax.string_of_typ ctxt T)
   588           | _ => false)
   589   in T end;
   590 
   591 
   592 local
   593 
   594 val dummies = Config.bool (Config.declare "Proof_Context.dummies" (K (Config.Bool false)));
   595 
   596 fun check_dummies ctxt t =
   597   if Config.get ctxt dummies then t
   598   else Term.no_dummy_patterns t handle TERM _ => error "Illegal dummy pattern(s) in term";
   599 
   600 fun prepare_dummies ts = #1 (fold_map Term.replace_dummy_patterns ts 1);
   601 
   602 in
   603 
   604 val allow_dummies = Config.put dummies true;
   605 
   606 fun prepare_patterns ctxt =
   607   let val Mode {pattern, ...} = get_mode ctxt in
   608     Type_Infer.fixate ctxt #>
   609     pattern ? Variable.polymorphic ctxt #>
   610     (map o Term.map_types) (prepare_patternT ctxt) #>
   611     (if pattern then prepare_dummies else map (check_dummies ctxt))
   612   end;
   613 
   614 end;
   615 
   616 
   617 (* sort constraints *)
   618 
   619 fun prepare_sorts ctxt tys =
   620   let
   621     val tsig = tsig_of ctxt;
   622     val defaultS = Type.defaultS tsig;
   623 
   624     fun constraint (xi, S) env =
   625       if S = dummyS then env
   626       else
   627         Vartab.insert (op =) (xi, Type.minimize_sort tsig S) env
   628           handle Vartab.DUP _ =>
   629             error ("Inconsistent sort constraints for type variable " ^
   630               quote (Term.string_of_vname' xi));
   631     val env =
   632       (fold o fold_atyps)
   633         (fn TFree (x, S) => constraint ((x, ~1), S)
   634           | TVar v => constraint v
   635           | _ => I) tys Vartab.empty;
   636 
   637     fun get_sort xi =
   638       (case (Vartab.lookup env xi, Variable.def_sort ctxt xi) of
   639         (NONE, NONE) => defaultS
   640       | (NONE, SOME S) => S
   641       | (SOME S, NONE) => S
   642       | (SOME S, SOME S') =>
   643           if Type.eq_sort tsig (S, S') then S'
   644           else
   645             error ("Sort constraint " ^ Syntax.string_of_sort ctxt S ^
   646               " inconsistent with default " ^ Syntax.string_of_sort ctxt S' ^
   647               " for type variable " ^ quote (Term.string_of_vname' xi)));
   648   in
   649     (map o map_atyps)
   650       (fn T =>
   651         if Term_Position.is_positionT T then T
   652         else
   653           (case T of
   654             TFree (x, _) => TFree (x, get_sort (x, ~1))
   655           | TVar (xi, _) => TVar (xi, get_sort xi)
   656           | _ => T)) tys
   657   end;
   658 
   659 fun check_tfree ctxt v = dest_TFree (singleton (prepare_sorts ctxt) (TFree v));
   660 
   661 
   662 (* certify terms *)
   663 
   664 local
   665 
   666 fun gen_cert prop ctxt t =
   667   t
   668   |> expand_abbrevs ctxt
   669   |> (fn t' =>
   670       #1 (Sign.certify' prop (Context.pretty ctxt) false (consts_of ctxt) (theory_of ctxt) t')
   671         handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg);
   672 
   673 in
   674 
   675 val cert_term = gen_cert false;
   676 val cert_prop = gen_cert true;
   677 
   678 end;
   679 
   680 
   681 (* check/uncheck *)
   682 
   683 fun def_type ctxt =
   684   let val Mode {pattern, ...} = get_mode ctxt
   685   in Variable.def_type ctxt pattern end;
   686 
   687 fun standard_typ_check ctxt =
   688   map (cert_typ_mode (Type.get_mode ctxt) ctxt #> prepare_patternT ctxt);
   689 
   690 val standard_term_check_finish = prepare_patterns;
   691 
   692 fun standard_term_uncheck ctxt = map (contract_abbrevs ctxt);
   693 
   694 
   695 
   696 (** export results **)
   697 
   698 fun common_export is_goal inner outer =
   699   map (Assumption.export is_goal inner outer) #>
   700   Variable.export inner outer;
   701 
   702 val goal_export = common_export true;
   703 val export = common_export false;
   704 
   705 fun export_morphism inner outer =
   706   Assumption.export_morphism inner outer $>
   707   Variable.export_morphism inner outer;
   708 
   709 fun norm_export_morphism inner outer =
   710   export_morphism inner outer $>
   711   Morphism.thm_morphism Goal.norm_result;
   712 
   713 
   714 
   715 (** term bindings **)
   716 
   717 (* simult_matches *)
   718 
   719 fun simult_matches ctxt (t, pats) =
   720   (case Seq.pull (Unify.matchers (theory_of ctxt) (map (rpair t) pats)) of
   721     NONE => error "Pattern match failed!"
   722   | SOME (env, _) => Vartab.fold (fn (v, (_, t)) => cons (v, t)) (Envir.term_env env) []);
   723 
   724 
   725 (* bind_terms *)
   726 
   727 val bind_terms = fold (fn (xi, t) => fn ctxt =>
   728   ctxt
   729   |> Variable.bind_term (xi, Option.map (cert_term (set_mode mode_default ctxt)) t));
   730 
   731 
   732 (* auto_bind *)
   733 
   734 fun drop_schematic (b as (xi, SOME t)) = if Term.exists_subterm is_Var t then (xi, NONE) else b
   735   | drop_schematic b = b;
   736 
   737 fun auto_bind f ts ctxt = ctxt |> bind_terms (map drop_schematic (f (theory_of ctxt) ts));
   738 
   739 val auto_bind_goal = auto_bind Auto_Bind.goal;
   740 val auto_bind_facts = auto_bind Auto_Bind.facts;
   741 
   742 
   743 (* match_bind(_i) *)
   744 
   745 local
   746 
   747 fun gen_bind prep_terms gen raw_binds ctxt =
   748   let
   749     fun prep_bind (raw_pats, t) ctxt1 =
   750       let
   751         val T = Term.fastype_of t;
   752         val ctxt2 = Variable.declare_term t ctxt1;
   753         val pats = prep_terms (set_mode mode_pattern ctxt2) T raw_pats;
   754         val binds = simult_matches ctxt2 (t, pats);
   755       in (binds, ctxt2) end;
   756 
   757     val ts = prep_terms ctxt dummyT (map snd raw_binds);
   758     val (binds, ctxt') = apfst flat (fold_map prep_bind (map fst raw_binds ~~ ts) ctxt);
   759     val binds' =
   760       if gen then map #1 binds ~~ Variable.exportT_terms ctxt' ctxt (map #2 binds)
   761       else binds;
   762     val binds'' = map (apsnd SOME) binds';
   763     val ctxt'' =
   764       tap (Variable.warn_extra_tfrees ctxt)
   765        (if gen then
   766           ctxt (*sic!*) |> fold Variable.declare_term (map #2 binds') |> bind_terms binds''
   767         else ctxt' |> bind_terms binds'');
   768   in (ts, ctxt'') end;
   769 
   770 in
   771 
   772 fun read_terms ctxt T =
   773   map (Syntax.parse_term ctxt #> Type.constraint T) #> Syntax.check_terms ctxt;
   774 
   775 val match_bind = gen_bind read_terms;
   776 val match_bind_i = gen_bind (fn ctxt => fn _ => map (cert_term ctxt));
   777 
   778 end;
   779 
   780 
   781 (* propositions with patterns *)
   782 
   783 local
   784 
   785 fun prep_propp mode prep_props args context =
   786   let
   787     fun prep (_, raw_pats) (ctxt, prop :: props) =
   788       let val ctxt' = Variable.declare_term prop ctxt
   789       in ((prop, prep_props (set_mode mode_pattern ctxt') raw_pats), (ctxt', props)) end;
   790 
   791     val (propp, (context', _)) =
   792       (fold_map o fold_map) prep args
   793         (context, prep_props (set_mode mode context) (maps (map fst) args));
   794   in (propp, context') end;
   795 
   796 fun gen_bind_propp mode parse_prop raw_args ctxt =
   797   let
   798     val (args, ctxt') = prep_propp mode parse_prop raw_args ctxt;
   799     val binds = flat (flat (map (map (simult_matches ctxt')) args));
   800     val propss = map (map #1) args;
   801     fun gen_binds ctxt0 = ctxt0
   802       |> bind_terms (map #1 binds ~~
   803           map (SOME o Term.close_schematic_term) (Variable.export_terms ctxt' ctxt0 (map #2 binds)));
   804   in ((propss, gen_binds), ctxt' |> bind_terms (map (apsnd SOME) binds)) end;
   805 
   806 in
   807 
   808 val read_propp           = prep_propp mode_default Syntax.read_props;
   809 val cert_propp           = prep_propp mode_default (map o cert_prop);
   810 val read_propp_schematic = prep_propp mode_schematic Syntax.read_props;
   811 val cert_propp_schematic = prep_propp mode_schematic (map o cert_prop);
   812 
   813 val bind_propp             = gen_bind_propp mode_default Syntax.read_props;
   814 val bind_propp_i           = gen_bind_propp mode_default (map o cert_prop);
   815 val bind_propp_schematic   = gen_bind_propp mode_schematic Syntax.read_props;
   816 val bind_propp_schematic_i = gen_bind_propp mode_schematic (map o cert_prop);
   817 
   818 end;
   819 
   820 
   821 
   822 (** theorems **)
   823 
   824 (* fact_tac *)
   825 
   826 fun comp_incr_tac [] _ = no_tac
   827   | comp_incr_tac (th :: ths) i =
   828       (fn st => Goal.compose_hhf_tac (Drule.incr_indexes st th) i st) APPEND comp_incr_tac ths i;
   829 
   830 fun fact_tac facts = Goal.norm_hhf_tac THEN' comp_incr_tac facts;
   831 
   832 fun potential_facts ctxt prop =
   833   Facts.could_unify (facts_of ctxt) (Term.strip_all_body prop);
   834 
   835 fun some_fact_tac ctxt = SUBGOAL (fn (goal, i) => fact_tac (potential_facts ctxt goal) i);
   836 
   837 
   838 (* get_thm(s) *)
   839 
   840 local
   841 
   842 fun retrieve_thms pick ctxt (Facts.Fact s) =
   843       let
   844         val pos = Syntax.read_token_pos s;
   845         val prop =
   846           Syntax.read_prop (ctxt |> set_mode mode_default |> allow_dummies) s
   847           |> singleton (Variable.polymorphic ctxt);
   848         fun err msg = error (msg ^ Position.str_of pos ^ ":\n" ^ Syntax.string_of_term ctxt prop);
   849 
   850         val (prop', _) = Term.replace_dummy_patterns prop (Variable.maxidx_of ctxt + 1);
   851         fun prove_fact th =
   852           Goal.prove ctxt [] [] prop' (K (ALLGOALS (fact_tac [th])));
   853         val results = map_filter (try prove_fact) (potential_facts ctxt prop');
   854         val res =
   855           (case distinct Thm.eq_thm_prop results of
   856             [res] => res
   857           | [] => err "Failed to retrieve literal fact"
   858           | _ => err "Ambiguous specification of literal fact");
   859       in pick "" [res] end
   860   | retrieve_thms pick ctxt xthmref =
   861       let
   862         val thy = theory_of ctxt;
   863         val local_facts = facts_of ctxt;
   864         val thmref = Facts.map_name_of_ref (Facts.intern local_facts) xthmref;
   865         val name = Facts.name_of_ref thmref;
   866         val pos = Facts.pos_of_ref xthmref;
   867         val thms =
   868           if name = "" then [Thm.transfer thy Drule.dummy_thm]
   869           else
   870             (case Facts.lookup (Context.Proof ctxt) local_facts name of
   871               SOME (_, ths) =>
   872                 (Context_Position.report ctxt pos
   873                   (Name_Space.markup (Facts.space_of local_facts) name);
   874                  map (Thm.transfer thy) (Facts.select thmref ths))
   875             | NONE => Global_Theory.get_fact (Context.Proof ctxt) thy xthmref);
   876       in pick name thms end;
   877 
   878 in
   879 
   880 val get_fact = retrieve_thms (K I);
   881 val get_fact_single = retrieve_thms Facts.the_single;
   882 
   883 fun get_thms ctxt = get_fact ctxt o Facts.named;
   884 fun get_thm ctxt = get_fact_single ctxt o Facts.named;
   885 
   886 end;
   887 
   888 
   889 (* facts *)
   890 
   891 local
   892 
   893 fun update_thms _ (b, NONE) ctxt = ctxt |> map_facts (Facts.del (full_name ctxt b))
   894   | update_thms do_props (b, SOME ths) ctxt = ctxt |> map_facts
   895       (Facts.add_local ctxt do_props (naming_of ctxt) (b, ths) #> snd);
   896 
   897 in
   898 
   899 fun note_thmss kind = fold_map (fn ((b, more_atts), raw_facts) => fn ctxt =>
   900   let
   901     val name = full_name ctxt b;
   902     val facts = Global_Theory.name_thmss false name raw_facts;
   903     fun app (ths, atts) =
   904       fold_map (Thm.proof_attributes (surround (Thm.kind kind) (atts @ more_atts))) ths;
   905     val (res, ctxt') = fold_map app facts ctxt;
   906     val thms = Global_Theory.name_thms false false name (flat res);
   907     val Mode {stmt, ...} = get_mode ctxt;
   908   in ((name, thms), ctxt' |> update_thms stmt (b, SOME thms)) end);
   909 
   910 fun put_thms do_props thms ctxt = ctxt
   911   |> map_naming (K local_naming)
   912   |> Context_Position.set_visible false
   913   |> update_thms do_props (apfst Binding.name thms)
   914   |> Context_Position.restore_visible ctxt
   915   |> restore_naming ctxt;
   916 
   917 end;
   918 
   919 
   920 
   921 (** basic logical entities **)
   922 
   923 (* variables *)
   924 
   925 fun declare_var (x, opt_T, mx) ctxt =
   926   let val T = (case opt_T of SOME T => T | NONE => Mixfix.mixfixT mx)
   927   in ((x, T, mx), ctxt |> Variable.declare_constraints (Free (x, T))) end;
   928 
   929 local
   930 
   931 fun prep_vars prep_typ internal =
   932   fold_map (fn (b, raw_T, mx) => fn ctxt =>
   933     let
   934       val x = Variable.check_name b;
   935       val _ = Lexicon.is_identifier (no_skolem internal x) orelse
   936         error ("Illegal variable name: " ^ Binding.print b);
   937 
   938       fun cond_tvars T =
   939         if internal then T
   940         else Type.no_tvars T handle TYPE (msg, _, _) => error msg;
   941       val opt_T = Option.map (cond_tvars o cert_typ ctxt o prep_typ ctxt) raw_T;
   942       val (_, ctxt') = ctxt |> declare_var (x, opt_T, mx);
   943     in ((b, opt_T, mx), ctxt') end);
   944 
   945 in
   946 
   947 val read_vars = prep_vars Syntax.read_typ false;
   948 val cert_vars = prep_vars (K I) true;
   949 
   950 end;
   951 
   952 
   953 (* notation *)
   954 
   955 local
   956 
   957 fun type_syntax (Type (c, args), mx) =
   958       SOME (Local_Syntax.Type, (Lexicon.mark_type c, Mixfix.make_type (length args), mx))
   959   | type_syntax _ = NONE;
   960 
   961 fun const_syntax _ (Free (x, T), mx) = SOME (Local_Syntax.Fixed, (x, T, mx))
   962   | const_syntax ctxt (Const (c, _), mx) =
   963       (case try (Consts.type_scheme (consts_of ctxt)) c of
   964         SOME T => SOME (Local_Syntax.Const, (Lexicon.mark_const c, T, mx))
   965       | NONE => NONE)
   966   | const_syntax _ _ = NONE;
   967 
   968 fun gen_notation syntax add mode args ctxt =
   969   ctxt |> map_syntax
   970     (Local_Syntax.update_modesyntax (theory_of ctxt) add mode (map_filter (syntax ctxt) args));
   971 
   972 in
   973 
   974 val type_notation = gen_notation (K type_syntax);
   975 val notation = gen_notation const_syntax;
   976 
   977 fun target_type_notation add mode args phi =
   978   let
   979     val args' = args |> map_filter (fn (T, mx) =>
   980       let
   981         val T' = Morphism.typ phi T;
   982         val similar = (case (T, T') of (Type (c, _), Type (c', _)) => c = c' | _ => false);
   983       in if similar then SOME (T', mx) else NONE end);
   984   in Context.mapping (Sign.type_notation add mode args') (type_notation add mode args') end;
   985 
   986 fun target_notation add mode args phi =
   987   let
   988     val args' = args |> map_filter (fn (t, mx) =>
   989       let val t' = Morphism.term phi t
   990       in if Term.aconv_untyped (t, t') then SOME (t', mx) else NONE end);
   991   in Context.mapping (Sign.notation add mode args') (notation add mode args') end;
   992 
   993 end;
   994 
   995 
   996 (* naming *)
   997 
   998 val target_naming_of = Context.cases Sign.naming_of naming_of;
   999 
  1000 
  1001 (* aliases *)
  1002 
  1003 fun class_alias b c ctxt = (map_tsig o apfst) (Type.class_alias (naming_of ctxt) b c) ctxt;
  1004 fun type_alias b c ctxt = (map_tsig o apfst) (Type.type_alias (naming_of ctxt) b c) ctxt;
  1005 fun const_alias b c ctxt = (map_consts o apfst) (Consts.alias (naming_of ctxt) b c) ctxt;
  1006 
  1007 
  1008 (* local constants *)
  1009 
  1010 fun add_const_constraint (c, opt_T) ctxt =
  1011   let
  1012     fun prepT raw_T =
  1013       let val T = cert_typ ctxt raw_T
  1014       in cert_term ctxt (Const (c, T)); T end;
  1015   in ctxt |> (map_consts o apfst) (Consts.constrain (c, Option.map prepT opt_T)) end;
  1016 
  1017 fun add_abbrev mode (b, raw_t) ctxt =
  1018   let
  1019     val t0 = cert_term (ctxt |> set_mode mode_abbrev) raw_t
  1020       handle ERROR msg => cat_error msg ("in constant abbreviation " ^ Binding.print b);
  1021     val [t] = Variable.exportT_terms (Variable.declare_term t0 ctxt) ctxt [t0];
  1022     val ((lhs, rhs), consts') = consts_of ctxt
  1023       |> Consts.abbreviate ctxt (tsig_of ctxt) (naming_of ctxt) mode (b, t);
  1024   in
  1025     ctxt
  1026     |> (map_consts o apfst) (K consts')
  1027     |> Variable.declare_term rhs
  1028     |> pair (lhs, rhs)
  1029   end;
  1030 
  1031 fun revert_abbrev mode c = (map_consts o apfst) (Consts.revert_abbrev mode c);
  1032 
  1033 
  1034 (* fixes *)
  1035 
  1036 fun add_fixes raw_vars ctxt =
  1037   let
  1038     val thy = theory_of ctxt;
  1039     val vars = #1 (cert_vars raw_vars ctxt);
  1040   in
  1041     ctxt
  1042     |> Variable.add_fixes_binding (map #1 vars)
  1043     |-> (fn xs =>
  1044       fold_map declare_var (map2 (fn x => fn (_, T, mx) => (x, T, mx)) xs vars)
  1045       #-> (map_syntax o Local_Syntax.add_syntax thy o map (pair Local_Syntax.Fixed))
  1046       #> pair xs)
  1047   end;
  1048 
  1049 
  1050 
  1051 (** assumptions **)
  1052 
  1053 local
  1054 
  1055 fun gen_assms prepp exp args ctxt =
  1056   let
  1057     val cert = Thm.cterm_of (theory_of ctxt);
  1058     val ((propss, _), ctxt1) = prepp (map snd args) ctxt;
  1059     val _ = Variable.warn_extra_tfrees ctxt ctxt1;
  1060     val (premss, ctxt2) = fold_burrow (Assumption.add_assms exp o map cert) propss ctxt1;
  1061   in
  1062     ctxt2
  1063     |> auto_bind_facts (flat propss)
  1064     |> note_thmss "" (map fst args ~~ map (map (fn th => ([th], []))) premss)
  1065   end;
  1066 
  1067 in
  1068 
  1069 val add_assms = gen_assms bind_propp;
  1070 val add_assms_i = gen_assms bind_propp_i;
  1071 
  1072 end;
  1073 
  1074 
  1075 
  1076 (** cases **)
  1077 
  1078 local
  1079 
  1080 fun rem_case name = remove (fn (x: string, (y, _)) => x = y) name;
  1081 
  1082 fun add_case _ ("", _) cases = cases
  1083   | add_case _ (name, NONE) cases = rem_case name cases
  1084   | add_case is_proper (name, SOME c) cases = (name, (c, is_proper)) :: rem_case name cases;
  1085 
  1086 fun prep_case name fxs c =
  1087   let
  1088     fun replace (opt_x :: xs) ((y, T) :: ys) = (the_default y opt_x, T) :: replace xs ys
  1089       | replace [] ys = ys
  1090       | replace (_ :: _) [] = error ("Too many parameters for case " ^ quote name);
  1091     val Rule_Cases.Case {fixes, assumes, binds, cases} = c;
  1092     val fixes' = replace fxs fixes;
  1093     val binds' = map drop_schematic binds;
  1094   in
  1095     if null (fold (Term.add_tvarsT o snd) fixes []) andalso
  1096       null (fold (fold Term.add_vars o snd) assumes []) then
  1097         Rule_Cases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases}
  1098     else error ("Illegal schematic variable(s) in case " ^ quote name)
  1099   end;
  1100 
  1101 fun fix (b, T) ctxt =
  1102   let val ([x], ctxt') = add_fixes [(b, SOME T, NoSyn)] ctxt
  1103   in (Free (x, T), ctxt') end;
  1104 
  1105 in
  1106 
  1107 fun add_cases is_proper = map_cases o fold (add_case is_proper);
  1108 
  1109 fun case_result c ctxt =
  1110   let
  1111     val Rule_Cases.Case {fixes, ...} = c;
  1112     val (ts, ctxt') = ctxt |> fold_map fix fixes;
  1113     val Rule_Cases.Case {assumes, binds, cases, ...} = Rule_Cases.apply ts c;
  1114   in
  1115     ctxt'
  1116     |> bind_terms (map drop_schematic binds)
  1117     |> add_cases true (map (apsnd SOME) cases)
  1118     |> pair (assumes, (binds, cases))
  1119   end;
  1120 
  1121 val apply_case = apfst fst oo case_result;
  1122 
  1123 fun get_case ctxt name xs =
  1124   (case AList.lookup (op =) (cases_of ctxt) name of
  1125     NONE => error ("Unknown case: " ^ quote name)
  1126   | SOME (c, _) => prep_case name xs c);
  1127 
  1128 end;
  1129 
  1130 
  1131 
  1132 (** print context information **)
  1133 
  1134 (* local syntax *)
  1135 
  1136 val print_syntax = Syntax.print_syntax o syn_of;
  1137 
  1138 
  1139 (* abbreviations *)
  1140 
  1141 fun pretty_abbrevs show_globals ctxt =
  1142   let
  1143     val ((space, consts), (_, globals)) =
  1144       pairself (#constants o Consts.dest) (#consts (rep_data ctxt));
  1145     fun add_abbr (_, (_, NONE)) = I
  1146       | add_abbr (c, (T, SOME t)) =
  1147           if not show_globals andalso Symtab.defined globals c then I
  1148           else cons (c, Logic.mk_equals (Const (c, T), t));
  1149     val abbrevs =
  1150       Name_Space.extern_table ctxt (space, Symtab.make (Symtab.fold add_abbr consts []));
  1151   in
  1152     if null abbrevs then []
  1153     else [Pretty.big_list "abbreviations:" (map (pretty_term_abbrev ctxt o #2) abbrevs)]
  1154   end;
  1155 
  1156 val print_abbrevs = Pretty.writeln o Pretty.chunks o pretty_abbrevs true;
  1157 
  1158 
  1159 (* term bindings *)
  1160 
  1161 fun pretty_binds ctxt =
  1162   let
  1163     val binds = Variable.binds_of ctxt;
  1164     fun prt_bind (xi, (T, t)) = pretty_term_abbrev ctxt (Logic.mk_equals (Var (xi, T), t));
  1165   in
  1166     if Vartab.is_empty binds then []
  1167     else [Pretty.big_list "term bindings:" (map prt_bind (Vartab.dest binds))]
  1168   end;
  1169 
  1170 val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds;
  1171 
  1172 
  1173 (* local theorems *)
  1174 
  1175 fun pretty_lthms ctxt =
  1176   let
  1177     val local_facts = facts_of ctxt;
  1178     val props = Facts.props local_facts;
  1179     val facts =
  1180       (if null props then [] else [("<unnamed>", props)]) @
  1181       Facts.dest_static [] local_facts;
  1182   in
  1183     if null facts then []
  1184     else [Pretty.big_list "facts:" (map #1 (sort_wrt (#1 o #2) (map (`(pretty_fact ctxt)) facts)))]
  1185   end;
  1186 
  1187 val print_lthms = Pretty.writeln o Pretty.chunks o pretty_lthms;
  1188 
  1189 
  1190 (* local contexts *)
  1191 
  1192 local
  1193 
  1194 fun pretty_case (name, (fixes, ((asms, (lets, cs)), ctxt))) =
  1195   let
  1196     val prt_term = Syntax.pretty_term ctxt;
  1197 
  1198     fun prt_let (xi, t) = Pretty.block
  1199       [Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1,
  1200         Pretty.quote (prt_term t)];
  1201 
  1202     fun prt_asm (a, ts) = Pretty.block (Pretty.breaks
  1203       ((if a = "" then [] else [Pretty.str (a ^ ":")]) @ map (Pretty.quote o prt_term) ts));
  1204 
  1205     fun prt_sect _ _ _ [] = []
  1206       | prt_sect s sep prt xs =
  1207           [Pretty.block (Pretty.breaks (Pretty.str s ::
  1208             flat (separate sep (map (single o prt) xs))))];
  1209   in
  1210     Pretty.block (Pretty.fbreaks
  1211       (Pretty.str (name ^ ":") ::
  1212         prt_sect "fix" [] (Pretty.str o Binding.name_of o fst) fixes @
  1213         prt_sect "let" [Pretty.str "and"] prt_let
  1214           (map_filter (fn (xi, SOME t) => SOME (xi, t) | _ => NONE) lets) @
  1215         (if forall (null o #2) asms then []
  1216           else prt_sect "assume" [Pretty.str "and"] prt_asm asms) @
  1217         prt_sect "subcases:" [] (Pretty.str o fst) cs))
  1218   end;
  1219 
  1220 in
  1221 
  1222 fun pretty_cases ctxt =
  1223   let
  1224     fun add_case (_, (_, false)) = I
  1225       | add_case (name, (c as Rule_Cases.Case {fixes, ...}, true)) =
  1226           cons (name, (fixes, case_result c ctxt));
  1227     val cases = fold add_case (cases_of ctxt) [];
  1228   in
  1229     if null cases then []
  1230     else [Pretty.big_list "cases:" (map pretty_case cases)]
  1231   end;
  1232 
  1233 val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases;
  1234 
  1235 end;
  1236 
  1237 
  1238 (* core context *)
  1239 
  1240 val debug = Config.bool (Config.declare "Proof_Context.debug" (K (Config.Bool false)));
  1241 val verbose = Config.bool (Config.declare "Proof_Context.verbose" (K (Config.Bool false)));
  1242 
  1243 fun pretty_ctxt ctxt =
  1244   if not (Config.get ctxt debug) then []
  1245   else
  1246     let
  1247       val prt_term = Syntax.pretty_term ctxt;
  1248 
  1249       (*structures*)
  1250       val {structs, ...} = Local_Syntax.idents_of (syntax_of ctxt);
  1251       val prt_structs =
  1252         if null structs then []
  1253         else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 ::
  1254           Pretty.commas (map Pretty.str structs))];
  1255 
  1256       (*fixes*)
  1257       fun prt_fix (x, x') =
  1258         if x = x' then Pretty.str x
  1259         else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')];
  1260       val fixes =
  1261         filter_out ((can Name.dest_internal orf member (op =) structs) o #1)
  1262           (Variable.dest_fixes ctxt);
  1263       val prt_fixes =
  1264         if null fixes then []
  1265         else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 ::
  1266           Pretty.commas (map prt_fix fixes))];
  1267 
  1268       (*prems*)
  1269       val prems = Assumption.all_prems_of ctxt;
  1270       val prt_prems =
  1271         if null prems then []
  1272         else [Pretty.big_list "prems:" (map (Display.pretty_thm ctxt) prems)];
  1273     in prt_structs @ prt_fixes @ prt_prems end;
  1274 
  1275 
  1276 (* main context *)
  1277 
  1278 fun pretty_context ctxt =
  1279   let
  1280     val verbose = Config.get ctxt verbose;
  1281     fun verb f x = if verbose then f (x ()) else [];
  1282 
  1283     val prt_term = Syntax.pretty_term ctxt;
  1284     val prt_typ = Syntax.pretty_typ ctxt;
  1285     val prt_sort = Syntax.pretty_sort ctxt;
  1286 
  1287     (*theory*)
  1288     val pretty_thy = Pretty.block
  1289       [Pretty.str "theory:", Pretty.brk 1, Context.pretty_thy (theory_of ctxt)];
  1290 
  1291     (*defaults*)
  1292     fun prt_atom prt prtT (x, X) = Pretty.block
  1293       [prt x, Pretty.str " ::", Pretty.brk 1, prtT X];
  1294 
  1295     fun prt_var (x, ~1) = prt_term (Syntax.free x)
  1296       | prt_var xi = prt_term (Syntax.var xi);
  1297 
  1298     fun prt_varT (x, ~1) = prt_typ (TFree (x, []))
  1299       | prt_varT xi = prt_typ (TVar (xi, []));
  1300 
  1301     val prt_defT = prt_atom prt_var prt_typ;
  1302     val prt_defS = prt_atom prt_varT prt_sort;
  1303 
  1304     val (types, sorts) = Variable.constraints_of ctxt;
  1305   in
  1306     verb single (K pretty_thy) @
  1307     pretty_ctxt ctxt @
  1308     verb (pretty_abbrevs false) (K ctxt) @
  1309     verb pretty_binds (K ctxt) @
  1310     verb pretty_lthms (K ctxt) @
  1311     verb pretty_cases (K ctxt) @
  1312     verb single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @
  1313     verb single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts)))
  1314   end;
  1315 
  1316 end;
  1317 
  1318 val show_abbrevs = Proof_Context.show_abbrevs;
  1319