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