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